diff --git a/.github/workflows/deploy_production.yml b/.github/workflows/deploy_production.yml
index f05580d43..77bbd15dc 100644
--- a/.github/workflows/deploy_production.yml
+++ b/.github/workflows/deploy_production.yml
@@ -28,6 +28,7 @@ env:
VITE_TILES_ENDPOINT: ${{ secrets.VITE_TILES_ENDPOINT}}
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
+ DB_URL: ${{ secrets.PROD_DB_URL }}
ANTEATER_API_KEY: ${{ secrets.ANTEATER_API_KEY }}
# Turborepo credentials.
@@ -44,6 +45,7 @@ env:
HOSTED_ZONE_ID: ${{ secrets.HOSTED_ZONE_ID }}
CERTIFICATE_ARN: ${{ secrets.CERTIFICATE_ARN }}
PR_NUM: ${{ github.event.pull_request.number }}
+ STAGE: prod
jobs:
# Build production version of the frontend and upload the artifacts.
@@ -111,6 +113,9 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile --prod false
+ - name: Run database migrations
+ run: pnpm --filter "antalmanac-backend" migrate
+
- name: Build backend
run: pnpm --filter "antalmanac-backend" build
env:
diff --git a/.github/workflows/deploy_staging.yml b/.github/workflows/deploy_staging.yml
index b7940602d..c6f665ff5 100644
--- a/.github/workflows/deploy_staging.yml
+++ b/.github/workflows/deploy_staging.yml
@@ -45,6 +45,7 @@ env:
HOSTED_ZONE_ID: ${{ secrets.HOSTED_ZONE_ID }}
CERTIFICATE_ARN: ${{ secrets.CERTIFICATE_ARN }}
PR_NUM: ${{ github.event.pull_request.number }}
+ STAGE: dev
jobs:
get_staging_configuration:
diff --git a/.github/workflows/destroy_staging.yml b/.github/workflows/destroy_staging.yml
index 1a8c26a85..31e201ede 100644
--- a/.github/workflows/destroy_staging.yml
+++ b/.github/workflows/destroy_staging.yml
@@ -42,6 +42,7 @@ env:
HOSTED_ZONE_ID: ${{ secrets.HOSTED_ZONE_ID }}
CERTIFICATE_ARN: ${{ secrets.CERTIFICATE_ARN }}
PR_NUM: ${{ github.event.pull_request.number }}
+ STAGE: dev
jobs:
destroy_staging_frontend:
diff --git a/.gitignore b/.gitignore
index 430533410..9d5945a50 100644
--- a/.gitignore
+++ b/.gitignore
@@ -50,3 +50,6 @@ Desktop.ini
## VSCode settings.
.vscode/
+
+## Turbo
+.turbo/
\ No newline at end of file
diff --git a/apps/antalmanac/package.json b/apps/antalmanac/package.json
index 7d6a8e0c6..4216b6f08 100644
--- a/apps/antalmanac/package.json
+++ b/apps/antalmanac/package.json
@@ -21,6 +21,7 @@
"lint": "eslint src"
},
"dependencies": {
+ "@babel/runtime": "^7.26.0",
"@date-io/date-fns": "^2.16.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
diff --git a/apps/antalmanac/src/components/PatchNotes.tsx b/apps/antalmanac/src/components/PatchNotes.tsx
index 54923d3e8..999f837b1 100644
--- a/apps/antalmanac/src/components/PatchNotes.tsx
+++ b/apps/antalmanac/src/components/PatchNotes.tsx
@@ -18,7 +18,7 @@ import { getLocalStoragePatchNotesKey, setLocalStoragePatchNotesKey } from '$lib
*
* @example '20230819'
*/
-export const latestPatchNotesUpdate = '20230819';
+export const latestPatchNotesUpdate = '20241124';
/**
* Whether the user's last visited patch notes is outdated.
@@ -53,30 +53,27 @@ function PatchNotes() {
data-testid={dialogTestId}
slots={{ backdrop: PatchNotesBackdrop }}
>
- {"What's New - October 2023"}
+ {"What's New - November 2024"}
- Features
+ Migration
+ - We are migrating our database to support exciting features coming this year!
-
- You can now hover over the Zotistics button to see the Zotistics graph! On mobile, you can still
- click the Zotistics button to toggle the graph.
+ If you experience issues with saving and retrieving schedules, please let us know by filling out
+ the{' '}
+
+ feedback form
+
+ .
-
-
- Remember to use the{' '}
-
- feedback form
- {' '}
- to let us know what you think!
+
+ Features
+
+ - Search now contains all new classes and will update automatically!
+ - Many bug fixes and quality-of-life improvements
+
diff --git a/apps/backend/drizzle.config.ts b/apps/backend/drizzle.config.ts
new file mode 100644
index 000000000..7e03e4481
--- /dev/null
+++ b/apps/backend/drizzle.config.ts
@@ -0,0 +1,14 @@
+import { defineConfig } from "drizzle-kit";
+
+import { rdsEnvSchema } from "./src/env";
+
+const { DB_URL } = rdsEnvSchema.parse(process.env);
+
+export default defineConfig({
+ dialect: "postgresql",
+ schema: "./src/db/schema/index.ts",
+ out: "./drizzle",
+ dbCredentials: {
+ url: DB_URL,
+ }
+});
diff --git a/apps/backend/drizzle/0000_rapid_speed_demon.sql b/apps/backend/drizzle/0000_rapid_speed_demon.sql
new file mode 100644
index 000000000..e3ff7836a
--- /dev/null
+++ b/apps/backend/drizzle/0000_rapid_speed_demon.sql
@@ -0,0 +1,103 @@
+CREATE TYPE "public"."account_type" AS ENUM('GOOGLE', 'GUEST');--> statement-breakpoint
+CREATE TYPE "public"."subscription_target_status" AS ENUM('OPEN', 'WAITLISTED');--> statement-breakpoint
+CREATE TABLE IF NOT EXISTS "accounts" (
+ "user_id" text NOT NULL,
+ "account_type" "account_type" NOT NULL,
+ "provider_account_id" text NOT NULL,
+ CONSTRAINT "accounts_user_id_account_type_pk" PRIMARY KEY("user_id","account_type")
+);
+--> statement-breakpoint
+CREATE TABLE IF NOT EXISTS "sessions" (
+ "id" text PRIMARY KEY NOT NULL,
+ "user_id" text NOT NULL,
+ "expires" timestamp NOT NULL,
+ "refresh_token" text
+);
+--> statement-breakpoint
+CREATE TABLE IF NOT EXISTS "users" (
+ "id" text PRIMARY KEY NOT NULL,
+ "phone" text,
+ "avatar" text,
+ "name" text,
+ "current_schedule_id" text,
+ "last_updated" timestamp with time zone DEFAULT now()
+);
+--> statement-breakpoint
+CREATE TABLE IF NOT EXISTS "schedules" (
+ "id" text PRIMARY KEY NOT NULL,
+ "user_id" text NOT NULL,
+ "name" text,
+ "notes" text,
+ "last_updated" timestamp with time zone NOT NULL,
+ CONSTRAINT "schedules_user_id_name_unique" UNIQUE("user_id","name")
+);
+--> statement-breakpoint
+CREATE TABLE IF NOT EXISTS "coursesInSchedule" (
+ "scheduleId" text NOT NULL,
+ "sectionCode" integer NOT NULL,
+ "term" text NOT NULL,
+ "color" text NOT NULL,
+ "last_updated" timestamp with time zone DEFAULT now(),
+ CONSTRAINT "coursesInSchedule_scheduleId_sectionCode_term_pk" PRIMARY KEY("scheduleId","sectionCode","term")
+);
+--> statement-breakpoint
+CREATE TABLE IF NOT EXISTS "customEvents" (
+ "id" text PRIMARY KEY NOT NULL,
+ "scheduleId" text NOT NULL,
+ "title" text NOT NULL,
+ "start" text NOT NULL,
+ "end" text NOT NULL,
+ "days" text NOT NULL,
+ "color" text,
+ "building" text,
+ "last_updated" timestamp with time zone DEFAULT now()
+);
+--> statement-breakpoint
+CREATE TABLE IF NOT EXISTS "subscriptions" (
+ "userId" text,
+ "sectionCode" integer,
+ "status" "subscription_target_status",
+ CONSTRAINT "subscriptions_userId_sectionCode_pk" PRIMARY KEY("userId","sectionCode")
+);
+--> statement-breakpoint
+DO $$ BEGIN
+ ALTER TABLE "accounts" ADD CONSTRAINT "accounts_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;
+EXCEPTION
+ WHEN duplicate_object THEN null;
+END $$;
+--> statement-breakpoint
+DO $$ BEGIN
+ ALTER TABLE "sessions" ADD CONSTRAINT "sessions_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;
+EXCEPTION
+ WHEN duplicate_object THEN null;
+END $$;
+--> statement-breakpoint
+DO $$ BEGIN
+ ALTER TABLE "users" ADD CONSTRAINT "users_current_schedule_id_schedules_id_fk" FOREIGN KEY ("current_schedule_id") REFERENCES "public"."schedules"("id") ON DELETE no action ON UPDATE no action;
+EXCEPTION
+ WHEN duplicate_object THEN null;
+END $$;
+--> statement-breakpoint
+DO $$ BEGIN
+ ALTER TABLE "schedules" ADD CONSTRAINT "schedules_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;
+EXCEPTION
+ WHEN duplicate_object THEN null;
+END $$;
+--> statement-breakpoint
+DO $$ BEGIN
+ ALTER TABLE "coursesInSchedule" ADD CONSTRAINT "coursesInSchedule_scheduleId_schedules_id_fk" FOREIGN KEY ("scheduleId") REFERENCES "public"."schedules"("id") ON DELETE cascade ON UPDATE no action;
+EXCEPTION
+ WHEN duplicate_object THEN null;
+END $$;
+--> statement-breakpoint
+DO $$ BEGIN
+ ALTER TABLE "customEvents" ADD CONSTRAINT "customEvents_scheduleId_schedules_id_fk" FOREIGN KEY ("scheduleId") REFERENCES "public"."schedules"("id") ON DELETE cascade ON UPDATE no action;
+EXCEPTION
+ WHEN duplicate_object THEN null;
+END $$;
+--> statement-breakpoint
+DO $$ BEGIN
+ ALTER TABLE "subscriptions" ADD CONSTRAINT "subscriptions_userId_users_id_fk" FOREIGN KEY ("userId") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;
+EXCEPTION
+ WHEN duplicate_object THEN null;
+END $$;
diff --git a/apps/backend/drizzle/0001_powerful_tiger_shark.sql b/apps/backend/drizzle/0001_powerful_tiger_shark.sql
new file mode 100644
index 000000000..e22251f7e
--- /dev/null
+++ b/apps/backend/drizzle/0001_powerful_tiger_shark.sql
@@ -0,0 +1,2 @@
+ALTER TABLE "schedules" ADD COLUMN "index" integer NOT NULL;--> statement-breakpoint
+ALTER TABLE "schedules" ADD CONSTRAINT "schedules_user_id_index_unique" UNIQUE("user_id","index");
\ No newline at end of file
diff --git a/apps/backend/drizzle/0002_fat_ted_forrester.sql b/apps/backend/drizzle/0002_fat_ted_forrester.sql
new file mode 100644
index 000000000..aed6916cd
--- /dev/null
+++ b/apps/backend/drizzle/0002_fat_ted_forrester.sql
@@ -0,0 +1,7 @@
+ALTER TABLE "users" DROP CONSTRAINT "users_current_schedule_id_schedules_id_fk";
+--> statement-breakpoint
+DO $$ BEGIN
+ ALTER TABLE "users" ADD CONSTRAINT "users_current_schedule_id_schedules_id_fk" FOREIGN KEY ("current_schedule_id") REFERENCES "public"."schedules"("id") ON DELETE set null ON UPDATE no action;
+EXCEPTION
+ WHEN duplicate_object THEN null;
+END $$;
diff --git a/apps/backend/drizzle/meta/0000_snapshot.json b/apps/backend/drizzle/meta/0000_snapshot.json
new file mode 100644
index 000000000..8a6343395
--- /dev/null
+++ b/apps/backend/drizzle/meta/0000_snapshot.json
@@ -0,0 +1,427 @@
+{
+ "id": "fb129d47-a2f2-437e-aaf9-5df8d40efe23",
+ "prevId": "00000000-0000-0000-0000-000000000000",
+ "version": "7",
+ "dialect": "postgresql",
+ "tables": {
+ "public.accounts": {
+ "name": "accounts",
+ "schema": "",
+ "columns": {
+ "user_id": {
+ "name": "user_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "account_type": {
+ "name": "account_type",
+ "type": "account_type",
+ "typeSchema": "public",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "provider_account_id": {
+ "name": "provider_account_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "accounts_user_id_users_id_fk": {
+ "name": "accounts_user_id_users_id_fk",
+ "tableFrom": "accounts",
+ "tableTo": "users",
+ "columnsFrom": ["user_id"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "accounts_user_id_account_type_pk": {
+ "name": "accounts_user_id_account_type_pk",
+ "columns": ["user_id", "account_type"]
+ }
+ },
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.sessions": {
+ "name": "sessions",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "user_id": {
+ "name": "user_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "expires": {
+ "name": "expires",
+ "type": "timestamp",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "refresh_token": {
+ "name": "refresh_token",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "sessions_user_id_users_id_fk": {
+ "name": "sessions_user_id_users_id_fk",
+ "tableFrom": "sessions",
+ "tableTo": "users",
+ "columnsFrom": ["user_id"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.users": {
+ "name": "users",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "phone": {
+ "name": "phone",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "avatar": {
+ "name": "avatar",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "name": {
+ "name": "name",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "current_schedule_id": {
+ "name": "current_schedule_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": false,
+ "default": "now()"
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "users_current_schedule_id_schedules_id_fk": {
+ "name": "users_current_schedule_id_schedules_id_fk",
+ "tableFrom": "users",
+ "tableTo": "schedules",
+ "columnsFrom": ["current_schedule_id"],
+ "columnsTo": ["id"],
+ "onDelete": "no action",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.schedules": {
+ "name": "schedules",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "user_id": {
+ "name": "user_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "name": {
+ "name": "name",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "notes": {
+ "name": "notes",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": true
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "schedules_user_id_users_id_fk": {
+ "name": "schedules_user_id_users_id_fk",
+ "tableFrom": "schedules",
+ "tableTo": "users",
+ "columnsFrom": ["user_id"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {
+ "schedules_user_id_name_unique": {
+ "name": "schedules_user_id_name_unique",
+ "nullsNotDistinct": false,
+ "columns": ["user_id", "name"]
+ }
+ },
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.coursesInSchedule": {
+ "name": "coursesInSchedule",
+ "schema": "",
+ "columns": {
+ "scheduleId": {
+ "name": "scheduleId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "sectionCode": {
+ "name": "sectionCode",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "term": {
+ "name": "term",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "color": {
+ "name": "color",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": false,
+ "default": "now()"
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "coursesInSchedule_scheduleId_schedules_id_fk": {
+ "name": "coursesInSchedule_scheduleId_schedules_id_fk",
+ "tableFrom": "coursesInSchedule",
+ "tableTo": "schedules",
+ "columnsFrom": ["scheduleId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "coursesInSchedule_scheduleId_sectionCode_term_pk": {
+ "name": "coursesInSchedule_scheduleId_sectionCode_term_pk",
+ "columns": ["scheduleId", "sectionCode", "term"]
+ }
+ },
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.customEvents": {
+ "name": "customEvents",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "scheduleId": {
+ "name": "scheduleId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "title": {
+ "name": "title",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "start": {
+ "name": "start",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "end": {
+ "name": "end",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "days": {
+ "name": "days",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "color": {
+ "name": "color",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "building": {
+ "name": "building",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": false,
+ "default": "now()"
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "customEvents_scheduleId_schedules_id_fk": {
+ "name": "customEvents_scheduleId_schedules_id_fk",
+ "tableFrom": "customEvents",
+ "tableTo": "schedules",
+ "columnsFrom": ["scheduleId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.subscriptions": {
+ "name": "subscriptions",
+ "schema": "",
+ "columns": {
+ "userId": {
+ "name": "userId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "sectionCode": {
+ "name": "sectionCode",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "status": {
+ "name": "status",
+ "type": "subscription_target_status",
+ "typeSchema": "public",
+ "primaryKey": false,
+ "notNull": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "subscriptions_userId_users_id_fk": {
+ "name": "subscriptions_userId_users_id_fk",
+ "tableFrom": "subscriptions",
+ "tableTo": "users",
+ "columnsFrom": ["userId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "subscriptions_userId_sectionCode_pk": {
+ "name": "subscriptions_userId_sectionCode_pk",
+ "columns": ["userId", "sectionCode"]
+ }
+ },
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ }
+ },
+ "enums": {
+ "public.account_type": {
+ "name": "account_type",
+ "schema": "public",
+ "values": ["GOOGLE", "GUEST"]
+ },
+ "public.subscription_target_status": {
+ "name": "subscription_target_status",
+ "schema": "public",
+ "values": ["OPEN", "WAITLISTED"]
+ }
+ },
+ "schemas": {},
+ "sequences": {},
+ "roles": {},
+ "policies": {},
+ "views": {},
+ "_meta": {
+ "columns": {},
+ "schemas": {},
+ "tables": {}
+ }
+}
diff --git a/apps/backend/drizzle/meta/0001_snapshot.json b/apps/backend/drizzle/meta/0001_snapshot.json
new file mode 100644
index 000000000..65c4f98b9
--- /dev/null
+++ b/apps/backend/drizzle/meta/0001_snapshot.json
@@ -0,0 +1,438 @@
+{
+ "id": "980b5d8b-81c6-47e7-b979-90b189a98f30",
+ "prevId": "fb129d47-a2f2-437e-aaf9-5df8d40efe23",
+ "version": "7",
+ "dialect": "postgresql",
+ "tables": {
+ "public.accounts": {
+ "name": "accounts",
+ "schema": "",
+ "columns": {
+ "user_id": {
+ "name": "user_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "account_type": {
+ "name": "account_type",
+ "type": "account_type",
+ "typeSchema": "public",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "provider_account_id": {
+ "name": "provider_account_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "accounts_user_id_users_id_fk": {
+ "name": "accounts_user_id_users_id_fk",
+ "tableFrom": "accounts",
+ "tableTo": "users",
+ "columnsFrom": ["user_id"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "accounts_user_id_account_type_pk": {
+ "name": "accounts_user_id_account_type_pk",
+ "columns": ["user_id", "account_type"]
+ }
+ },
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.sessions": {
+ "name": "sessions",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "user_id": {
+ "name": "user_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "expires": {
+ "name": "expires",
+ "type": "timestamp",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "refresh_token": {
+ "name": "refresh_token",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "sessions_user_id_users_id_fk": {
+ "name": "sessions_user_id_users_id_fk",
+ "tableFrom": "sessions",
+ "tableTo": "users",
+ "columnsFrom": ["user_id"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.users": {
+ "name": "users",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "phone": {
+ "name": "phone",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "avatar": {
+ "name": "avatar",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "name": {
+ "name": "name",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "current_schedule_id": {
+ "name": "current_schedule_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": false,
+ "default": "now()"
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "users_current_schedule_id_schedules_id_fk": {
+ "name": "users_current_schedule_id_schedules_id_fk",
+ "tableFrom": "users",
+ "tableTo": "schedules",
+ "columnsFrom": ["current_schedule_id"],
+ "columnsTo": ["id"],
+ "onDelete": "no action",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.schedules": {
+ "name": "schedules",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "user_id": {
+ "name": "user_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "name": {
+ "name": "name",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "notes": {
+ "name": "notes",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "index": {
+ "name": "index",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": true
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "schedules_user_id_users_id_fk": {
+ "name": "schedules_user_id_users_id_fk",
+ "tableFrom": "schedules",
+ "tableTo": "users",
+ "columnsFrom": ["user_id"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {
+ "schedules_user_id_name_unique": {
+ "name": "schedules_user_id_name_unique",
+ "nullsNotDistinct": false,
+ "columns": ["user_id", "name"]
+ },
+ "schedules_user_id_index_unique": {
+ "name": "schedules_user_id_index_unique",
+ "nullsNotDistinct": false,
+ "columns": ["user_id", "index"]
+ }
+ },
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.coursesInSchedule": {
+ "name": "coursesInSchedule",
+ "schema": "",
+ "columns": {
+ "scheduleId": {
+ "name": "scheduleId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "sectionCode": {
+ "name": "sectionCode",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "term": {
+ "name": "term",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "color": {
+ "name": "color",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": false,
+ "default": "now()"
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "coursesInSchedule_scheduleId_schedules_id_fk": {
+ "name": "coursesInSchedule_scheduleId_schedules_id_fk",
+ "tableFrom": "coursesInSchedule",
+ "tableTo": "schedules",
+ "columnsFrom": ["scheduleId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "coursesInSchedule_scheduleId_sectionCode_term_pk": {
+ "name": "coursesInSchedule_scheduleId_sectionCode_term_pk",
+ "columns": ["scheduleId", "sectionCode", "term"]
+ }
+ },
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.customEvents": {
+ "name": "customEvents",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "scheduleId": {
+ "name": "scheduleId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "title": {
+ "name": "title",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "start": {
+ "name": "start",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "end": {
+ "name": "end",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "days": {
+ "name": "days",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "color": {
+ "name": "color",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "building": {
+ "name": "building",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": false,
+ "default": "now()"
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "customEvents_scheduleId_schedules_id_fk": {
+ "name": "customEvents_scheduleId_schedules_id_fk",
+ "tableFrom": "customEvents",
+ "tableTo": "schedules",
+ "columnsFrom": ["scheduleId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.subscriptions": {
+ "name": "subscriptions",
+ "schema": "",
+ "columns": {
+ "userId": {
+ "name": "userId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "sectionCode": {
+ "name": "sectionCode",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "status": {
+ "name": "status",
+ "type": "subscription_target_status",
+ "typeSchema": "public",
+ "primaryKey": false,
+ "notNull": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "subscriptions_userId_users_id_fk": {
+ "name": "subscriptions_userId_users_id_fk",
+ "tableFrom": "subscriptions",
+ "tableTo": "users",
+ "columnsFrom": ["userId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "subscriptions_userId_sectionCode_pk": {
+ "name": "subscriptions_userId_sectionCode_pk",
+ "columns": ["userId", "sectionCode"]
+ }
+ },
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ }
+ },
+ "enums": {
+ "public.account_type": {
+ "name": "account_type",
+ "schema": "public",
+ "values": ["GOOGLE", "GUEST"]
+ },
+ "public.subscription_target_status": {
+ "name": "subscription_target_status",
+ "schema": "public",
+ "values": ["OPEN", "WAITLISTED"]
+ }
+ },
+ "schemas": {},
+ "sequences": {},
+ "roles": {},
+ "policies": {},
+ "views": {},
+ "_meta": {
+ "columns": {},
+ "schemas": {},
+ "tables": {}
+ }
+}
diff --git a/apps/backend/drizzle/meta/0002_snapshot.json b/apps/backend/drizzle/meta/0002_snapshot.json
new file mode 100644
index 000000000..4c2e74399
--- /dev/null
+++ b/apps/backend/drizzle/meta/0002_snapshot.json
@@ -0,0 +1,438 @@
+{
+ "id": "1653e3a7-93bd-4f8b-b7e5-8b6cda63fa4f",
+ "prevId": "980b5d8b-81c6-47e7-b979-90b189a98f30",
+ "version": "7",
+ "dialect": "postgresql",
+ "tables": {
+ "public.accounts": {
+ "name": "accounts",
+ "schema": "",
+ "columns": {
+ "user_id": {
+ "name": "user_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "account_type": {
+ "name": "account_type",
+ "type": "account_type",
+ "typeSchema": "public",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "provider_account_id": {
+ "name": "provider_account_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "accounts_user_id_users_id_fk": {
+ "name": "accounts_user_id_users_id_fk",
+ "tableFrom": "accounts",
+ "tableTo": "users",
+ "columnsFrom": ["user_id"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "accounts_user_id_account_type_pk": {
+ "name": "accounts_user_id_account_type_pk",
+ "columns": ["user_id", "account_type"]
+ }
+ },
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.sessions": {
+ "name": "sessions",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "user_id": {
+ "name": "user_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "expires": {
+ "name": "expires",
+ "type": "timestamp",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "refresh_token": {
+ "name": "refresh_token",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "sessions_user_id_users_id_fk": {
+ "name": "sessions_user_id_users_id_fk",
+ "tableFrom": "sessions",
+ "tableTo": "users",
+ "columnsFrom": ["user_id"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.users": {
+ "name": "users",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "phone": {
+ "name": "phone",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "avatar": {
+ "name": "avatar",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "name": {
+ "name": "name",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "current_schedule_id": {
+ "name": "current_schedule_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": false,
+ "default": "now()"
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "users_current_schedule_id_schedules_id_fk": {
+ "name": "users_current_schedule_id_schedules_id_fk",
+ "tableFrom": "users",
+ "tableTo": "schedules",
+ "columnsFrom": ["current_schedule_id"],
+ "columnsTo": ["id"],
+ "onDelete": "set null",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.schedules": {
+ "name": "schedules",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "user_id": {
+ "name": "user_id",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "name": {
+ "name": "name",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "notes": {
+ "name": "notes",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "index": {
+ "name": "index",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": true
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "schedules_user_id_users_id_fk": {
+ "name": "schedules_user_id_users_id_fk",
+ "tableFrom": "schedules",
+ "tableTo": "users",
+ "columnsFrom": ["user_id"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {
+ "schedules_user_id_name_unique": {
+ "name": "schedules_user_id_name_unique",
+ "nullsNotDistinct": false,
+ "columns": ["user_id", "name"]
+ },
+ "schedules_user_id_index_unique": {
+ "name": "schedules_user_id_index_unique",
+ "nullsNotDistinct": false,
+ "columns": ["user_id", "index"]
+ }
+ },
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.coursesInSchedule": {
+ "name": "coursesInSchedule",
+ "schema": "",
+ "columns": {
+ "scheduleId": {
+ "name": "scheduleId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "sectionCode": {
+ "name": "sectionCode",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "term": {
+ "name": "term",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "color": {
+ "name": "color",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": false,
+ "default": "now()"
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "coursesInSchedule_scheduleId_schedules_id_fk": {
+ "name": "coursesInSchedule_scheduleId_schedules_id_fk",
+ "tableFrom": "coursesInSchedule",
+ "tableTo": "schedules",
+ "columnsFrom": ["scheduleId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "coursesInSchedule_scheduleId_sectionCode_term_pk": {
+ "name": "coursesInSchedule_scheduleId_sectionCode_term_pk",
+ "columns": ["scheduleId", "sectionCode", "term"]
+ }
+ },
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.customEvents": {
+ "name": "customEvents",
+ "schema": "",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true
+ },
+ "scheduleId": {
+ "name": "scheduleId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "title": {
+ "name": "title",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "start": {
+ "name": "start",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "end": {
+ "name": "end",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "days": {
+ "name": "days",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true
+ },
+ "color": {
+ "name": "color",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "building": {
+ "name": "building",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "last_updated": {
+ "name": "last_updated",
+ "type": "timestamp with time zone",
+ "primaryKey": false,
+ "notNull": false,
+ "default": "now()"
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "customEvents_scheduleId_schedules_id_fk": {
+ "name": "customEvents_scheduleId_schedules_id_fk",
+ "tableFrom": "customEvents",
+ "tableTo": "schedules",
+ "columnsFrom": ["scheduleId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ },
+ "public.subscriptions": {
+ "name": "subscriptions",
+ "schema": "",
+ "columns": {
+ "userId": {
+ "name": "userId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "sectionCode": {
+ "name": "sectionCode",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": false
+ },
+ "status": {
+ "name": "status",
+ "type": "subscription_target_status",
+ "typeSchema": "public",
+ "primaryKey": false,
+ "notNull": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "subscriptions_userId_users_id_fk": {
+ "name": "subscriptions_userId_users_id_fk",
+ "tableFrom": "subscriptions",
+ "tableTo": "users",
+ "columnsFrom": ["userId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "subscriptions_userId_sectionCode_pk": {
+ "name": "subscriptions_userId_sectionCode_pk",
+ "columns": ["userId", "sectionCode"]
+ }
+ },
+ "uniqueConstraints": {},
+ "policies": {},
+ "checkConstraints": {},
+ "isRLSEnabled": false
+ }
+ },
+ "enums": {
+ "public.account_type": {
+ "name": "account_type",
+ "schema": "public",
+ "values": ["GOOGLE", "GUEST"]
+ },
+ "public.subscription_target_status": {
+ "name": "subscription_target_status",
+ "schema": "public",
+ "values": ["OPEN", "WAITLISTED"]
+ }
+ },
+ "schemas": {},
+ "sequences": {},
+ "roles": {},
+ "policies": {},
+ "views": {},
+ "_meta": {
+ "columns": {},
+ "schemas": {},
+ "tables": {}
+ }
+}
diff --git a/apps/backend/drizzle/meta/_journal.json b/apps/backend/drizzle/meta/_journal.json
new file mode 100644
index 000000000..536882b04
--- /dev/null
+++ b/apps/backend/drizzle/meta/_journal.json
@@ -0,0 +1,27 @@
+{
+ "version": "7",
+ "dialect": "postgresql",
+ "entries": [
+ {
+ "idx": 0,
+ "version": "7",
+ "when": 1732256237070,
+ "tag": "0000_rapid_speed_demon",
+ "breakpoints": true
+ },
+ {
+ "idx": 1,
+ "version": "7",
+ "when": 1732515819685,
+ "tag": "0001_powerful_tiger_shark",
+ "breakpoints": true
+ },
+ {
+ "idx": 2,
+ "version": "7",
+ "when": 1732578460427,
+ "tag": "0002_fat_ted_forrester",
+ "breakpoints": true
+ }
+ ]
+}
diff --git a/apps/backend/package.json b/apps/backend/package.json
index ad37ebd9b..bce9235b9 100644
--- a/apps/backend/package.json
+++ b/apps/backend/package.json
@@ -10,22 +10,26 @@
"prestart": "pnpm get-search-data",
"start": "pnpm dev",
"format": "prettier --write src",
- "lint": "eslint --fix src"
+ "lint": "eslint --fix src",
+ "studio": "drizzle-kit studio",
+ "migrate": "drizzle-kit generate && tsx scripts/migrate.ts",
+ "ddb-rds": "pnpm migrate && tsx scripts/ddb_to_rds.ts"
},
"dependencies": {
"@leeoniya/ufuzzy": "1.0.14",
"@packages/antalmanac-types": "workspace:*",
+ "@paralleldrive/cuid2": "^2.2.2",
"@trpc/server": "^10.30.0",
"@vendia/serverless-express": "^4.10.1",
"arktype": "1.0.14-alpha",
"aws-lambda": "^1.0.7",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
- "fuzzysort": "3.1.0",
+ "drizzle-orm": "^0.36.3",
"envalid": "^7.3.1",
"express": "^4.18.2",
- "mongodb": "^5.0.1",
- "mongoose": "^7.1.0j",
+ "fuzzysort": "3.1.0",
+ "postgres": "^3.4.4",
"superjson": "^1.12.3",
"zod": "3.23.8"
},
@@ -38,6 +42,7 @@
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"concurrently": "^8.0.1",
+ "drizzle-kit": "^0.28.1",
"esbuild": "^0.17.19",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
diff --git a/apps/backend/scripts/ddb_to_rds.ts b/apps/backend/scripts/ddb_to_rds.ts
new file mode 100644
index 000000000..93fab9a18
--- /dev/null
+++ b/apps/backend/scripts/ddb_to_rds.ts
@@ -0,0 +1,82 @@
+/**
+ * To run this script, run "pnpm run ddb-rds".
+ */
+
+import { ddbClient } from '../src/db/ddb';
+import { db, client } from '../src/db/index';
+import { RDS } from '../src/lib/rds';
+import { mangleDupliateScheduleNames } from '../src/lib/formatting';
+
+
+/**
+ * Migrates user data from DynamoDB to the PostgreSQL database associated
+ * with the drizzle client.
+ *
+ * NOTE: This pipelines the user data from Postgres, and we might get backed up
+ * if DynamoDB returns a lot faster than we can push to Postgres.
+ */
+async function copyUsersToPostgres() {
+ const failedUsers: string[] = [];
+ const skippedUsers: string[] = [];
+
+ let success = 0;
+
+ for await (const ddbBatch of ddbClient.getAllUserDataBatches()) {
+ console.log(`Copying ${ddbBatch.length} users...`);
+ let batchSuccess = 0;
+ let batchSkipped = 0;
+ const start = Date.now();
+ const transactions = ddbBatch.map( // One transaction per user
+ async (ddbUser) => {
+ // Mangle duplicate schedule names
+ ddbUser.userData.schedules = mangleDupliateScheduleNames(ddbUser.userData.schedules);
+
+ return RDS
+ .insertGuestUserData(db, ddbUser)
+ .then((res) => {
+ if (res === null) {
+ skippedUsers.push(ddbUser.id);
+ ++batchSkipped;
+ } else {
+ ++batchSuccess;
+ }
+ })
+ .catch((error) => {
+ failedUsers.push(ddbUser.id);
+ console.error(
+ `Failed to insert user data for "${ddbUser.id}":`
+ );
+ console.error(error);
+ })
+ }
+ );
+
+ await Promise.all(transactions);
+
+ const timeTaken = Date.now() - start;
+ const msPerUser = timeTaken / ddbBatch.length;
+
+ console.log(`Successfully copied ${batchSuccess} users out of ${ddbBatch.length} in batch (${batchSkipped} skipped) in ${timeTaken} seconds (${msPerUser}ms/user).`);
+ success += batchSuccess;
+ }
+
+ console.log(`Successfully copied ${success} users out of ${success + skippedUsers.length + failedUsers.length} (${skippedUsers.length} skipped).`);
+ if (failedUsers.length > 0) {
+ console.log(`Failed users: ${failedUsers.join(', ')}`);
+ }
+ if (skippedUsers.length > 0) {
+ console.log(`Skipped users: ${skippedUsers.join(', ')}`);
+ }
+}
+
+async function main() {
+ try {
+ await copyUsersToPostgres();
+ } catch (error) {
+ console.log(error);
+ } finally {
+ await client.end();
+ }
+}
+
+main();
diff --git a/apps/backend/scripts/migrate.ts b/apps/backend/scripts/migrate.ts
new file mode 100644
index 000000000..6cb500a4a
--- /dev/null
+++ b/apps/backend/scripts/migrate.ts
@@ -0,0 +1,30 @@
+/**
+ * To run this script, run "pnpm run migrate".
+ */
+
+import { drizzle } from 'drizzle-orm/postgres-js';
+import { migrate } from 'drizzle-orm/postgres-js/migrator';
+
+import { client } from '$db/index';
+
+/**
+ * Migrates the current drizzle schema to the PostgreSQL database associated
+ * with the drizzle client.
+ */
+export async function migratePostgresDb() {
+ await migrate(drizzle(client), {
+ migrationsFolder: './drizzle'
+ });
+}
+
+async function main() {
+ try {
+ await migratePostgresDb();
+ } catch (error) {
+ console.log(error);
+ } finally {
+ await client.end();
+ }
+}
+
+main();
diff --git a/apps/backend/src/db/ddb.ts b/apps/backend/src/db/ddb.ts
index b26f6e72a..92ed8e3e9 100644
--- a/apps/backend/src/db/ddb.ts
+++ b/apps/backend/src/db/ddb.ts
@@ -1,19 +1,12 @@
import type { Type } from 'arktype';
import { DynamoDBDocument } from '@aws-sdk/lib-dynamodb';
-import { DynamoDB } from '@aws-sdk/client-dynamodb';
+import { DynamoDB, ScanCommandInput } from '@aws-sdk/client-dynamodb';
import {
UserSchema,
- LegacyUserSchema,
- ShortCourseSchema,
- RepeatingCustomEventSchema,
- type LegacyUserData,
type ScheduleSaveState,
} from '@packages/antalmanac-types';
-
-import LegacyUserModel from '../models/User';
-import connectToMongoDB from '../db/mongodb';
-import env from '../env';
+import {backendEnvSchema} from "../env";
/**
* TODO: enforce this in the schema too, or just leave it as an arbitrary string?
@@ -24,6 +17,8 @@ export const VISIBILITY = {
OPEN: 'open',
};
+const env = backendEnvSchema.parse(process.env);
+
class DDBClient>> {
private tableName: string;
@@ -33,44 +28,6 @@ class DDBClient>> {
documentClient: DynamoDBDocument;
- static convertLegacySchedule(legacyUserData: LegacyUserData) {
- const scheduleSaveState: ScheduleSaveState = { schedules: [], scheduleIndex: 0 };
-
- for (const scheduleName of legacyUserData.scheduleNames) {
- scheduleSaveState.schedules.push({
- scheduleName: scheduleName,
- courses: [],
- customEvents: [],
- scheduleNote: '',
- });
- }
-
- for (const course of legacyUserData.addedCourses) {
- const { data, problems } = ShortCourseSchema(course);
-
- if (data === undefined) {
- console.log(problems);
- continue;
- }
-
- for (const scheduleIndex of course.scheduleIndices) {
- scheduleSaveState.schedules[scheduleIndex].courses.push(data);
- }
- }
-
- for (const customEvent of legacyUserData.customEvents) {
- for (const scheduleIndex of customEvent.scheduleIndices) {
- const { data } = RepeatingCustomEventSchema(customEvent);
-
- if (data !== undefined) {
- scheduleSaveState.schedules[scheduleIndex].customEvents.push(data);
- }
- }
- }
-
- return scheduleSaveState;
- }
-
constructor(tableName: string, schema: T) {
this.tableName = tableName;
this.schema = schema;
@@ -123,19 +80,7 @@ class DDBClient>> {
await this.documentClient.update(params);
}
-
- async getLegacyUserData(userId: string) {
- await connectToMongoDB();
-
- const { data, problems } = LegacyUserSchema(await LegacyUserModel.findById(userId));
-
- if (problems != null || data.userData == null) {
- return undefined;
- }
-
- return { id: userId, userData: DDBClient.convertLegacySchedule(data.userData) };
- }
-
+
async getUserData(id: string) {
return (await ddbClient.get('id', id))?.userData;
}
@@ -173,6 +118,42 @@ class DDBClient>> {
}
}
+
+ /**
+ * Reference: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Query.Pagination.html
+ * @returns An async generator that yields batches of user data from DynamoDB pages.
+ */
+ async* getAllUserDataBatches(){
+ const params: ScanCommandInput = {
+ TableName: this.tableName,
+ }
+
+ while(true) {
+ const result = await this.documentClient.scan(params);
+
+
+ if (result.Items) {
+ console.log(`Scanned ${result.Items.length} items`);
+ const users = result.Items
+ .map((item) => UserSchema(item))
+ .filter(
+ (result) => (
+ result.problems == null
+ && result.data != null
+ )
+ )
+ .map((result) => result.data);
+
+ yield users.filter(
+ (user) => user.id !== undefined
+ );
+ }
+
+ if (typeof result.LastEvaluatedKey === 'undefined') return;
+
+ params.ExclusiveStartKey = result.LastEvaluatedKey;
+ }
+ }
}
export const ddbClient = new DDBClient(env.USERDATA_TABLE_NAME, UserSchema);
diff --git a/apps/backend/src/db/index.ts b/apps/backend/src/db/index.ts
new file mode 100644
index 000000000..1773f4ef9
--- /dev/null
+++ b/apps/backend/src/db/index.ts
@@ -0,0 +1,13 @@
+import { drizzle } from 'drizzle-orm/postgres-js';
+import postgres from 'postgres';
+
+import {backendEnvSchema} from "../env";
+import * as schema from './schema/index.js';
+
+const { DB_URL } = backendEnvSchema.parse(process.env);
+
+export const client = postgres(DB_URL);
+
+export const db = drizzle(client, { schema });
+
+export type Database = typeof db;
diff --git a/apps/backend/src/db/mongodb.ts b/apps/backend/src/db/mongodb.ts
deleted file mode 100644
index 6c788f488..000000000
--- a/apps/backend/src/db/mongodb.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-import mongoose from 'mongoose';
-import env from '../env';
-
-let isConnected = false;
-
-async function connectToMongoDB(): Promise {
- if (isConnected) {
- console.log('=> using existing database connection');
- return;
- }
-
- console.log('=> using new database connection');
-
- try {
- const db = await mongoose.connect(env.AA_MONGODB_URI, {});
-
- isConnected = db.connection.readyState === 1;
- console.log('Connected to MongoDB');
- } catch (error) {
- console.error('MongoDB connection error:', error);
- }
-}
-
-export default connectToMongoDB;
diff --git a/apps/backend/src/db/schema/auth/account.ts b/apps/backend/src/db/schema/auth/account.ts
new file mode 100644
index 000000000..de1a4e1c0
--- /dev/null
+++ b/apps/backend/src/db/schema/auth/account.ts
@@ -0,0 +1,33 @@
+import { primaryKey, pgTable, text, pgEnum } from 'drizzle-orm/pg-core';
+
+import { users } from './user';
+
+
+const accountTypes = ['GOOGLE', 'GUEST'] as const;
+
+export const accountTypeEnum = pgEnum(
+ 'account_type',
+ accountTypes
+);
+
+// Each user can have multiple accounts, each account is associated with a provider.
+// A user without an account is a username-only user.
+export const accounts = pgTable(
+ 'accounts',
+ {
+ userId: text('user_id')
+ .references(() => users.id, { onDelete: 'cascade' })
+ .notNull(),
+
+ accountType: accountTypeEnum('account_type')
+ .notNull()
+ .$default(() => 'GUEST'),
+
+ providerAccountId: text('provider_account_id').notNull(),
+ },
+ (table) => ([
+ primaryKey({columns: [table.userId, table.accountType], }),
+ ])
+);
+
+export type Account = typeof accounts.$inferSelect;
diff --git a/apps/backend/src/db/schema/auth/index.ts b/apps/backend/src/db/schema/auth/index.ts
new file mode 100644
index 000000000..49d796282
--- /dev/null
+++ b/apps/backend/src/db/schema/auth/index.ts
@@ -0,0 +1,3 @@
+export * from './account'
+export * from './session'
+export * from './user'
diff --git a/apps/backend/src/db/schema/auth/session.ts b/apps/backend/src/db/schema/auth/session.ts
new file mode 100644
index 000000000..4a950c29b
--- /dev/null
+++ b/apps/backend/src/db/schema/auth/session.ts
@@ -0,0 +1,18 @@
+import { createId } from '@paralleldrive/cuid2';
+import { timestamp, pgTable, text } from 'drizzle-orm/pg-core';
+
+import { users } from './user';
+
+export const sessions = pgTable('sessions', {
+ id: text('id').primaryKey().$defaultFn(createId),
+
+ userId: text('user_id')
+ .references(() => users.id, { onDelete: 'cascade' })
+ .notNull(),
+
+ expires: timestamp('expires').notNull(),
+
+ refreshToken: text('refresh_token').$defaultFn(createId),
+});
+
+export type Session = typeof sessions.$inferSelect;
diff --git a/apps/backend/src/db/schema/auth/user.ts b/apps/backend/src/db/schema/auth/user.ts
new file mode 100644
index 000000000..ed03ad98d
--- /dev/null
+++ b/apps/backend/src/db/schema/auth/user.ts
@@ -0,0 +1,43 @@
+import { createId } from '@paralleldrive/cuid2';
+import { AnyPgColumn, pgTable, text, timestamp } from 'drizzle-orm/pg-core';
+
+import { schedules } from '../schedule/schedule';
+
+/**
+ * User entity is analogous to a person.
+ */
+export const users = pgTable('users', {
+ /**
+ * Unique ID (CUID) to represent the entity.
+ */
+ id: text('id').primaryKey().$defaultFn(createId),
+
+ /**
+ * Phone number for subscribing to notifications.
+ */
+ phone: text('phone'),
+
+ /**
+ * Profile picture..
+ */
+ avatar: text('avatar'),
+
+ /**
+ * User's name.
+ */
+ name: text('name'),
+
+ /**
+ * Most recently viewed schedule.
+ */
+ currentScheduleId: text('current_schedule_id')
+ .references(
+ // Necessary because this is a circular dependency.
+ (): AnyPgColumn => schedules.id,
+ { onDelete: 'set null'}
+ ),
+
+ lastUpdated: timestamp('last_updated', { withTimezone: true }).defaultNow(),
+});
+
+export type User = typeof users.$inferSelect;
diff --git a/apps/backend/src/db/schema/index.ts b/apps/backend/src/db/schema/index.ts
new file mode 100644
index 000000000..d5ff64cff
--- /dev/null
+++ b/apps/backend/src/db/schema/index.ts
@@ -0,0 +1,3 @@
+export * from './auth'
+export * from './schedule'
+export * from './subscription'
diff --git a/apps/backend/src/db/schema/schedule/course.ts b/apps/backend/src/db/schema/schedule/course.ts
new file mode 100644
index 000000000..7b4c618b1
--- /dev/null
+++ b/apps/backend/src/db/schema/schedule/course.ts
@@ -0,0 +1,43 @@
+import { integer, pgTable, primaryKey, text, timestamp } from 'drizzle-orm/pg-core';
+import { schedules } from '.';
+
+/**
+ * coursesInSchedule have a N:1 relation with schedules.
+ *
+ * Schedules can't have duplicate courses. i.e. courses with the same section code and term.
+ *
+ * Once a schedule and its courses have been loaded, additional context can be retrieved
+ * for the courses by querying PPA with the section code and term.
+ */
+export const coursesInSchedule = pgTable(
+ 'coursesInSchedule',
+ {
+ scheduleId: text('scheduleId')
+ .references(() => schedules.id, { onDelete: 'cascade' })
+ .notNull(),
+
+ /**
+ * The course's section code.
+ */
+ sectionCode: integer('sectionCode').notNull(),
+
+ /**
+ * @example Winter 2024.
+ */
+ term: text('term').notNull(),
+
+ /**
+ * Color that the course has when displayed on calendar.
+ */
+ color: text('color').notNull(),
+
+ lastUpdated: timestamp('last_updated', { withTimezone: true }).defaultNow(),
+ },
+ (table) => [
+ primaryKey({
+ columns: [table.scheduleId, table.sectionCode, table.term],
+ }),
+ ]
+);
+
+export type CourseInSchedule = typeof coursesInSchedule.$inferSelect;
diff --git a/apps/backend/src/db/schema/schedule/custom_event.ts b/apps/backend/src/db/schema/schedule/custom_event.ts
new file mode 100644
index 000000000..146eeb030
--- /dev/null
+++ b/apps/backend/src/db/schema/schedule/custom_event.ts
@@ -0,0 +1,34 @@
+import { createId } from '@paralleldrive/cuid2';
+import { pgTable, text, timestamp } from "drizzle-orm/pg-core";
+
+import { schedules } from "./schedule";
+
+/**
+ * customEvents have a N:1 relation with schedules.
+ *
+ * There can be multiple custom events with the same name in a schedule.
+ */
+export const customEvents = pgTable(
+ 'customEvents',
+ {
+ id: text('id').primaryKey().$defaultFn(createId),
+
+ scheduleId: text('scheduleId')
+ .references(() => schedules.id, { onDelete: 'cascade' })
+ .notNull(),
+
+ title: text('title').notNull(),
+
+ start: text('start').notNull(),
+
+ end: text('end').notNull(),
+
+ days: text('days').notNull(), // Boolean (1/0) string
+
+ color: text('color'),
+
+ building: text('building'),
+
+ lastUpdated: timestamp('last_updated', { withTimezone: true }).defaultNow(),
+ }
+);
diff --git a/apps/backend/src/db/schema/schedule/index.ts b/apps/backend/src/db/schema/schedule/index.ts
new file mode 100644
index 000000000..c115ff3eb
--- /dev/null
+++ b/apps/backend/src/db/schema/schedule/index.ts
@@ -0,0 +1,3 @@
+export * from './schedule';
+export * from './course';
+export * from './custom_event';
diff --git a/apps/backend/src/db/schema/schedule/schedule.ts b/apps/backend/src/db/schema/schedule/schedule.ts
new file mode 100644
index 000000000..ab3508e7a
--- /dev/null
+++ b/apps/backend/src/db/schema/schedule/schedule.ts
@@ -0,0 +1,38 @@
+import { createId } from '@paralleldrive/cuid2';
+import { pgTable, unique, text, timestamp, integer } from 'drizzle-orm/pg-core';
+import { users } from '../auth/user';
+
+export const schedules = pgTable('schedules', {
+ id: text('id').primaryKey().$defaultFn(createId),
+
+ /**
+ * A schedule is owned by a user.
+ */
+ userId: text('user_id')
+ .references(() => users.id, { onDelete: 'cascade' })
+ .notNull(),
+
+ /**
+ * Name of the schedule.
+ */
+ name: text('name'),
+
+ /**
+ * Any custom notes.
+ */
+ notes: text('notes'),
+
+ /**
+ * Index of the schedule in the user's list of schedules.
+ */
+ index: integer('index').notNull(),
+
+ lastUpdated: timestamp('last_updated', { withTimezone: true }).notNull(),
+
+}, (table) => ([
+ unique().on(table.userId, table.name),
+ unique().on(table.userId, table.index),
+ ])
+);
+
+export type Schedule = typeof schedules.$inferSelect;
diff --git a/apps/backend/src/db/schema/subscription.ts b/apps/backend/src/db/schema/subscription.ts
new file mode 100644
index 000000000..918c5582a
--- /dev/null
+++ b/apps/backend/src/db/schema/subscription.ts
@@ -0,0 +1,36 @@
+import { integer, pgEnum, pgTable, primaryKey, text } from 'drizzle-orm/pg-core';
+import { users } from './auth/user';
+
+
+export const subscriptionTargetStatus = pgEnum(
+ 'subscription_target_status',
+ ['OPEN', 'WAITLISTED']
+)
+
+export const subscriptions = pgTable(
+ 'subscriptions',
+ {
+ /**
+ * The user that is subscribing to course updates for the specified section.
+ */
+ userId: text('userId').references(() => users.id, { onDelete: 'cascade' }),
+
+ /**
+ * Section code.
+ */
+ sectionCode: integer('sectionCode'),
+
+ /**
+ * @example "OPEN" could indicate that the user wants to be notified when this
+ * section changes from "WAITLISTED" to "OPEN".
+ */
+ status: subscriptionTargetStatus('status'),
+ },
+ (table) => [
+ primaryKey({
+ columns: [table.userId, table.sectionCode],
+ }),
+ ]
+);
+
+export type Subscription = typeof subscriptions.$inferSelect;
diff --git a/apps/backend/src/env.ts b/apps/backend/src/env.ts
index feb3afceb..a5b642ddf 100644
--- a/apps/backend/src/env.ts
+++ b/apps/backend/src/env.ts
@@ -1,16 +1,40 @@
-import { type } from 'arktype';
-import 'dotenv/config';
+import {z} from "zod";
+import * as dotenv from "dotenv";
-const Environment = type({
- 'NODE_ENV?': "'development' | 'production' | 'staging'",
- USERDATA_TABLE_NAME: 'string',
- AA_MONGODB_URI: 'string',
- AWS_REGION: 'string',
- MAPBOX_ACCESS_TOKEN: 'string',
- 'PR_NUM?': 'number',
- STAGE: "string",
-});
+dotenv.config();
-const env = Environment.assert({ ...process.env });
-export default env;
+/**
+ * Environment variables required by the backend during deploy time.
+ */
+export const deployEnvSchema = z.object({
+ DB_URL: z.string(),
+ STAGE: z.string(),
+ MAPBOX_ACCESS_TOKEN: z.string(),
+})
+
+/**
+ * Environment variables required by the backend to connect to the RDS instance.
+ */
+export const rdsEnvSchema = z.object({
+ DB_URL: z.string(),
+ NODE_ENV: z.string().optional(),
+})
+
+/**
+ * Environment variables required by the backend to connect to the DynamoDB table.
+ *
+ * This will be removed once we complete migration to RDS.
+ */
+export const ddbEnvSchema = z.object({
+ USERDATA_TABLE_NAME: z.string(),
+ AWS_REGION: z.string(),
+ NODE_ENV: z.string().optional(),
+})
+
+/**
+ * Environment variables required by the backend during runtime.
+ */
+export const backendEnvSchema = z.intersection(
+ deployEnvSchema, rdsEnvSchema, ddbEnvSchema
+)
diff --git a/apps/backend/src/index.ts b/apps/backend/src/index.ts
index bb1e2a356..95134c6f0 100644
--- a/apps/backend/src/index.ts
+++ b/apps/backend/src/index.ts
@@ -4,8 +4,7 @@ import type { CorsOptions } from 'cors';
import { createExpressMiddleware } from '@trpc/server/adapters/express';
import AppRouter from './routers';
import createContext from './context';
-import env from './env';
-import connectToMongoDB from '$db/mongodb';
+import { backendEnvSchema } from "./env";
const corsOptions: CorsOptions = {
origin: ['https://antalmanac.com', 'https://www.antalmanac.com', 'https://icssc-projects.github.io/AntAlmanac'],
@@ -16,8 +15,7 @@ const MAPBOX_API_URL = 'https://api.mapbox.com';
const PORT = 3000;
export async function start(corsEnabled = false) {
- await connectToMongoDB();
-
+ const env = backendEnvSchema.parse(process.env)
const app = express();
app.use(cors(corsEnabled ? corsOptions : undefined));
app.use(express.json());
diff --git a/apps/backend/src/lambda.ts b/apps/backend/src/lambda.ts
index 7df5df2f9..cff1c76d2 100644
--- a/apps/backend/src/lambda.ts
+++ b/apps/backend/src/lambda.ts
@@ -1,16 +1,16 @@
import serverlessExpress from '@vendia/serverless-express';
import type { Context, Handler } from 'aws-lambda';
+
+import {backendEnvSchema} from './env';
import { start } from '.';
-import connectToMongoDB from '$db/mongodb';
-import env from './env';
let cachedHandler: Handler;
export async function handler(event: any, context: Context, callback: any) {
+ const env = backendEnvSchema.parse(process.env)
if (!cachedHandler) {
const app = await start(env.NODE_ENV === 'production');
cachedHandler = serverlessExpress({ app });
}
- await connectToMongoDB();
return cachedHandler(event, context, callback);
}
diff --git a/apps/backend/src/lib/formatting.ts b/apps/backend/src/lib/formatting.ts
new file mode 100644
index 000000000..6d2ee962d
--- /dev/null
+++ b/apps/backend/src/lib/formatting.ts
@@ -0,0 +1,35 @@
+import { ShortCourseSchedule } from '@packages/antalmanac-types';
+
+/**
+ *
+ * @param scheduleName The original schedule name
+ * @param nameCounts A map of schedule names to the number of times they've been used
+ * @returns A schedule name with `(NUM)` appended to it if it's a duplicate
+ */
+function makeNonDuplicateScheduleName(
+ scheduleName: string,
+ nameCounts: Map
+): string {
+ const count = nameCounts.get(scheduleName) ?? 0;
+ nameCounts.set(scheduleName, count + 1);
+ return scheduleName + (count > 0 ? ` (${count})` : '');
+}
+
+/**
+ * Convert a list of schedules to use non-duplicate schedule names by
+ * appending `(NUM)` to the end of duplicate schedule names.
+ *
+ * Example: ['Winter 2022', 'Winter 2022', 'Spring 2022'] -> ['Winter 2022', 'Winter 2022 (1)', 'Spring 2022']
+ */
+export function mangleDupliateScheduleNames(
+ schedules: ShortCourseSchedule[]
+): ShortCourseSchedule[] {
+ const scheduleNameCounts = new Map();
+
+ return schedules.map(
+ (schedule, i) => ({
+ ...schedule,
+ scheduleName: makeNonDuplicateScheduleName(schedule.scheduleName, scheduleNameCounts)
+ })
+ );
+}
diff --git a/apps/backend/src/lib/rds.ts b/apps/backend/src/lib/rds.ts
new file mode 100644
index 000000000..868398903
--- /dev/null
+++ b/apps/backend/src/lib/rds.ts
@@ -0,0 +1,220 @@
+import { ShortCourse, ShortCourseSchedule, User, RepeatingCustomEvent } from '@packages/antalmanac-types';
+
+import { and, eq } from 'drizzle-orm';
+import type { Database } from '$db/index';
+import { schedules, users, accounts, coursesInSchedule, customEvents } from '$db/schema';
+
+type DatabaseOrTransaction = Omit;
+
+export class RDS {
+ /**
+ * If a guest user with the specified name exists, return their ID, otherwise return null.
+ */
+ static async guestUserIdWithNameOrNull(db: DatabaseOrTransaction, name: string): Promise {
+ return db
+ .select({ id: accounts.userId })
+ .from(accounts)
+ .where(and(eq(accounts.accountType, 'GUEST'), eq(accounts.providerAccountId, name)))
+ .limit(1)
+ .then((xs) => xs[0]?.id ?? null);
+ }
+
+ /**
+ * Creates a guest user if they don't already exist.
+ *
+ * @param db Database or transaction object
+ * @param name Guest user's name, to be used as providerAccountID and username
+ * @returns The new/existing user's ID
+ */
+ static async createGuestUserOptional(db: DatabaseOrTransaction, name: string) {
+ return db.transaction(async (tx) => {
+ const maybeUserId = await RDS.guestUserIdWithNameOrNull(tx, name);
+
+ const userId = maybeUserId
+ ? maybeUserId
+ : await tx
+ .insert(users)
+ .values({ name })
+ .returning({ id: users.id })
+ .then((users) => users[0].id);
+
+ if (userId === undefined) {
+ throw new Error(`Failed to create guest user for ${name}`);
+ }
+
+ await tx
+ .insert(accounts)
+ .values({ userId, accountType: 'GUEST', providerAccountId: name })
+ .onConflictDoNothing()
+ .execute();
+
+ return userId;
+ });
+ }
+
+ /**
+ * Creates a new schedule if one with its name doesn't already exist
+ * and replaces its courses and custom events with the ones provided.
+ *
+ * @returns The ID of the new/existing schedule
+ */
+ static async upsertScheduleAndContents(
+ db: DatabaseOrTransaction, userId: string, schedule: ShortCourseSchedule, index: number
+ ) {
+ // Add schedule
+ const dbSchedule = {
+ userId,
+ name: schedule.scheduleName,
+ notes: schedule.scheduleNote,
+ index,
+ lastUpdated: new Date(),
+ };
+
+ const scheduleResult = await db
+ .transaction((tx) =>
+ tx
+ .insert(schedules)
+ .values(dbSchedule)
+ .returning({ id: schedules.id })
+ )
+ .catch((error) => {
+ throw new Error(`Failed to insert schedule for ${userId} (${schedule.scheduleName}): ${error}`);
+ });
+
+ const scheduleId = scheduleResult[0].id;
+ if (scheduleId === undefined) {
+ throw new Error(`Failed to insert schedule for ${userId}`);
+ }
+
+ // Add courses and custom events
+ await Promise.all([
+ this.upsertCourses(db, scheduleId, schedule.courses).catch((error) => {
+ throw new Error(`Failed to insert courses for ${schedule.scheduleName}: ${error}`);
+ }),
+
+ this.upsertCustomEvents(db, scheduleId, schedule.customEvents).catch((error) => {
+ throw new Error(`Failed to insert custom events for ${schedule.scheduleName}: ${error}`);
+ }),
+ ]);
+
+ return scheduleId;
+ }
+
+ /**
+ * If the guest user with the username in the userData object doesn't already exist,
+ * create a new guest user and populate their data. Otherwise, returns null.
+ */
+ static async insertGuestUserData(db: DatabaseOrTransaction, userData: User): Promise {
+ return db.transaction(async (tx) => {
+ const userId = await RDS.guestUserIdWithNameOrNull(tx, userData.id);
+ if (userId) return null;
+ return RDS.upsertGuestUserData(tx, userData);
+ });
+ }
+
+ /**
+ * Does the same thing as `insertGuestUserData`, but also updates the user's schedules and courses if they exist.
+ *
+ * @param db The Drizzle client or transaction object
+ * @param userData The object of data containing the user's schedules and courses
+ * @returns The user's ID
+ */
+ static async upsertGuestUserData(db: DatabaseOrTransaction, userData: User): Promise {
+ return db.transaction(async (tx) => {
+ const userId = await this.createGuestUserOptional(tx, userData.id);
+
+ if (userId === undefined) {
+ throw new Error(`Failed to create guest user for ${userData.id}`);
+ }
+
+ // Add schedules and courses
+ const scheduleIds = await this.upsertSchedulesAndContents(tx, userId, userData.userData.schedules);
+
+ // Update user's current schedule index
+ const scheduleIndex = userData.userData.scheduleIndex;
+
+ const currentScheduleId =
+ scheduleIndex === undefined || scheduleIndex >= scheduleIds.length ? null : scheduleIds[scheduleIndex];
+
+ if (currentScheduleId !== null) {
+ await tx.update(users).set({ currentScheduleId: currentScheduleId }).where(eq(users.id, userId));
+ }
+
+ return userId;
+ });
+ }
+
+ /** Deletes and recreates all of the user's schedules and contents */
+ private static async upsertSchedulesAndContents(
+ db: DatabaseOrTransaction, userId: string, scheduleArray: ShortCourseSchedule[]
+ ): Promise {
+ // Drop all schedules, which will cascade to courses and custom events
+ await db.delete(schedules).where(eq(schedules.userId, userId));
+
+ return Promise.all(
+ scheduleArray.map(
+ (schedule, index) => this.upsertScheduleAndContents(db, userId, schedule, index)
+ )
+ );
+ }
+
+ /**
+ * Drops all courses in the schedule and re-add them,
+ * deduplicating by section code and term.
+ * */
+ private static async upsertCourses(db: DatabaseOrTransaction, scheduleId: string, courses: ShortCourse[]) {
+ await db.transaction((tx) => tx.delete(coursesInSchedule).where(eq(coursesInSchedule.scheduleId, scheduleId)));
+
+ if (courses.length === 0) {
+ return;
+ }
+
+ const coursesUnique: Set = new Set();
+
+ const dbCourses = courses.map((course) => ({
+ scheduleId,
+ sectionCode: parseInt(course.sectionCode),
+ term: course.term,
+ color: course.color,
+ lastUpdated: new Date(),
+ }));
+
+ const dbCoursesUnique = dbCourses.filter((course) => {
+ const key = `${course.sectionCode}-${course.term}`;
+ if (coursesUnique.has(key)) {
+ return false;
+ }
+ coursesUnique.add(key);
+ return true;
+ });
+
+ await db.transaction((tx) => tx.insert(coursesInSchedule).values(dbCoursesUnique));
+ }
+
+ private static async upsertCustomEvents(
+ db: DatabaseOrTransaction,
+ scheduleId: string,
+ repeatingCustomEvents: RepeatingCustomEvent[]
+ ) {
+ await db.transaction(
+ async (tx) => await tx.delete(customEvents).where(eq(customEvents.scheduleId, scheduleId))
+ );
+
+ if (repeatingCustomEvents.length === 0) {
+ return;
+ }
+
+ const dbCustomEvents = repeatingCustomEvents.map((event) => ({
+ scheduleId,
+ title: event.title,
+ start: event.start,
+ end: event.end,
+ days: event.days.map((day) => (day ? '1' : '0')).join(''),
+ color: event.color,
+ building: event.building,
+ lastUpdated: new Date(),
+ }));
+
+ await db.transaction(async (tx) => await tx.insert(customEvents).values(dbCustomEvents));
+ }
+}
diff --git a/apps/backend/src/models/News.ts b/apps/backend/src/models/News.ts
deleted file mode 100644
index df4a0538a..000000000
--- a/apps/backend/src/models/News.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import mongoose, { Document, Schema } from 'mongoose';
-
-export interface News extends Document {
- _id: string;
- title: string;
- body: string;
- date: string;
-}
-
-const NewsSchema: Schema = new Schema({
- title: { type: String, required: true },
- body: { type: String, required: true },
- date: { type: String, required: true },
-});
-
-const NewsModel = mongoose.model('News', NewsSchema);
-
-export default NewsModel;
diff --git a/apps/backend/src/models/User.ts b/apps/backend/src/models/User.ts
deleted file mode 100644
index 291beb53d..000000000
--- a/apps/backend/src/models/User.ts
+++ /dev/null
@@ -1,35 +0,0 @@
-import { Schema, model } from 'mongoose';
-import { LegacyUser } from '@packages/antalmanac-types';
-
-const UserSchema = new Schema(
- {
- _id: String,
- userData: {
- addedCourses: [
- {
- color: String,
- term: String,
- sectionCode: String,
- scheduleIndices: [Number],
- },
- ],
- scheduleNames: { type: [String], default: ['Schedule 1', 'Schedule 2', 'Schedule 3', 'Schedule 4'] },
- customEvents: [
- {
- customEventID: String,
- color: String,
- title: String,
- days: [Boolean],
- scheduleIndices: [Number],
- start: String,
- end: String,
- },
- ],
- },
- },
- {
- collection: 'users',
- }
-);
-
-export default model('LegacyUser', UserSchema);
diff --git a/apps/backend/src/routers/index.ts b/apps/backend/src/routers/index.ts
index 02bfbe834..a749a6de7 100644
--- a/apps/backend/src/routers/index.ts
+++ b/apps/backend/src/routers/index.ts
@@ -1,5 +1,4 @@
import { router } from '../trpc';
-import newsRouter from './news';
import usersRouter from './users';
import zotcourseRouter from './zotcours';
import courseRouter from './course';
@@ -12,7 +11,6 @@ const appRouter = router({
course: courseRouter,
enrollHist: enrollHistRouter,
grades: gradesRouter,
- news: newsRouter,
search: searchRouter,
users: usersRouter,
websoc: websocRouter,
diff --git a/apps/backend/src/routers/news.ts b/apps/backend/src/routers/news.ts
deleted file mode 100644
index dfc338425..000000000
--- a/apps/backend/src/routers/news.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { router, procedure } from '../trpc';
-import NewsModel, { News } from '../models/News';
-
-const newsRouter = router({
- /**
- * return all news
- */
- findAll: procedure.query(async () => {
- return (await NewsModel.find({})) as News[];
- }),
-});
-
-export default newsRouter;
diff --git a/apps/backend/src/routers/users.ts b/apps/backend/src/routers/users.ts
index b15c6b9d1..d12195e64 100644
--- a/apps/backend/src/routers/users.ts
+++ b/apps/backend/src/routers/users.ts
@@ -1,8 +1,12 @@
import { type } from 'arktype';
+
import { UserSchema } from '@packages/antalmanac-types';
-import { TRPCError } from '@trpc/server';
-import { router, procedure } from '../trpc';
-import { ddbClient, VISIBILITY } from '../db/ddb';
+
+import { db } from 'src/db';
+import { ddbClient } from 'src/db/ddb';
+import { mangleDupliateScheduleNames as mangleDuplicateScheduleNames } from 'src/lib/formatting';
+import { RDS } from 'src/lib/rds';
+import { procedure, router } from '../trpc';
const userInputSchema = type([{ userId: 'string' }, '|', { googleId: 'string' }]);
@@ -41,40 +45,33 @@ const usersRouter = router({
if ('googleId' in input) {
return await ddbClient.getGoogleUserData(input.googleId);
}
- return (await ddbClient.getUserData(input.userId)) ?? (await ddbClient.getLegacyUserData(input.userId));
+ return await ddbClient.getUserData(input.userId);
}),
/**
* Loads schedule data for a user that's logged in.
*/
- saveUserData: procedure.input(saveInputSchema.assert).mutation(async ({ input }) => {
- /**
- * Assign default visility value.
- */
- input.data.visibility ??= VISIBILITY.PRIVATE;
-
- // Requester and requestee IDs must match if schedule is private.
-
- if (input.data.visibility === VISIBILITY.PRIVATE && input.id !== input.data.id) {
- throw new TRPCError({
- code: 'UNAUTHORIZED',
- message: 'Schedule is private and user ID does not match.',
- });
- }
+ saveUserData: procedure
+ .input(saveInputSchema.assert)
+ .mutation(
+ async ({ input }) => {
+ const data = input.data;
- // Requester and requestee IDs must match if schedule is public (read-only).
+ // Mangle duplicate schedule names
+ data.userData.schedules = mangleDuplicateScheduleNames(data.userData.schedules);
+
+ // Await both, but only throw if DDB save fails.
+ const results = await Promise.allSettled([
+ ddbClient.insertItem(data),
+ RDS.upsertGuestUserData(db, data)
+ .catch((error) => console.error('Failed to upsert user data:', error))
+ ]);
- if (input.data.visibility === VISIBILITY.PUBLIC && input.id !== input.data.id) {
- throw new TRPCError({
- code: 'UNAUTHORIZED',
- message: 'Schedule is public and user ID does not match.',
- });
- }
-
- // Schedule is open, or requester user ID and schedule's user ID match.
-
- await ddbClient.insertItem(input.data);
- }),
+ if (results[0].status === 'rejected') {
+ throw results[0].reason;
+ }
+ }
+ ),
/**
* Users can view other users' schedules, even anonymously.
diff --git a/apps/backend/src/searchData.ts b/apps/backend/src/searchData.ts
deleted file mode 100644
index 3fc86f7de..000000000
--- a/apps/backend/src/searchData.ts
+++ /dev/null
@@ -1,187 +0,0 @@
-import type {DepartmentSearchResult, SearchResult} from '@packages/antalmanac-types';
-
-// TODO implement codegen for this at CI time
-
-export const departmentKeys = ["ac eng","afam","anatomy","anthro","arabic","armn","art","art his","arts","asianam","bana","bats","biochem","bio sci","bme","cbe","cbems","chc/lat","chem","chinese","classic","clt&thy","cogs","com lit","compsci","critism","crm/law","cse","dance","data","dev bio","drama","earthss","eas","e asian","eco evo","econ","ecps","educ","eecs","ehs","english","engr","engrcee","engrmae","engrmse","epidem","euro st","fin","flm&mda","french","gdim","gen&sex","german","glblclt","glbl me","greek","hebrew","history","human","i&c sci","in4matx","inno","intl st","iran","italian","japanse","korean","latin","linguis","lit jrn","lps","lsci","math","med hum","mgmt","mgmt ep","mgmt fe","mgmt hc","mgmtmba","mgmtphd","m&mg","mol bio","mpac","mse","music","net sys","neurbio","nur sci","path","ped gen","persian","pharm","philos","phmd","phrmsci","phy sci","physics","physio","pol sci","portug","pp&d","psci","psy beh","psych","pubhlth","pub pol","rel std","rotc","russian","socecol","sociol","soc sci","spanish","spps","stats","swe","tox","ucdc","uni aff","uni stu","uppp","vietmse","vis std","womn st","writing"] as const;
-
-export type DepartmentKey = (typeof departmentKeys)[number];
-
-export const departmentAliasKeys = ["aceng","arthis","biosci","chclat","cltthy","comlit","crmlaw","cs","devbio","easian","ecoevo","ess","eurost","flmmda","gensex","glblme","ics","inf","intlst","litjrn","medhum","mgmtep","mgmtfe","mgmthc","mmg","molbio","netsys","nursci","pedgen","physci","polsci","ppd","psybeh","pubpol","relstd","socsci","uniaff","unistu","visstd","womnst","wr"] as const;
-
-export type DepartmentAliasKey = (typeof departmentAliasKeys)[number];
-
-export const departmentAliases: Record = {
- aceng: 'ac eng',
- arthis: 'art his',
- biosci: 'bio sci',
- chclat: 'chc/lat',
- cltthy: 'clt&thy',
- comlit: 'com lit',
- crmlaw: 'crm/law',
- cs: 'compsci',
- devbio: 'dev bio',
- easian: 'e asian',
- ecoevo: 'eco evo',
- ess: 'earthss',
- eurost: 'euro st',
- flmmda: 'flm&mda',
- gensex: 'gen&sex',
- glblme: 'glbl me',
- ics: 'i&c sci',
- inf: 'in4matx',
- intlst: 'intl st',
- litjrn: 'lit jrn',
- medhum: 'med hum',
- mgmtep: 'mgmt ep',
- mgmtfe: 'mgmt fe',
- mgmthc: 'mgmt hc',
- mmg: 'm&mg',
- molbio: 'mol bio',
- netsys: 'net sys',
- nursci: 'nur sci',
- pedgen: 'ped gen',
- physci: 'phy sci',
- polsci: 'pol sci',
- ppd: 'pp&d',
- psybeh: 'psy beh',
- pubpol: 'pub pol',
- relstd: 'rel std',
- socsci: 'soc sci',
- uniaff: 'uni aff',
- unistu: 'uni stu',
- visstd: 'vis std',
- womnst: 'womn st',
- wr: 'writing',
-};
-
-const departments: Record = {
- 'ac eng': { type: 'DEPARTMENT', name: 'Academic English' },
- afam: { type: 'DEPARTMENT', name: 'African American Studies' },
- anatomy: { type: 'DEPARTMENT', name: 'Anatomy and Neurobiology' },
- anthro: { type: 'DEPARTMENT', name: 'Anthropology' },
- arabic: { type: 'DEPARTMENT', name: 'Arabic' },
- armn: { type: 'DEPARTMENT', name: 'Armenian' },
- art: { type: 'DEPARTMENT', name: 'Art' },
- 'art his': { type: 'DEPARTMENT', name: 'Art History' },
- arts: { type: 'DEPARTMENT', name: 'Arts' },
- asianam: { type: 'DEPARTMENT', name: 'Asian American Studies' },
- bana: { type: 'DEPARTMENT', name: 'Business Analytics' },
- bats: { type: 'DEPARTMENT', name: 'Biomedical and Translational Science' },
- biochem: { type: 'DEPARTMENT', name: 'Biological Chemistry' },
- 'bio sci': { type: 'DEPARTMENT', name: 'Biological Sciences' },
- bme: { type: 'DEPARTMENT', name: 'Biomedical Engineering' },
- cbe: { type: 'DEPARTMENT', name: 'Chemical and Biomolecular Engineering' },
- cbems: { type: 'DEPARTMENT', name: 'Chemical Engineering and Materials Science' },
- 'chc/lat': { type: 'DEPARTMENT', name: 'Chicano/Latino Studies' },
- chem: { type: 'DEPARTMENT', name: 'Chemistry' },
- chinese: { type: 'DEPARTMENT', name: 'Chinese' },
- classic: { type: 'DEPARTMENT', name: 'Classics' },
- 'clt&thy': { type: 'DEPARTMENT', name: 'Culture and Theory' },
- cogs: { type: 'DEPARTMENT', name: 'Cognitive Sciences' },
- 'com lit': { type: 'DEPARTMENT', name: 'Comparative Literature' },
- compsci: { type: 'DEPARTMENT', name: 'Computer Science' },
- critism: { type: 'DEPARTMENT', name: 'Criticism' },
- 'crm/law': { type: 'DEPARTMENT', name: 'Criminology, Law and Society' },
- cse: { type: 'DEPARTMENT', name: 'Computer Science and Engineering' },
- dance: { type: 'DEPARTMENT', name: 'Dance' },
- data: { type: 'DEPARTMENT', name: 'Data Science' },
- 'dev bio': { type: 'DEPARTMENT', name: 'Developmental and Cell Biology' },
- drama: { type: 'DEPARTMENT', name: 'Drama' },
- earthss: { type: 'DEPARTMENT', name: 'Earth System Science' },
- eas: { type: 'DEPARTMENT', name: 'East Asian Studies' },
- 'e asian': { type: 'DEPARTMENT', name: 'East Asian Languages and Literatures' },
- 'eco evo': { type: 'DEPARTMENT', name: 'Ecology and Evolutionary Biology' },
- econ: { type: 'DEPARTMENT', name: 'Economics' },
- ecps: { type: 'DEPARTMENT', name: 'Embedded and Cyber-Physical Systems' },
- educ: { type: 'DEPARTMENT', name: 'Education' },
- eecs: { type: 'DEPARTMENT', name: 'Electrical Engineering & Computer Science' },
- ehs: { type: 'DEPARTMENT', name: 'Environmental Health Sciences' },
- english: { type: 'DEPARTMENT', name: 'English' },
- engr: { type: 'DEPARTMENT', name: 'Engineering' },
- engrcee: { type: 'DEPARTMENT', name: 'Civil and Environmental Engineering' },
- engrmae: { type: 'DEPARTMENT', name: 'Mechanical and Aerospace Engineering' },
- engrmse: { type: 'DEPARTMENT', name: 'Materials Science and Engineering' },
- epidem: { type: 'DEPARTMENT', name: 'Epidemiology' },
- 'euro st': { type: 'DEPARTMENT', name: 'European Studies' },
- fin: { type: 'DEPARTMENT', name: 'Finance' },
- 'flm&mda': { type: 'DEPARTMENT', name: 'Film and Media Studies' },
- french: { type: 'DEPARTMENT', name: 'French' },
- gdim: { type: 'DEPARTMENT', name: 'Game Design and Interactive Media' },
- 'gen&sex': { type: 'DEPARTMENT', name: 'Gender and Sexuality Studies' },
- german: { type: 'DEPARTMENT', name: 'German' },
- glblclt: { type: 'DEPARTMENT', name: 'Global Cultures' },
- 'glbl me': { type: 'DEPARTMENT', name: 'Global Middle East Studies' },
- greek: { type: 'DEPARTMENT', name: 'Greek' },
- hebrew: { type: 'DEPARTMENT', name: 'Hebrew' },
- history: { type: 'DEPARTMENT', name: 'History' },
- human: { type: 'DEPARTMENT', name: 'Humanities' },
- 'i&c sci': { type: 'DEPARTMENT', name: 'Information and Computer Science' },
- in4matx: { type: 'DEPARTMENT', name: 'Informatics' },
- inno: { type: 'DEPARTMENT', name: 'Innovation and Entrepreneurship' },
- 'intl st': { type: 'DEPARTMENT', name: 'International Studies' },
- iran: { type: 'DEPARTMENT', name: 'Iranian Studies' },
- italian: { type: 'DEPARTMENT', name: 'Italian' },
- japanse: { type: 'DEPARTMENT', name: 'Japanese' },
- korean: { type: 'DEPARTMENT', name: 'Korean' },
- latin: { type: 'DEPARTMENT', name: 'Latin' },
- linguis: { type: 'DEPARTMENT', name: 'Linguistics' },
- 'lit jrn': { type: 'DEPARTMENT', name: 'Literary Journalism' },
- lps: { type: 'DEPARTMENT', name: 'Logic and Philosophy of Science' },
- lsci: { type: 'DEPARTMENT', name: 'Language Science' },
- math: { type: 'DEPARTMENT', name: 'Mathematics' },
- 'med hum': { type: 'DEPARTMENT', name: 'Medical Humanities' },
- mgmt: { type: 'DEPARTMENT', name: 'Management' },
- 'mgmt ep': { type: 'DEPARTMENT', name: 'Executive MBA' },
- 'mgmt fe': { type: 'DEPARTMENT', name: 'Fully Employed MBA' },
- 'mgmt hc': { type: 'DEPARTMENT', name: 'Health Care MBA' },
- mgmtmba: { type: 'DEPARTMENT', name: 'Management MBA' },
- mgmtphd: { type: 'DEPARTMENT', name: 'Management PhD' },
- 'm&mg': { type: 'DEPARTMENT', name: 'Microbiology and Molecular Genetics' },
- 'mol bio': { type: 'DEPARTMENT', name: 'Molecular Biology and Biochemistry' },
- mpac: { type: 'DEPARTMENT', name: 'Master of Professional Accountancy' },
- mse: { type: 'DEPARTMENT', name: 'Materials Science and Engineering' },
- music: { type: 'DEPARTMENT', name: 'Music' },
- 'net sys': { type: 'DEPARTMENT', name: 'Networked Systems' },
- neurbio: { type: 'DEPARTMENT', name: 'Neurobiology and Behavior' },
- 'nur sci': { type: 'DEPARTMENT', name: 'Nursing Science' },
- path: { type: 'DEPARTMENT', name: 'Pathology and Laboratory Medicine' },
- 'ped gen': { type: 'DEPARTMENT', name: 'Pediatrics Genetics' },
- persian: { type: 'DEPARTMENT', name: 'Persian' },
- pharm: { type: 'DEPARTMENT', name: 'Medical Pharmacology' },
- philos: { type: 'DEPARTMENT', name: 'Philosophy' },
- phmd: { type: 'DEPARTMENT', name: 'Pharmacy' },
- phrmsci: { type: 'DEPARTMENT', name: 'Pharmaceutical Sciences' },
- 'phy sci': { type: 'DEPARTMENT', name: 'Physical Science' },
- physics: { type: 'DEPARTMENT', name: 'Physics' },
- physio: { type: 'DEPARTMENT', name: 'Physiology and Biophysics' },
- 'pol sci': { type: 'DEPARTMENT', name: 'Political Science' },
- portug: { type: 'DEPARTMENT', name: 'Portuguese' },
- 'pp&d': { type: 'DEPARTMENT', name: 'Planning, Policy, and Design' },
- psci: { type: 'DEPARTMENT', name: 'Psychological Science' },
- 'psy beh': { type: 'DEPARTMENT', name: 'Psychology and Social Behavior' },
- psych: { type: 'DEPARTMENT', name: 'Psychology' },
- pubhlth: { type: 'DEPARTMENT', name: 'Public Health' },
- 'pub pol': { type: 'DEPARTMENT', name: 'Public Policy' },
- 'rel std': { type: 'DEPARTMENT', name: 'Religious Studies' },
- rotc: { type: 'DEPARTMENT', name: "Reserve Officers' Training Corps" },
- russian: { type: 'DEPARTMENT', name: 'Russian' },
- socecol: { type: 'DEPARTMENT', name: 'Social Ecology' },
- sociol: { type: 'DEPARTMENT', name: 'Sociology' },
- 'soc sci': { type: 'DEPARTMENT', name: 'Social Science' },
- spanish: { type: 'DEPARTMENT', name: 'Spanish' },
- spps: { type: 'DEPARTMENT', name: 'Social Policy and Public Service' },
- stats: { type: 'DEPARTMENT', name: 'Statistics' },
- swe: { type: 'DEPARTMENT', name: 'Software Engineering' },
- tox: { type: 'DEPARTMENT', name: 'Toxicology' },
- ucdc: { type: 'DEPARTMENT', name: 'UC Washington DC' },
- 'uni aff': { type: 'DEPARTMENT', name: 'University Affairs' },
- 'uni stu': { type: 'DEPARTMENT', name: 'University Studies' },
- uppp: { type: 'DEPARTMENT', name: 'Urban Policy and Public Planning' },
- vietmse: { type: 'DEPARTMENT', name: 'Vietnamese' },
- 'vis std': { type: 'DEPARTMENT', name: 'Visual Studies' },
- 'womn st': { type: 'DEPARTMENT', name: "Women's Studies" },
- writing: { type: 'DEPARTMENT', name: 'Writing' },
-};
-
-export const toDepartment = (key: DepartmentKey | DepartmentAliasKey): [string, SearchResult] =>
- [(departmentAliases[key as DepartmentAliasKey] ?? key).toUpperCase(), departments[departmentAliases[key as DepartmentAliasKey] ?? key]];
diff --git a/apps/backend/tsconfig.json b/apps/backend/tsconfig.json
index b872dac8a..f134c226b 100644
--- a/apps/backend/tsconfig.json
+++ b/apps/backend/tsconfig.json
@@ -16,6 +16,6 @@
"$db/*": ["./src/db/*"]
}
},
- "include": ["src/**/*", "scripts/**/*.ts"],
+ "include": ["src/**/*", "scripts/**/*.ts", "drizzle.config.ts"],
"exclude": ["node_modules", "dist"]
}
diff --git a/apps/cdk/package.json b/apps/cdk/package.json
index 36f2f503d..973ad2e54 100644
--- a/apps/cdk/package.json
+++ b/apps/cdk/package.json
@@ -24,7 +24,8 @@
"arktype": "1.0.14-alpha",
"aws-cdk-lib": "^2.94.0",
"constructs": "^10.2.70",
- "dotenv": "^16.0.3"
+ "dotenv": "^16.0.3",
+ "zod": "3.23.8"
},
"devDependencies": {
"@types/node": "^20.11.5",
diff --git a/apps/cdk/src/stacks/backend.ts b/apps/cdk/src/stacks/backend.ts
index 40395d80a..e0d4590aa 100644
--- a/apps/cdk/src/stacks/backend.ts
+++ b/apps/cdk/src/stacks/backend.ts
@@ -1,4 +1,3 @@
-import { type } from 'arktype';
import { Stack, type StackProps, RemovalPolicy, Duration } from 'aws-cdk-lib';
import * as apigateway from 'aws-cdk-lib/aws-apigateway';
import * as acm from 'aws-cdk-lib/aws-certificatemanager';
@@ -7,27 +6,28 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
import * as route53 from 'aws-cdk-lib/aws-route53';
import * as targets from 'aws-cdk-lib/aws-route53-targets';
import type { Construct } from 'constructs';
+import { z } from 'zod';
+import { deployEnvSchema } from '../../../backend/src/env';
import { zoneName } from '../lib/constants';
export class BackendStack extends Stack {
+ /**
+ * Env vars specifically for the CDK stack/deployment.
+ *
+ * If {@link env.PR_NUM} is defined, then {@link env.NODE_ENV} should be 'staging'.
+ */
+ static readonly CDKEnvironment = z.object({
+ CERTIFICATE_ARN: z.string(),
+ HOSTED_ZONE_ID: z.string(),
+ ANTEATER_API_KEY: z.string(),
+ NODE_ENV: z.string().optional(),
+ PR_NUM: z.string().optional(),
+ });
+
constructor(scope: Construct, id: string, props?: StackProps) {
super(scope, id, props);
-
- /**
- * If {@link env.PR_NUM} is defined, then {@link env.NODE_ENV} should be 'staging'.
- */
- const env = type({
- CERTIFICATE_ARN: 'string',
- HOSTED_ZONE_ID: 'string',
- MONGODB_URI_PROD: 'string',
- GOOGLE_CLIENT_ID: 'string',
- GOOGLE_CLIENT_SECRET: 'string',
- 'MAPBOX_ACCESS_TOKEN?': 'string',
- 'NODE_ENV?': 'string',
- 'PR_NUM?': 'string',
- ANTEATER_API_KEY: 'string',
- }).assert({ ...process.env });
+ const env = z.intersection(BackendStack.CDKEnvironment, deployEnvSchema).parse(process.env);
/**
* The domain that the backend API will be hosted on.
@@ -56,10 +56,7 @@ export class BackendStack extends Stack {
timeout: Duration.seconds(5),
memorySize: 256,
environment: {
- ANTEATER_API_KEY: env.ANTEATER_API_KEY,
- AA_MONGODB_URI: env.MONGODB_URI_PROD,
- MAPBOX_ACCESS_TOKEN: env.MAPBOX_ACCESS_TOKEN ?? '',
- STAGE: env.NODE_ENV ?? 'development',
+ ...env,
USERDATA_TABLE_NAME: userDataDDB.tableName,
},
});
diff --git a/packages/types/src/customevent.ts b/packages/types/src/customevent.ts
index 415e9cbf3..b4d7c76d8 100644
--- a/packages/types/src/customevent.ts
+++ b/packages/types/src/customevent.ts
@@ -5,7 +5,7 @@ export const RepeatingCustomEventSchema = type({
start: 'string',
end: 'string',
days: 'boolean[]',
- customEventID: 'number | parsedNumber',
+ customEventID: 'number | parsedNumber', // Unique only within the schedule.
'color?': 'string',
'building?': 'string | undefined',
});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index cf9439e0b..e64a88656 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,16 +10,16 @@ importers:
devDependencies:
'@types/eslint':
specifier: ^8.56.5
- version: 8.56.5
+ version: 8.56.12
'@types/node':
specifier: ^20.11.6
- version: 20.11.6
+ version: 20.17.6
cross-env:
specifier: ^7.0.3
version: 7.0.3
eslint-import-resolver-typescript:
specifier: ^3.6.1
- version: 3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0)
+ version: 3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0)
husky:
specifier: ^8.0.3
version: 8.0.3
@@ -28,22 +28,22 @@ importers:
version: 22.1.0
lint-staged:
specifier: ^13.1.1
- version: 13.1.2
+ version: 13.3.0
prettier:
specifier: ^3.1.0
- version: 3.1.0
+ version: 3.3.3
turbo:
specifier: latest
- version: 1.10.13
+ version: 2.3.3
vitest:
specifier: ^0.34.4
- version: 0.34.4(jsdom@22.1.0)
+ version: 0.34.6(jsdom@22.1.0)
.github/actions/create-deployment:
dependencies:
'@actions/core':
specifier: ^1.10.1
- version: 1.10.1
+ version: 1.11.1
'@actions/github':
specifier: ^6.0.0
version: 6.0.0
@@ -52,76 +52,79 @@ importers:
dependencies:
'@actions/core':
specifier: ^1.10.1
- version: 1.10.1
+ version: 1.11.1
'@actions/github':
specifier: ^6.0.0
version: 6.0.0
apps/antalmanac:
dependencies:
+ '@babel/runtime':
+ specifier: ^7.26.0
+ version: 7.26.0
'@date-io/date-fns':
specifier: ^2.16.0
- version: 2.16.0(date-fns@2.29.3)
+ version: 2.17.0(date-fns@2.30.0)
'@emotion/react':
specifier: ^11.10.5
- version: 11.10.6(@types/react@18.0.28)(react@18.2.0)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/styled':
specifier: ^11.10.5
- version: 11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@material-ui/core':
specifier: ^4.12.4
- version: 4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@material-ui/icons':
specifier: ^4.11.3
- version: 4.11.3(@material-ui/core@4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 4.11.3(@material-ui/core@4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@material-ui/lab':
specifier: ^4.0.0-alpha.61
- version: 4.0.0-alpha.61(@material-ui/core@4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 4.0.0-alpha.61(@material-ui/core@4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@material-ui/pickers':
specifier: ^3.3.10
- version: 3.3.10(@date-io/core@2.16.0)(@material-ui/core@4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(prop-types@15.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.3.11(@date-io/core@3.0.0)(@material-ui/core@4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/base':
specifier: 5.0.0-beta.13
- version: 5.0.0-beta.13(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 5.0.0-beta.13(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/icons-material':
specifier: ^5.11.0
- version: 5.11.9(@mui/material@5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)
+ version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/lab':
specifier: ^5.0.0-alpha.118
- version: 5.0.0-alpha.120(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@mui/material@5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 5.0.0-alpha.173(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/material':
specifier: ^5.11.7
- version: 5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@packages/antalmanac-types':
specifier: workspace:^
version: link:../../packages/types
'@react-leaflet/core':
specifier: ^2.1.0
- version: 2.1.0(leaflet@1.9.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@reactour/tour':
specifier: ^3.6.1
- version: 3.6.1(react@18.2.0)
+ version: 3.7.0(react@18.3.1)
'@tanstack/react-query':
specifier: ^4.24.4
- version: 4.24.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@trpc/client':
specifier: ^10.30.0
- version: 10.30.0(@trpc/server@10.30.0)
+ version: 10.45.2(@trpc/server@10.45.2)
'@trpc/server':
specifier: ^10.30.0
- version: 10.30.0
+ version: 10.45.2
chart.js:
specifier: ^4.2.1
- version: 4.2.1
+ version: 4.4.6
classnames:
specifier: ^2.3.2
- version: 2.3.2
+ version: 2.5.1
date-fns:
specifier: ^2.29.3
- version: 2.29.3
+ version: 2.30.0
dayjs:
specifier: ^1.11.7
- version: 1.11.7
+ version: 1.11.13
events:
specifier: ^3.3.0
version: 3.3.0
@@ -133,10 +136,10 @@ importers:
version: 1.4.1
ics:
specifier: ^3.0.1
- version: 3.1.0
+ version: 3.8.1
leaflet:
specifier: ^1.9.3
- version: 1.9.3
+ version: 1.9.4
leaflet-routing-machine:
specifier: ^3.2.12
version: 3.2.12
@@ -145,104 +148,104 @@ importers:
version: 0.79.0
material-ui-popup-state:
specifier: ^5.0.4
- version: 5.0.4(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 5.3.1(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
moment:
specifier: ^2.29.4
- version: 2.29.4
+ version: 2.30.1
moment-timezone:
specifier: ^0.5.43
- version: 0.5.43
+ version: 0.5.46
notistack:
specifier: ^2.0.8
- version: 2.0.8(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@mui/material@5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 2.0.8(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-big-calendar:
specifier: ^1.6.4
- version: 1.6.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-chartjs-2:
specifier: ^5.2.0
- version: 5.2.0(chart.js@4.2.1)(react@18.2.0)
+ version: 5.2.0(chart.js@4.4.6)(react@18.3.1)
react-color:
specifier: ^2.19.3
- version: 2.19.3(react@18.2.0)
+ version: 2.19.3(react@18.3.1)
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-ga4:
specifier: ^2.0.0
- version: 2.0.0
+ version: 2.1.0
react-input-mask:
specifier: ^2.0.4
- version: 2.0.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-lazyload:
specifier: ^3.2.0
- version: 3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-leaflet:
specifier: ^4.2.1
- version: 4.2.1(leaflet@1.9.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-router-dom:
specifier: ^6.8.1
- version: 6.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-split:
specifier: ^2.0.14
- version: 2.0.14(react@18.2.0)
+ version: 2.0.14(react@18.3.1)
recharts:
specifier: ^2.4.2
- version: 2.4.3(prop-types@15.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 2.13.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
superjson:
specifier: ^1.12.3
- version: 1.12.3
+ version: 1.13.3
ua-parser-js:
specifier: ^1.0.37
- version: 1.0.37
+ version: 1.0.39
zustand:
specifier: ^4.3.2
- version: 4.3.3(react@18.2.0)
+ version: 4.5.5(@types/react@18.3.12)(react@18.3.1)
devDependencies:
'@babel/core':
specifier: ^7.20.12
- version: 7.20.12
+ version: 7.26.0
'@testing-library/react':
specifier: ^14.0.0
- version: 14.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/eslint':
specifier: ^8.56.5
- version: 8.56.5
+ version: 8.56.12
'@types/file-saver':
specifier: ^2.0.5
- version: 2.0.5
+ version: 2.0.7
'@types/leaflet':
specifier: ^1.9.0
- version: 1.9.0
+ version: 1.9.14
'@types/leaflet-routing-machine':
specifier: ^3.2.4
- version: 3.2.4
+ version: 3.2.8
'@types/leaflet.locatecontrol':
specifier: ^0.74.1
- version: 0.74.1
+ version: 0.74.6
'@types/node':
specifier: ^18.13.0
- version: 18.13.0
+ version: 18.19.64
'@types/react':
specifier: ^18.0.27
- version: 18.0.28
+ version: 18.3.12
'@types/react-big-calendar':
specifier: ^1.6.0
- version: 1.6.0
+ version: 1.15.0
'@types/react-color':
specifier: ^3.0.6
- version: 3.0.6
+ version: 3.0.12
'@types/react-dom':
specifier: ^18.0.10
- version: 18.0.11
+ version: 18.3.1
'@types/react-input-mask':
specifier: ^3.0.2
- version: 3.0.2
+ version: 3.0.6
'@types/react-lazyload':
specifier: ^3.2.0
- version: 3.2.0
+ version: 3.2.3
'@types/reactour':
specifier: ^1.18.5
version: 1.18.5
@@ -251,40 +254,40 @@ importers:
version: 0.7.39
'@vitejs/plugin-react':
specifier: ^4.0.4
- version: 4.0.4(vite@4.4.9(@types/node@18.13.0))
+ version: 4.3.3(vite@4.5.5(@types/node@18.19.64))
aws-sdk:
specifier: ^2.1550.0
- version: 2.1550.0
+ version: 2.1692.0
eslint:
specifier: ^8.36.0
- version: 8.37.0
+ version: 8.57.1
eslint-config-prettier:
specifier: ^8.7.0
- version: 8.8.0(eslint@8.37.0)
+ version: 8.10.0(eslint@8.57.1)
eslint-plugin-import:
specifier: ^2.27.5
- version: 2.27.5(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.37.0)
+ version: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0))(eslint@8.57.1)
eslint-plugin-jsx-a11y:
specifier: ^6.7.1
- version: 6.7.1(eslint@8.37.0)
+ version: 6.10.2(eslint@8.57.1)
eslint-plugin-react:
specifier: ^7.32.2
- version: 7.32.2(eslint@8.37.0)
+ version: 7.37.2(eslint@8.57.1)
eslint-plugin-react-hooks:
specifier: ^4.6.0
- version: 4.6.0(eslint@8.37.0)
+ version: 4.6.2(eslint@8.57.1)
prettier:
specifier: ^2.8.4
- version: 2.8.4
+ version: 2.8.8
typescript:
specifier: 5.6.3
version: 5.6.3
vite:
specifier: ^4.4.9
- version: 4.4.9(@types/node@18.13.0)
+ version: 4.5.5(@types/node@18.19.64)
vite-plugin-svgr:
specifier: ^2.4.0
- version: 2.4.0(rollup@3.29.1)(vite@4.4.9(@types/node@18.13.0))
+ version: 2.4.0(rollup@4.27.2)(vite@4.5.5(@types/node@18.19.64))
apps/backend:
dependencies:
@@ -294,12 +297,15 @@ importers:
'@packages/antalmanac-types':
specifier: workspace:*
version: link:../../packages/types
+ '@paralleldrive/cuid2':
+ specifier: ^2.2.2
+ version: 2.2.2
'@trpc/server':
specifier: ^10.30.0
- version: 10.30.0
+ version: 10.45.2
'@vendia/serverless-express':
specifier: ^4.10.1
- version: 4.10.1
+ version: 4.12.6
arktype:
specifier: 1.0.14-alpha
version: 1.0.14-alpha
@@ -311,80 +317,83 @@ importers:
version: 2.8.5
dotenv:
specifier: ^16.0.3
- version: 16.0.3
+ version: 16.4.5
+ drizzle-orm:
+ specifier: ^0.36.3
+ version: 0.36.3(@types/react@18.3.12)(postgres@3.4.5)(react@18.3.1)
envalid:
specifier: ^7.3.1
version: 7.3.1
express:
specifier: ^4.18.2
- version: 4.18.2
+ version: 4.21.1
fuzzysort:
specifier: 3.1.0
version: 3.1.0
- mongodb:
- specifier: ^5.0.1
- version: 5.0.1
- mongoose:
- specifier: ^7.1.0j
- version: 7.1.0
+ postgres:
+ specifier: ^3.4.4
+ version: 3.4.5
superjson:
specifier: ^1.12.3
- version: 1.12.3
+ version: 1.13.3
zod:
specifier: 3.23.8
version: 3.23.8
devDependencies:
'@aws-sdk/client-dynamodb':
specifier: ^3.332.0
- version: 3.332.0
+ version: 3.693.0
'@aws-sdk/lib-dynamodb':
specifier: ^3.332.0
- version: 3.332.0(@aws-sdk/client-dynamodb@3.332.0)(@aws-sdk/smithy-client@3.347.0)(@aws-sdk/types@3.489.0)
+ version: 3.693.0(@aws-sdk/client-dynamodb@3.693.0)
'@types/aws-lambda':
specifier: ^8.10.110
- version: 8.10.110
+ version: 8.10.145
'@types/cors':
specifier: ^2.8.13
- version: 2.8.13
+ version: 2.8.17
'@types/express':
specifier: ^4.17.17
- version: 4.17.17
+ version: 4.17.21
'@typescript-eslint/eslint-plugin':
specifier: ^5.52.0
- version: 5.57.1(@typescript-eslint/parser@5.57.1(eslint@8.38.0)(typescript@5.6.3))(eslint@8.38.0)(typescript@5.6.3)
+ version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
'@typescript-eslint/parser':
specifier: ^5.52.0
- version: 5.57.1(eslint@8.38.0)(typescript@5.6.3)
+ version: 5.62.0(eslint@8.57.1)(typescript@5.6.3)
concurrently:
specifier: ^8.0.1
- version: 8.0.1
+ version: 8.2.2
+ drizzle-kit:
+ specifier: ^0.28.1
+ version: 0.28.1
esbuild:
specifier: ^0.17.19
version: 0.17.19
eslint:
specifier: ^8.34.0
- version: 8.38.0
+ version: 8.57.1
eslint-config-prettier:
specifier: ^8.6.0
- version: 8.8.0(eslint@8.38.0)
+ version: 8.10.0(eslint@8.57.1)
eslint-plugin-import:
specifier: ^2.27.5
- version: 2.27.5(@typescript-eslint/parser@5.57.1(eslint@8.38.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.38.0)
+ version: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0))(eslint@8.57.1)
husky:
specifier: ^8.0.3
version: 8.0.3
lint-staged:
specifier: ^13.1.2
- version: 13.1.2
+ version: 13.3.0
nodemon:
specifier: ^2.0.22
version: 2.0.22
prettier:
specifier: ^2.8.4
- version: 2.8.4
+ version: 2.8.8
tsx:
specifier: ^3.12.7
- version: 3.12.7
+ version: 3.14.0
typescript:
specifier: 5.6.3
version: 5.6.3
@@ -393,7 +402,7 @@ importers:
dependencies:
'@aws-sdk/client-cloudformation':
specifier: ^3.405.0
- version: 3.490.0
+ version: 3.693.0
'@aws-sdk/util-waiter':
specifier: ^3.374.0
version: 3.374.0
@@ -402,23 +411,26 @@ importers:
version: 1.0.14-alpha
aws-cdk-lib:
specifier: ^2.94.0
- version: 2.121.1(constructs@10.3.0)
+ version: 2.167.1(constructs@10.4.2)
constructs:
specifier: ^10.2.70
- version: 10.3.0
+ version: 10.4.2
dotenv:
specifier: ^16.0.3
- version: 16.0.3
+ version: 16.4.5
+ zod:
+ specifier: 3.23.8
+ version: 3.23.8
devDependencies:
'@types/node':
specifier: ^20.11.5
- version: 20.11.5
+ version: 20.17.6
aws-cdk:
specifier: ^2.94.0
- version: 2.121.1
+ version: 2.167.1
tsx:
specifier: ^3.12.7
- version: 3.12.7
+ version: 3.14.0
typescript:
specifier: 5.6.3
version: 5.6.3
@@ -451,8 +463,11 @@ importers:
packages:
- '@actions/core@1.10.1':
- resolution: {integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==}
+ '@actions/core@1.11.1':
+ resolution: {integrity: sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==}
+
+ '@actions/exec@1.1.1':
+ resolution: {integrity: sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==}
'@actions/github@6.0.0':
resolution: {integrity: sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==}
@@ -460,632 +475,298 @@ packages:
'@actions/http-client@2.2.0':
resolution: {integrity: sha512-q+epW0trjVUUHboliPb4UF9g2msf+w61b32tAkFEwL/IwP0DQWgbCMM0Hbe3e3WXSKz5VcUXbzJQgy8Hkra/Lg==}
+ '@actions/io@1.1.3':
+ resolution: {integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==}
+
'@ampproject/remapping@2.2.0':
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
- '@aws-cdk/asset-awscli-v1@2.2.201':
- resolution: {integrity: sha512-INZqcwDinNaIdb5CtW3ez5s943nX5stGBQS6VOP2JDlOFP81hM3fds/9NDknipqfUkZM43dx+HgVvkXYXXARCQ==}
-
- '@aws-cdk/asset-kubectl-v20@2.1.2':
- resolution: {integrity: sha512-3M2tELJOxQv0apCIiuKQ4pAbncz9GuLwnKFqxifWfe77wuMxyTRPmxssYHs42ePqzap1LT6GDcPygGs+hHstLg==}
-
- '@aws-cdk/asset-node-proxy-agent-v6@2.0.1':
- resolution: {integrity: sha512-DDt4SLdLOwWCjGtltH4VCST7hpOI5DzieuhGZsBpZ+AgJdSI2GCjklCXm0GCTwJG/SolkL5dtQXyUKgg9luBDg==}
-
- '@aws-crypto/crc32@3.0.0':
- resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==}
-
- '@aws-crypto/ie11-detection@3.0.0':
- resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==}
-
- '@aws-crypto/sha256-browser@3.0.0':
- resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==}
-
- '@aws-crypto/sha256-js@3.0.0':
- resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==}
-
- '@aws-crypto/supports-web-crypto@3.0.0':
- resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==}
-
- '@aws-crypto/util@3.0.0':
- resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==}
-
- '@aws-sdk/abort-controller@3.329.0':
- resolution: {integrity: sha512-hzrjPNQcJoSPe0oS20V5i98oiEZSM3mKNiR6P3xHTHTPI/F23lyjGZ+/CSkCmJbSWfGZ5sHZZcU6AWuS7xBdTw==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/client-cloudformation@3.490.0':
- resolution: {integrity: sha512-WtHIxAAEpWID4u3UeZSq+wE2fXgSi04LaqQ/ZDtCJ4UbR/ml5y05lX0HCXdkPJbqbmBXzoZRPKUPGicJ03Hy0w==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/client-dynamodb@3.332.0':
- resolution: {integrity: sha512-v+4a0drW4Q9IZDKbolteyQKbTt42cwbD9CVy2EISB0rThKJKwe/QSUWoeO/nUxmZ7Q4bB/r15Vga5r274FrQ4Q==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/client-sso-oidc@3.332.0':
- resolution: {integrity: sha512-tz8k8Yqm4TScIfit0Tum2zWAq1md+gZKr747CSixd4Zwcp7Vwh75cRoL7Rz1ZHSEn1Yo983MWREevVez3SubLw==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/client-sso@3.332.0':
- resolution: {integrity: sha512-4q1Nko8M6YVANdEiLYvdv1qb00j4xN4ppE/6d4xpGp7DxHYlm0GA762h0/TR2dun+2I+SMnwj4Fv6BxOmzBaEw==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/client-sso@3.490.0':
- resolution: {integrity: sha512-yfxoHmCL1w/IKmFRfzCxdVCQrGlSQf4eei9iVEm5oi3iE8REFyPj3o/BmKQEHG3h2ITK5UbdYDb5TY4xoYHsyA==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/client-sts@3.332.0':
- resolution: {integrity: sha512-uVobnXIzMcEhwBDyk6iOt36N/TRNI8hwq7MQugjYGj7Inma9g4vnR09hXJ24HxyKCoVUoIgMbEguQ43+/+uvDQ==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/client-sts@3.490.0':
- resolution: {integrity: sha512-n2vQ5Qu2qi2I0XMI+IH99ElpIRHOJTa1+sqNC4juMYxKQBMvw+EnsqUtaL3QvTHoyxNB/R7mpkeBB6SzPQ1TtA==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/config-resolver@3.329.0':
- resolution: {integrity: sha512-Oj6eiT3q+Jn685yvUrfRi8PhB3fb81hasJqdrsEivA8IP8qAgnVUTJzXsh8O2UX8UM2MF6A1gTgToSgneJuw2Q==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/core@3.490.0':
- resolution: {integrity: sha512-TSBWkXtxMU7q1Zo6w3v5wIOr/sj7P5Jw3OyO7lJrFGsPsDC2xwpxkVqTesDxkzgMRypO52xjYEmveagn1xxBHg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/credential-provider-env@3.329.0':
- resolution: {integrity: sha512-B4orC9hMt9hG82vAR0TAnQqjk6cFDbO2S14RdzUj2n2NPlGWW4Blkv3NTo86K0lq011VRhtqaLcuTwn5EJD5Sg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/credential-provider-env@3.489.0':
- resolution: {integrity: sha512-5PqYsx9G5SB2tqPT9/z/u0EkF6D4wP6HTMWQs+DfMdmwXihrqQAgeYaTtV3KbXqb88p6sfacwxhUvE6+Rm494w==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/credential-provider-imds@3.329.0':
- resolution: {integrity: sha512-ggPlnd7QROPTid0CwT01TYYGvstRRTpzTGsQ/B31wkh30IrRXE81W3S4xrOYuqQD3u0RnflSxnvhs+EayJEYjg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/credential-provider-ini@3.332.0':
- resolution: {integrity: sha512-DTW6d6rcqizPVyvcIrwvxecQ7e5GONtVc5Wyf0RTfqf41sDOVZYmn6G+zEFSpBLW0975uZbJS0lyLWtJe2VujQ==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/credential-provider-ini@3.490.0':
- resolution: {integrity: sha512-7m63zyCpVqj9FsoDxWMWWRvL6c7zZzOcXYkHZmHujVVlmAXH0RT/vkXFkYgt+Ku+ov+v5NQrzwO5TmVoRt6O8g==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/credential-provider-node@3.332.0':
- resolution: {integrity: sha512-KkBayS9k4WyJTvC86ngeRM+RmWxNCS1BHvudkR6PLXfnsNPDzxySDVY0UgxVhbNYDYsO561fXZt9ccpKyVWjgg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/credential-provider-node@3.490.0':
- resolution: {integrity: sha512-Gh33u2O5Xbout8G3z/Z5H/CZzdG1ophxf/XS3iMFxA1cazQ7swY1UMmGvB7Lm7upvax5anXouItD1Ph3gzKc4w==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/credential-provider-process@3.329.0':
- resolution: {integrity: sha512-5oO220qoFc2pMdZDQa6XN/mVhp669I3+LqMbbscGtX/UgLJPSOb7YzPld9Wjv12L5rf+sD3G1PF3LZXO0vKLFA==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/credential-provider-process@3.489.0':
- resolution: {integrity: sha512-3vKQYJZ5cZYjy0870CPmbmKRBgATw2xCygxhn4m4UDCjOXVXcGUtYD51DMWsvBo3S0W8kH+FIJV4yuEDMFqLFQ==}
- engines: {node: '>=14.0.0'}
+ '@aws-cdk/asset-awscli-v1@2.2.211':
+ resolution: {integrity: sha512-56G1FYTiKyec3bEfEI/5UcU0XPnaGUlaDDH7OYClyvqss0HlnmoSulHK2gwai2PGAD1Nk+scPrdfH/MVAkSKuw==}
- '@aws-sdk/credential-provider-sso@3.332.0':
- resolution: {integrity: sha512-SaKXl48af3n6LRitcaEqbeg1YDXwQ0A5QziC1xQyYPraEIj3IZ/GyTjx04Lo2jxNYHuEOE8u4aTw1+IK1GDKbg==}
- engines: {node: '>=14.0.0'}
+ '@aws-cdk/asset-kubectl-v20@2.1.3':
+ resolution: {integrity: sha512-cDG1w3ieM6eOT9mTefRuTypk95+oyD7P5X/wRltwmYxU7nZc3+076YEVS6vrjDKr3ADYbfn0lDKpfB1FBtO9CQ==}
- '@aws-sdk/credential-provider-sso@3.490.0':
- resolution: {integrity: sha512-3UUBUoPbFvT58IhS4Vb23omYj/QPNkjgxu9p9ruQ3KSjLkanI4w8t/l/jljA65q83P7CoLnM5UKG9L7RA8/V1Q==}
- engines: {node: '>=14.0.0'}
+ '@aws-cdk/asset-node-proxy-agent-v6@2.1.0':
+ resolution: {integrity: sha512-7bY3J8GCVxLupn/kNmpPc5VJz8grx+4RKfnnJiO1LG+uxkZfANZG3RMHhE+qQxxwkyQ9/MfPtTpf748UhR425A==}
- '@aws-sdk/credential-provider-web-identity@3.329.0':
- resolution: {integrity: sha512-lcEibZD7AlutCacpQ6DyNUqElZJDq+ylaIo5a8MH9jGh7Pg2WpDg0Sy+B6FbGCkVn4eIjdHxeX54JM245nhESg==}
- engines: {node: '>=14.0.0'}
+ '@aws-cdk/cloud-assembly-schema@38.0.1':
+ resolution: {integrity: sha512-KvPe+NMWAulfNVwY7jenFhzhuLhLqJ/OPy5jx7wUstbjnYnjRVLpUHPU3yCjXFE0J8cuJVdx95BJ4rOs66Pi9w==}
+ bundledDependencies:
+ - jsonschema
+ - semver
- '@aws-sdk/credential-provider-web-identity@3.489.0':
- resolution: {integrity: sha512-mjIuE2Wg1H/ds0nXQ/7vfusEDudmdd8YzKZI1y5O4n60iZZtyB2RNIECtvLMx1EQAKclidY7/06qQkArrGau5Q==}
- engines: {node: '>=14.0.0'}
+ '@aws-crypto/sha256-browser@5.2.0':
+ resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
- '@aws-sdk/endpoint-cache@3.310.0':
- resolution: {integrity: sha512-y3wipforet41EDTI0vnzxILqwAGll1KfI5qcdX9pXF/WF1f+3frcOtPiWtQEZQpy4czRogKm3BHo70QBYAZxlQ==}
- engines: {node: '>=14.0.0'}
+ '@aws-crypto/sha256-js@5.2.0':
+ resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/fetch-http-handler@3.329.0':
- resolution: {integrity: sha512-9jfIeJhYCcTX4ScXOueRTB3S/tVce0bRsKxKDP0PnTxnGYOwKXoM9lAPmiYItzYmQ/+QzjTI8xfkA9Usz2SK/Q==}
+ '@aws-crypto/supports-web-crypto@5.2.0':
+ resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
- '@aws-sdk/hash-node@3.329.0':
- resolution: {integrity: sha512-6RmnWXNWpi7yAs0oRDQlkMn2wfXOStr/8kTCgiAiqrk1KopGSBkC2veKiKRSfv02FTd1yV/ISqYNIRqW1VLyxg==}
- engines: {node: '>=14.0.0'}
+ '@aws-crypto/util@5.2.0':
+ resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- '@aws-sdk/invalid-dependency@3.329.0':
- resolution: {integrity: sha512-UXynGusDxN/HxLma5ByJ7u+XnuMd47NbHOjJgYsaAjb1CVZT7hEPXOB+mcZ+Ku7To5SCOKu2QbRn7m4bGespBg==}
+ '@aws-sdk/client-cloudformation@3.693.0':
+ resolution: {integrity: sha512-Y0dWF4uMPICGG4SS/QGu5hmnUxoCEPlJ1UMcKABLfAhmP0qBeTHxvVLb35rYyfM0QK34n4AjGgAVago8ImgVZg==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/is-array-buffer@3.310.0':
- resolution: {integrity: sha512-urnbcCR+h9NWUnmOtet/s4ghvzsidFmspfhYaHAmSRdy9yDjdjBJMFjjsn85A1ODUktztm+cVncXjQ38WCMjMQ==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/client-dynamodb@3.693.0':
+ resolution: {integrity: sha512-EmgFoE/wAxiOq/sfO/VFGlmvfq0FexUO4IMURr3deIpU/AuCsuU87HJH/UodFdKu88ykNZxMfHHku6o6BV2dAA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/lib-dynamodb@3.332.0':
- resolution: {integrity: sha512-qs/Ki8/W7fVwI0DBKJ3mwTst+md+jNitHQD6neuxifi8NkdWkDwXFO32DIuHBkXbeo1aERLKF7Q1N046gVSm7A==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/client-sso-oidc@3.693.0':
+ resolution: {integrity: sha512-UEDbYlYtK/e86OOMyFR4zEPyenIxDzO2DRdz3fwVW7RzZ94wfmSwBh/8skzPTuY1G7sI064cjHW0b0QG01Sdtg==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-dynamodb': ^3.0.0
- '@aws-sdk/smithy-client': ^3.0.0
- '@aws-sdk/types': ^3.0.0
-
- '@aws-sdk/middleware-content-length@3.329.0':
- resolution: {integrity: sha512-7kCd+CvY/4KbyXB0uyL7jCwPjMi2yERMALFdEH9dsUciwmxIQT6eSc4aF6wImC4UrbafaqmXvvHErABKMVBTKA==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-endpoint-discovery@3.329.0':
- resolution: {integrity: sha512-gzzKuAqvnTSo2mLMpgxAwGB7bdoLMwpobqyoDVVOpGcRyZmffYq/MdaBLgjcGIvlyzFHhnTF3KKO83X0ufebaw==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-endpoint@3.329.0':
- resolution: {integrity: sha512-hdJRoNdCM0BT4W+rrtee+kfFRgGPGXQDgtbIQlf/FuuuYz2sdef7/SYWr0mxuncnVBW5WkYSPP8h6q07whSKbg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-host-header@3.329.0':
- resolution: {integrity: sha512-JrHeUdTIpTCfXDo9JpbAbZTS1x4mt63CCytJRq0mpWp+FlP9hjckBcNxWdR/wSKEzP9pDRnTri638BOwWH7O8w==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-host-header@3.489.0':
- resolution: {integrity: sha512-Cl7HJ1jhOfllwf0CRx1eB4ypRGMqdGKWpc0eSTXty7wWSvCdMZUhwfjQqu2bIOIlgYxg/gFu6TVmVZ6g4O8PlA==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-logger@3.329.0':
- resolution: {integrity: sha512-lKeeTXsYC1NiwmxrXsZepcwNXPoQxTNNbeD1qaCELPGK2cJlrGoeAP2YRWzpwO2kNZWrDLaGAPT/EUEhqw+d1w==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-logger@3.489.0':
- resolution: {integrity: sha512-+EVDnWese61MdImcBNAgz/AhTcIZJaska/xsU3GWU9CP905x4a4qZdB7fExFMDu1Jlz5pJqNteFYYHCFMJhHfg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-recursion-detection@3.329.0':
- resolution: {integrity: sha512-0/TYOJwrj1Z8s+Y7thibD23hggBq/K/01NwPk32CwWG/G+1vWozs5DefknEl++w0vuV+39pkY4KHI8m/+wOCpg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-recursion-detection@3.489.0':
- resolution: {integrity: sha512-m4rU+fTzziQcu9DKjRNZ4nQlXENEd2ZnJblJV4ONdWqqEjbmOgOj3P6aCCQlJdIbzuNvX1FBOZ5tY59ZpERo7Q==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-retry@3.329.0':
- resolution: {integrity: sha512-cB3D7GlhHUcHGOlygOYxD9cPhwsTYEAMcohK38An8+RHNp6VQEWezzLFCmHVKUSeCQ+wkjZfPA40jOG0rbjSgQ==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-sdk-sts@3.329.0':
- resolution: {integrity: sha512-bqtZuhkH8pANb2Gb4FEM1p27o+BoDBmVhEWm8sWH+APsyOor3jc6eUG2GxkfoO6D5tGNIuyCC/GuvW9XDIe4Kg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-serde@3.329.0':
- resolution: {integrity: sha512-tvM9NdPuRPCozPjTGNOeYZeLlyx3BcEyajrkRorCRf1YzG/mXdB6I1stote7i4q1doFtYTz0sYL8bqW3LUPn9A==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-signing@3.329.0':
- resolution: {integrity: sha512-bL1nI+EUcF5B1ipwDXxiKL+Uw02Mbt/TNX54PbzunBGZIyO6DZG/H+M3U296bYbvPlwlZhp26O830g6K7VEWsA==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-signing@3.489.0':
- resolution: {integrity: sha512-rlHcWYZn6Ym3v/u0DvKNDiD7ogIzEsHlerm0lowTiQbszkFobOiUClRTALwvsUZdAAztl706qO1OKbnGnD6Ubw==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-stack@3.329.0':
- resolution: {integrity: sha512-2huFLhJ45td2nuiIOjpc9JKJbFNn5CYmw9U8YDITTcydpteRN62CzCpeqroDvF89VOLWxh0ZFtuLCGUr7liSWQ==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-stack@3.347.0':
- resolution: {integrity: sha512-Izidg4rqtYMcKuvn2UzgEpPLSmyd8ub9+LQ2oIzG3mpIzCBITq7wp40jN1iNkMg+X6KEnX9vdMJIYZsPYMCYuQ==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-user-agent@3.332.0':
- resolution: {integrity: sha512-rSL1xP4QmcMOsunN1p5ZDR9GT3vvoSCnYa4iPvMSjP8Jx7l4ff/aVctwfZkMs/up12+68Jqwj4TvtaCvCFXdUA==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/middleware-user-agent@3.489.0':
- resolution: {integrity: sha512-M54Cv2fAN3GGgdfUjLtZ4wFUIrfM/ivbXv4DgpcNsacEQ2g4H+weQgKp41X7XZW8MWAzl+k1zJaryK69RYNQkQ==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/node-config-provider@3.329.0':
- resolution: {integrity: sha512-hg9rGNlkzh8aeR/sQbijrkFx2BIO53j4Z6qDxPNWwSGpl05jri1VHxHx2HZMwgbY6Zy/DSguETN/BL8vdFqyLg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/node-http-handler@3.329.0':
- resolution: {integrity: sha512-OrjaHjU2ZTPfoHa5DruRvTIbeHH/cc0wvh4ml+FwDpWaPaBpOhLiluhZ3anqX1l5QjrXNiQnL8FxSM5OV/zVCA==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/property-provider@3.329.0':
- resolution: {integrity: sha512-1cHLTV6yyMGaMSWWDW/p4vTkJ1cc5BOEO+A0eHuAcoSOk+LDe9IKhUG3/ZOvvYKQYcqIj5jjGSni/noXNCl/qw==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/protocol-http@3.329.0':
- resolution: {integrity: sha512-0rLEHY6QTHTUUcVxzGbPUSmCKlXWplxT/fcYRh0bcc5MBK4naKfcQft1O6Ajp8uqs/9YPZ7XCVCn90pDeJfeaw==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/querystring-builder@3.329.0':
- resolution: {integrity: sha512-UWgMKkS5trliaDJG4nPv3onu8Y0aBuwRo7RdIgggguOiU8pU6pq1I113nH2FBNWy+Me1bwf+bcviJh0pCo6bEg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/querystring-parser@3.329.0':
- resolution: {integrity: sha512-9mkK+FB7snJ2G7H3CqtprDwYIRhzm6jEezffCwUWrC+lbqHBbErbhE9IeU/MKxILmf0RbC2riXEY1MHGspjRrQ==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/region-config-resolver@3.489.0':
- resolution: {integrity: sha512-UvrnB78XTz9ddby7mr0vuUHn2MO3VTjzaIu+GQhyedMGQU0QlIQrYOlzbbu4LC5rL1O8FxFLUxRe/AAjgwyuGw==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/service-error-classification@3.329.0':
- resolution: {integrity: sha512-TSNr0flOcCLe71aPp7MjblKNGsmxpTU4xR5772MDX9Cz9GUTNZCPFtvrcqd+wzEPP/AC7XwNXe8KjoXooZImUQ==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/shared-ini-file-loader@3.329.0':
- resolution: {integrity: sha512-e0hyd75fbjMd4aCoRwpP2/HR+0oScwogErVArIkq3F42c/hyNCQP3sph4JImuXIjuo6HNnpKpf20CEPPhNna8A==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/signature-v4@3.329.0':
- resolution: {integrity: sha512-9EnLoyOD5nFtCRAp+QRllDgQASCfY7jLHVhwht7jzwE80wE65Z9Ym5Z/mwTd4IyTz/xXfCvcE2VwClsBt0Ybdw==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/smithy-client@3.329.0':
- resolution: {integrity: sha512-7E0fGpBKxwFqHHAOqNbgNsHSEmCZLuvmU9yvG9DXKVzrS4P48O/PfOro123WpcFZs3STyOVgH8wjUPftHAVKmg==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/smithy-client@3.347.0':
- resolution: {integrity: sha512-PaGTDsJLGK0sTjA6YdYQzILRlPRN3uVFyqeBUkfltXssvUzkm8z2t1lz2H4VyJLAhwnG5ZuZTNEV/2mcWrU7JQ==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/client-sts': ^3.693.0
- '@aws-sdk/token-providers@3.332.0':
- resolution: {integrity: sha512-fccbg6OSl0l658pxl2p1MoU9gEePo5B361+JNaN0zfRMu7c5HBXCpdl4djlFxAHjltrX9f1+BKqfGHYgI3h8SQ==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/client-sso@3.693.0':
+ resolution: {integrity: sha512-QEynrBC26x6TG9ZMzApR/kZ3lmt4lEIs2D+cHuDxt6fDGzahBUsQFBwJqhizzsM97JJI5YvmJhmihoYjdSSaXA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/token-providers@3.489.0':
- resolution: {integrity: sha512-hSgjB8CMQoA8EIQ0ripDjDtbBcWDSa+7vSBYPIzksyknaGERR/GUfGXLV2dpm5t17FgFG6irT5f3ZlBzarL8Dw==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/client-sts@3.693.0':
+ resolution: {integrity: sha512-4S2y7VEtvdnjJX4JPl4kDQlslxXEZFnC50/UXVUYSt/AMc5A/GgspFNA5FVz4E3Gwpfobbf23hR2NBF8AGvYoQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/types@3.329.0':
- resolution: {integrity: sha512-wFBW4yciDfzQBSFmWNaEvHShnSGLMxSu9Lls6EUf6xDMavxSB36bsrVRX6CyAo/W0NeIIyEOW1LclGPgJV1okg==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/core@3.693.0':
+ resolution: {integrity: sha512-v6Z/kWmLFqRLDPEwl9hJGhtTgIFHjZugSfF1Yqffdxf4n1AWgtHS7qSegakuMyN5pP4K2tvUD8qHJ+gGe2Bw2A==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/types@3.347.0':
- resolution: {integrity: sha512-GkCMy79mdjU9OTIe5KT58fI/6uqdf8UmMdWqVHmFJ+UpEzOci7L/uw4sOXWo7xpPzLs6cJ7s5ouGZW4GRPmHFA==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/credential-provider-env@3.693.0':
+ resolution: {integrity: sha512-hMUZaRSF7+iBKZfBHNLihFs9zvpM1CB8MBOTnTp5NGCVkRYF3SB2LH+Kcippe0ats4qCyB1eEoyQX99rERp2iQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/types@3.489.0':
- resolution: {integrity: sha512-kcDtLfKog/p0tC4gAeqJqWxAiEzfe2LRPnKamvSG2Mjbthx4R/alE2dxyIq/wW+nvRv0fqR3OD5kD1+eVfdr/w==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/credential-provider-http@3.693.0':
+ resolution: {integrity: sha512-sL8MvwNJU7ZpD7/d2VVb3by1GknIJUxzTIgYtVkDVA/ojo+KRQSSHxcj0EWWXF5DTSh2Tm+LrEug3y1ZyKHsDA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/url-parser@3.329.0':
- resolution: {integrity: sha512-/VcfL7vNJKJGSjYYHVQF3bYCDFs4fSzB7j5qeVDwRdWr870gE7O1Dar+sLWBRKFF3AX+4VzplqzUfpu9t44JVA==}
+ '@aws-sdk/credential-provider-ini@3.693.0':
+ resolution: {integrity: sha512-kvaa4mXhCCOuW7UQnBhYqYfgWmwy7WSBSDClutwSLPZvgrhYj2l16SD2lN4IfYdxARYMJJ1lFYp3/jJG/9Yk4Q==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@aws-sdk/client-sts': ^3.693.0
- '@aws-sdk/util-base64@3.310.0':
- resolution: {integrity: sha512-v3+HBKQvqgdzcbL+pFswlx5HQsd9L6ZTlyPVL2LS9nNXnCcR3XgGz9jRskikRUuUvUXtkSG1J88GAOnJ/apTPg==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/credential-provider-node@3.693.0':
+ resolution: {integrity: sha512-42WMsBjTNnjYxYuM3qD/Nq+8b7UdMopUq5OduMDxoM3mFTV6PXMMnfI4Z1TNnR4tYRvPXAnuNltF6xmjKbSJRA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-body-length-browser@3.310.0':
- resolution: {integrity: sha512-sxsC3lPBGfpHtNTUoGXMQXLwjmR0zVpx0rSvzTPAuoVILVsp5AU/w5FphNPxD5OVIjNbZv9KsKTuvNTiZjDp9g==}
+ '@aws-sdk/credential-provider-process@3.693.0':
+ resolution: {integrity: sha512-cvxQkrTWHHjeHrPlj7EWXPnFSq8x7vMx+Zn1oTsMpCY445N9KuzjfJTkmNGwU2GT6rSZI9/0MM02aQvl5bBBTQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-body-length-node@3.310.0':
- resolution: {integrity: sha512-2tqGXdyKhyA6w4zz7UPoS8Ip+7sayOg9BwHNidiGm2ikbDxm1YrCfYXvCBdwaJxa4hJfRVz+aL9e+d3GqPI9pQ==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/credential-provider-sso@3.693.0':
+ resolution: {integrity: sha512-479UlJxY+BFjj3pJFYUNC0DCMrykuG7wBAXfsvZqQxKUa83DnH5Q1ID/N2hZLkxjGd4ZW0AC3lTOMxFelGzzpQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-buffer-from@3.310.0':
- resolution: {integrity: sha512-i6LVeXFtGih5Zs8enLrt+ExXY92QV25jtEnTKHsmlFqFAuL3VBeod6boeMXkN2p9lbSVVQ1sAOOYZOHYbYkntw==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/credential-provider-web-identity@3.693.0':
+ resolution: {integrity: sha512-8LB210Pr6VeCiSb2hIra+sAH4KUBLyGaN50axHtIgufVK8jbKIctTZcVY5TO9Se+1107TsruzeXS7VeqVdJfFA==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@aws-sdk/client-sts': ^3.693.0
- '@aws-sdk/util-config-provider@3.310.0':
- resolution: {integrity: sha512-xIBaYo8dwiojCw8vnUcIL4Z5tyfb1v3yjqyJKJWV/dqKUFOOS0U591plmXbM+M/QkXyML3ypon1f8+BoaDExrg==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/endpoint-cache@3.693.0':
+ resolution: {integrity: sha512-/zK0ZZncBf5FbTfo8rJMcQIXXk4Ibhe5zEMiwFNivVPR2uNC0+oqfwXz7vjxwY0t6BPE3Bs4h9uFEz4xuGCY6w==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-defaults-mode-browser@3.329.0':
- resolution: {integrity: sha512-2iSiy/pzX3OXMhtSxtAzOiEFr3viQEFnYOTeZuiheuyS+cea2L79F6SlZ1110b/nOIU/UOrxxtz83HVad8YFMQ==}
- engines: {node: '>= 10.0.0'}
+ '@aws-sdk/lib-dynamodb@3.693.0':
+ resolution: {integrity: sha512-LrGLXoioeT9xJQxJHmtV9MSQW5rl0Pv1wzgnWARIUsF+srkO2dA2UgTES0G1Sv3fXSFqPwplU6Knwe0yx+P2/w==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@aws-sdk/client-dynamodb': ^3.693.0
- '@aws-sdk/util-defaults-mode-node@3.329.0':
- resolution: {integrity: sha512-7A6C7YKjkZtmKtH29isYEtOCbhd7IcXPP8lftN8WAWlLOiZE4gV7PHveagUj7QserJzgRKGwwTQbBj53n18HYg==}
- engines: {node: '>= 10.0.0'}
+ '@aws-sdk/middleware-endpoint-discovery@3.693.0':
+ resolution: {integrity: sha512-OG8WM8OzYuAt3Ueb8TZoBgA+vqNgPaXksHhiy8SFTQxNamSMMRvKrDSBbdUuV96mq0lcJq1mFgJ4oRXJ1HPh6A==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-dynamodb@3.332.0':
- resolution: {integrity: sha512-2Z+L8w7VK6fY5qob6CT42fRy8qNXcaacvpBijjrjDknWHPSh+YSliGHrsLE/CcTEHzWSm5Sebjk+iuREMy064g==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/middleware-host-header@3.693.0':
+ resolution: {integrity: sha512-BCki6sAZ5jYwIN/t3ElCiwerHad69ipHwPsDCxJQyeiOnJ8HG+lEpnVIfrnI8A0fLQNSF3Gtx6ahfBpKiv1Oug==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-endpoints@3.332.0':
- resolution: {integrity: sha512-nQx7AiOroMU2hj6h+umWOSZ+WECwxupaxFUK/PPKGW6NY/VdQE6LluYnXOtF5awlr8w1nPksT0Lq05PZutMDLA==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/middleware-logger@3.693.0':
+ resolution: {integrity: sha512-dXnXDPr+wIiJ1TLADACI1g9pkSB21KkMIko2u4CJ2JCBoxi5IqeTnVoa6YcC8GdFNVRl+PorZ3Zqfmf1EOTC6w==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-endpoints@3.489.0':
- resolution: {integrity: sha512-uGyG1u84ATX03mf7bT4xD9XD/vlYJGD5+RxMN/UpzeTfzXfh+jvCQWbOQ44z8ttFJWYQQqrLxkfpF/JgvALzLA==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/middleware-recursion-detection@3.693.0':
+ resolution: {integrity: sha512-0LDmM+VxXp0u3rG0xQRWD/q6Ubi7G8I44tBPahevD5CaiDZTkmNTrVUf0VEJgVe0iCKBppACMBDkLB0/ETqkFw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-hex-encoding@3.310.0':
- resolution: {integrity: sha512-sVN7mcCCDSJ67pI1ZMtk84SKGqyix6/0A1Ab163YKn+lFBQRMKexleZzpYzNGxYzmQS6VanP/cfU7NiLQOaSfA==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/middleware-user-agent@3.693.0':
+ resolution: {integrity: sha512-/KUq/KEpFFbQmNmpp7SpAtFAdViquDfD2W0QcG07zYBfz9MwE2ig48ALynXm5sMpRmnG7sJXjdvPtTsSVPfkiw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-locate-window@3.310.0':
- resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/region-config-resolver@3.693.0':
+ resolution: {integrity: sha512-YLUkMsUY0GLW/nfwlZ69cy1u07EZRmsv8Z9m0qW317/EZaVx59hcvmcvb+W4bFqj5E8YImTjoGfE4cZ0F9mkyw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-middleware@3.329.0':
- resolution: {integrity: sha512-RhBOBaxzkTUghi4MSqr8S5qeeBCjgJ0XPJ6jIYkVkj1saCmqkuZCgl3zFaYdyhdxxPV6nflkFer+1HUoqT+Fqw==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/token-providers@3.693.0':
+ resolution: {integrity: sha512-nDBTJMk1l/YmFULGfRbToOA2wjf+FkQT4dMgYCv+V9uSYsMzQj8A7Tha2dz9yv4vnQgYaEiErQ8d7HVyXcVEoA==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@aws-sdk/client-sso-oidc': ^3.693.0
- '@aws-sdk/util-retry@3.329.0':
- resolution: {integrity: sha512-+3VQ9HZLinysnmryUs9Xjt1YVh4TYYHLt30ilu4iUnIHFQoamdzIbRCWseSVFPCxGroen9M9qmAleAsytHEKuA==}
- engines: {node: '>= 14.0.0'}
+ '@aws-sdk/types@3.692.0':
+ resolution: {integrity: sha512-RpNvzD7zMEhiKgmlxGzyXaEcg2khvM7wd5sSHVapOcrde1awQSOMGI4zKBQ+wy5TnDfrm170ROz/ERLYtrjPZA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-uri-escape@3.310.0':
- resolution: {integrity: sha512-drzt+aB2qo2LgtDoiy/3sVG8w63cgLkqFIa2NFlGpUgHFWTXkqtbgf4L5QdjRGKWhmZsnqkbtL7vkSWEcYDJ4Q==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/util-dynamodb@3.693.0':
+ resolution: {integrity: sha512-lwJnlQndVS7cGN1UmtG4s6IdVW3U/WheJ14Xc/mUeAH3vga7GTY3hGi+Jp1TbnaYQkad589tU+NQ5KUW7V8ZjA==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@aws-sdk/client-dynamodb': ^3.693.0
- '@aws-sdk/util-user-agent-browser@3.329.0':
- resolution: {integrity: sha512-8hLSmMCl8aw2++0Zuba8ELq8FkK6/VNyx470St201IpMn2GMbQMDl/rLolRKiTgji6wc+T3pOTidkJkz8/cIXA==}
+ '@aws-sdk/util-endpoints@3.693.0':
+ resolution: {integrity: sha512-eo4F6DRQ/kxS3gxJpLRv+aDNy76DxQJL5B3DPzpr9Vkq0ygVoi4GT5oIZLVaAVIJmi6k5qq9dLsYZfWLUxJJSg==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-user-agent-browser@3.489.0':
- resolution: {integrity: sha512-85B9KMsuMpAZauzWQ16r52ZBAHYnznW6BVitnBglsibN7oJKn10Hggt4QGuRhvQFCxQ8YhvBl7r+vQGFO4hxIw==}
+ '@aws-sdk/util-locate-window@3.693.0':
+ resolution: {integrity: sha512-ttrag6haJLWABhLqtg1Uf+4LgHWIMOVSYL+VYZmAp2v4PUGOwWmWQH0Zk8RM7YuQcLfH/EoR72/Yxz6A4FKcuw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-user-agent-node@3.329.0':
- resolution: {integrity: sha512-C50Zaeodc0+psEP+L4WpElrH8epuLWJPVN4hDOTORcM0cSoU2o025Ost9mbcU7UdoHNxF9vitLnzORGN9SHolg==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- aws-crt: '>=1.0.0'
- peerDependenciesMeta:
- aws-crt:
- optional: true
+ '@aws-sdk/util-user-agent-browser@3.693.0':
+ resolution: {integrity: sha512-6EUfuKOujtddy18OLJUaXfKBgs+UcbZ6N/3QV4iOkubCUdeM1maIqs++B9bhCbWeaeF5ORizJw5FTwnyNjE/mw==}
- '@aws-sdk/util-user-agent-node@3.489.0':
- resolution: {integrity: sha512-CYdkBHig8sFNc0dv11Ni9WXvZQHeI5+z77OrDHKkbidFx/V4BDTuwZw4K1vWg62pzFOEfzunJFiULRcDZWJR3w==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/util-user-agent-node@3.693.0':
+ resolution: {integrity: sha512-td0OVX8m5ZKiXtecIDuzY3Y3UZIzvxEr57Hp21NOwieqKCG2UeyQWWeGPv0FQaU7dpTkvFmVNI+tx9iB8V/Nhg==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
- '@aws-sdk/util-utf8-browser@3.259.0':
- resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==}
-
- '@aws-sdk/util-utf8@3.310.0':
- resolution: {integrity: sha512-DnLfFT8uCO22uOJc0pt0DsSNau1GTisngBCDw8jQuWT5CqogMJu4b/uXmwEqfj8B3GX6Xsz8zOd6JpRlPftQoA==}
- engines: {node: '>=14.0.0'}
-
- '@aws-sdk/util-waiter@3.329.0':
- resolution: {integrity: sha512-MIGs7snNL0ZV55zo1BDVPlrmbinUGV3260hp6HrW4zUbpYVoeIOGeewtrwAsF6FJ+vpZCxljPBB0X2jYR7Q7ZQ==}
- engines: {node: '>=14.0.0'}
-
'@aws-sdk/util-waiter@3.374.0':
resolution: {integrity: sha512-NlPn+hC4H+tPOnJ00g/DjYcwTVWdkNlOtUUmQ9c7u3EsPSNbaw8vEPkh+YdWENtX8NmG0yn0D29fTp/vfvLfAw==}
engines: {node: '>=14.0.0'}
deprecated: This package has moved to @smithy/util-waiter
- '@babel/code-frame@7.18.6':
- resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
- engines: {node: '>=6.9.0'}
-
- '@babel/code-frame@7.22.13':
- resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.20.14':
- resolution: {integrity: sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.22.9':
- resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.20.12':
- resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.22.17':
- resolution: {integrity: sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.20.14':
- resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.22.15':
- resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.20.7':
- resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-compilation-targets@7.22.15':
- resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-environment-visitor@7.18.9':
- resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-environment-visitor@7.22.5':
- resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
+ '@babel/compat-data@7.26.2':
+ resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-function-name@7.19.0':
- resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-function-name@7.22.5':
- resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
+ '@babel/generator@7.26.2':
+ resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-hoist-variables@7.18.6':
- resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-hoist-variables@7.22.5':
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.18.6':
- resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-imports@7.22.15':
- resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-transforms@7.20.11':
- resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-transforms@7.22.17':
- resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-plugin-utils@7.22.5':
- resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-simple-access@7.20.2':
- resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-simple-access@7.22.5':
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-split-export-declaration@7.18.6':
- resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-split-export-declaration@7.22.6':
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.19.4':
- resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.22.5':
- resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.19.1':
- resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.22.15':
- resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-option@7.18.6':
- resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-option@7.22.15':
- resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.20.13':
- resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.22.15':
- resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.18.6':
- resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.22.13':
- resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.20.15':
- resolution: {integrity: sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.22.16':
- resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==}
+ '@babel/parser@7.26.2':
+ resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-transform-react-jsx-self@7.22.5':
- resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==}
+ '@babel/plugin-transform-react-jsx-self@7.25.9':
+ resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.22.5':
- resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
+ '@babel/plugin-transform-react-jsx-source@7.25.9':
+ resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.20.13':
- resolution: {integrity: sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/runtime@7.22.11':
- resolution: {integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.20.7':
- resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.22.15':
- resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.20.13':
- resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.22.17':
- resolution: {integrity: sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.20.7':
- resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==}
- engines: {node: '>=6.9.0'}
+ '@codegenie/serverless-express@4.16.0':
+ resolution: {integrity: sha512-TlvAHQysphN3OW6Ziz6AD2DnN9IIy/KkKNImZwMJpwGHHqLATi/9hMg8H8VBRg2L15pGt8ad3R6j6mfvHVWrCg==}
+ engines: {node: '>=18'}
- '@babel/types@7.22.17':
- resolution: {integrity: sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==}
- engines: {node: '>=6.9.0'}
+ '@date-io/core@2.17.0':
+ resolution: {integrity: sha512-+EQE8xZhRM/hsY0CDTVyayMDDY5ihc4MqXCrPxooKw19yAzUIC6uUqsZeaOFNL9YKTNxYKrJP5DFgE8o5xRCOw==}
- '@date-io/core@2.16.0':
- resolution: {integrity: sha512-DYmSzkr+jToahwWrsiRA2/pzMEtz9Bq1euJwoOuYwuwIYXnZFtHajY2E6a1VNVDc9jP8YUXK1BvnZH9mmT19Zg==}
+ '@date-io/core@3.0.0':
+ resolution: {integrity: sha512-S3j+IAQVBYNkQzchVVhX40eBkGDreBpScy9RXwTS5j2+k07+62pMVPisQ44Gq76Rqy5AOG/EZXCwBpY/jbemvA==}
- '@date-io/date-fns@2.16.0':
- resolution: {integrity: sha512-bfm5FJjucqlrnQcXDVU5RD+nlGmL3iWgkHTq3uAZWVIuBu6dDmGa3m8a6zo2VQQpu8ambq9H22UyUpn7590joA==}
+ '@date-io/date-fns@2.17.0':
+ resolution: {integrity: sha512-L0hWZ/mTpy3Gx/xXJ5tq5CzHo0L7ry6KEO9/w/JWiFWFLZgiNVo3ex92gOl3zmzjHqY/3Ev+5sehAr8UnGLEng==}
peerDependencies:
date-fns: ^2.0.0
peerDependenciesMeta:
date-fns:
optional: true
- '@emotion/babel-plugin@11.10.6':
- resolution: {integrity: sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ==}
+ '@drizzle-team/brocli@0.10.2':
+ resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==}
- '@emotion/cache@11.10.5':
- resolution: {integrity: sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA==}
+ '@emotion/babel-plugin@11.12.0':
+ resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==}
+
+ '@emotion/cache@11.13.1':
+ resolution: {integrity: sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==}
'@emotion/hash@0.8.0':
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
- '@emotion/hash@0.9.0':
- resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==}
-
- '@emotion/is-prop-valid@1.2.0':
- resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==}
+ '@emotion/hash@0.9.2':
+ resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
- '@emotion/is-prop-valid@1.2.1':
- resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==}
+ '@emotion/is-prop-valid@1.3.1':
+ resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==}
- '@emotion/memoize@0.8.0':
- resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==}
+ '@emotion/memoize@0.9.0':
+ resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
- '@emotion/memoize@0.8.1':
- resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
-
- '@emotion/react@11.10.6':
- resolution: {integrity: sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==}
+ '@emotion/react@11.13.3':
+ resolution: {integrity: sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg==}
peerDependencies:
'@types/react': '*'
react: '>=16.8.0'
@@ -1093,14 +774,14 @@ packages:
'@types/react':
optional: true
- '@emotion/serialize@1.1.1':
- resolution: {integrity: sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==}
+ '@emotion/serialize@1.3.2':
+ resolution: {integrity: sha512-grVnMvVPK9yUVE6rkKfAJlYZgo0cu3l9iMC77V7DW6E1DUIrU68pSEXRmFZFOFB1QFo57TncmOcvcbMDWsL4yA==}
- '@emotion/sheet@1.2.1':
- resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==}
+ '@emotion/sheet@1.4.0':
+ resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
- '@emotion/styled@11.10.6':
- resolution: {integrity: sha512-OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og==}
+ '@emotion/styled@11.13.0':
+ resolution: {integrity: sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA==}
peerDependencies:
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
@@ -1109,28 +790,33 @@ packages:
'@types/react':
optional: true
- '@emotion/unitless@0.8.0':
- resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==}
+ '@emotion/unitless@0.10.0':
+ resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
- '@emotion/use-insertion-effect-with-fallbacks@1.0.0':
- resolution: {integrity: sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==}
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0':
+ resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==}
peerDependencies:
react: '>=16.8.0'
- '@emotion/utils@1.2.0':
- resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==}
+ '@emotion/utils@1.4.1':
+ resolution: {integrity: sha512-BymCXzCG3r72VKJxaYVwOXATqXIZ85cuvg0YOUDxMGNrKc1DJRZk8MgV5wyXRyEayIMd4FuXJIUgTBXvDNW5cA==}
- '@emotion/weak-memoize@0.3.0':
- resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==}
+ '@emotion/weak-memoize@0.4.0':
+ resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
- '@esbuild-kit/cjs-loader@2.4.2':
- resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==}
+ '@esbuild-kit/core-utils@3.3.2':
+ resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
+ deprecated: 'Merged into tsx: https://tsx.is'
- '@esbuild-kit/core-utils@3.1.0':
- resolution: {integrity: sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==}
+ '@esbuild-kit/esm-loader@2.6.5':
+ resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
+ deprecated: 'Merged into tsx: https://tsx.is'
- '@esbuild-kit/esm-loader@2.5.5':
- resolution: {integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==}
+ '@esbuild/aix-ppc64@0.19.12':
+ resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
'@esbuild/android-arm64@0.17.19':
resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
@@ -1144,6 +830,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.19.12':
+ resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.17.19':
resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
engines: {node: '>=12'}
@@ -1156,6 +848,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.19.12':
+ resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.17.19':
resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
engines: {node: '>=12'}
@@ -1168,6 +866,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.19.12':
+ resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.17.19':
resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
engines: {node: '>=12'}
@@ -1180,6 +884,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.19.12':
+ resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.17.19':
resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
engines: {node: '>=12'}
@@ -1192,6 +902,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.19.12':
+ resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.17.19':
resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
engines: {node: '>=12'}
@@ -1204,6 +920,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.19.12':
+ resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.17.19':
resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
engines: {node: '>=12'}
@@ -1216,6 +938,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.19.12':
+ resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.17.19':
resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
engines: {node: '>=12'}
@@ -1228,10 +956,16 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.17.19':
- resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
+ '@esbuild/linux-arm64@0.19.12':
+ resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.17.19':
+ resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
os: [linux]
'@esbuild/linux-arm@0.18.20':
@@ -1240,6 +974,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.19.12':
+ resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.17.19':
resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
engines: {node: '>=12'}
@@ -1252,6 +992,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.19.12':
+ resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.17.19':
resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
engines: {node: '>=12'}
@@ -1264,6 +1010,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.19.12':
+ resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.17.19':
resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
engines: {node: '>=12'}
@@ -1276,6 +1028,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.19.12':
+ resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.17.19':
resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
engines: {node: '>=12'}
@@ -1288,6 +1046,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.19.12':
+ resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.17.19':
resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
engines: {node: '>=12'}
@@ -1300,6 +1064,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.19.12':
+ resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.17.19':
resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
engines: {node: '>=12'}
@@ -1312,6 +1082,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.19.12':
+ resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.17.19':
resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
engines: {node: '>=12'}
@@ -1324,6 +1100,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.19.12':
+ resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-x64@0.17.19':
resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
engines: {node: '>=12'}
@@ -1336,6 +1118,12 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.19.12':
+ resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-x64@0.17.19':
resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
engines: {node: '>=12'}
@@ -1348,6 +1136,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.19.12':
+ resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.17.19':
resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
engines: {node: '>=12'}
@@ -1360,6 +1154,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.19.12':
+ resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.17.19':
resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
engines: {node: '>=12'}
@@ -1372,6 +1172,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.19.12':
+ resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.17.19':
resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
engines: {node: '>=12'}
@@ -1384,6 +1190,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.19.12':
+ resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.17.19':
resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
engines: {node: '>=12'}
@@ -1396,92 +1208,150 @@ packages:
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.4.0':
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@esbuild/win32-x64@0.19.12':
+ resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.5.0':
- resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/eslintrc@2.0.2':
- resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/config-array@0.19.0':
+ resolution: {integrity: sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@8.37.0':
- resolution: {integrity: sha512-x5vzdtOOGgFVDCUs81QRB2+liax8rFg3+7hqM+QhBG0/G3F1ZsoYl97UrqgHgQ9KKT7G6c4V+aTUCgu/n22v1A==}
+ '@eslint/core@0.9.0':
+ resolution: {integrity: sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/eslintrc@2.1.4':
+ resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@eslint/js@8.38.0':
- resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==}
+ '@eslint/eslintrc@3.2.0':
+ resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@8.57.1':
+ resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/js@9.15.0':
+ resolution: {integrity: sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.4':
+ resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/plugin-kit@0.2.3':
+ resolution: {integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@fastify/busboy@2.1.0':
resolution: {integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==}
engines: {node: '>=14'}
- '@floating-ui/core@1.4.1':
- resolution: {integrity: sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==}
+ '@floating-ui/core@1.6.8':
+ resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
- '@floating-ui/dom@1.5.1':
- resolution: {integrity: sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==}
+ '@floating-ui/dom@1.6.12':
+ resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
- '@floating-ui/react-dom@2.0.2':
- resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==}
+ '@floating-ui/react-dom@2.1.2':
+ resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/utils@0.1.1':
- resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==}
+ '@floating-ui/utils@0.2.8':
+ resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
+
+ '@humanfs/core@0.19.1':
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
+ engines: {node: '>=18.18.0'}
- '@humanwhocodes/config-array@0.11.8':
- resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
+ '@humanfs/node@0.16.6':
+ resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanwhocodes/config-array@0.13.0':
+ resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
engines: {node: '>=10.10.0'}
+ deprecated: Use @eslint/config-array instead
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/object-schema@1.2.1':
- resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
+ '@humanwhocodes/object-schema@2.0.3':
+ resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
+ deprecated: Use @eslint/object-schema instead
+
+ '@humanwhocodes/retry@0.3.1':
+ resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
+ engines: {node: '>=18.18'}
+
+ '@humanwhocodes/retry@0.4.1':
+ resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
+ engines: {node: '>=18.18'}
'@icons/material@0.2.4':
resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==}
peerDependencies:
react: '*'
- '@jest/schemas@29.6.0':
- resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==}
+ '@jest/schemas@29.6.3':
+ resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jridgewell/gen-mapping@0.1.1':
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
- '@jridgewell/gen-mapping@0.3.2':
- resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
+ '@jridgewell/gen-mapping@0.3.5':
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.0':
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
+ '@jridgewell/resolve-uri@3.1.2':
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+ engines: {node: '>=6.0.0'}
+
'@jridgewell/set-array@1.1.2':
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
+ '@jridgewell/set-array@1.2.1':
+ resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
+ engines: {node: '>=6.0.0'}
+
'@jridgewell/sourcemap-codec@1.4.14':
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
'@jridgewell/sourcemap-codec@1.4.15':
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ '@jridgewell/sourcemap-codec@1.5.0':
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
+
'@jridgewell/trace-mapping@0.3.17':
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
+ '@jridgewell/trace-mapping@0.3.25':
+ resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+
'@kurkle/color@0.3.2':
resolution: {integrity: sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw==}
@@ -1532,9 +1402,9 @@ packages:
'@types/react':
optional: true
- '@material-ui/pickers@3.3.10':
- resolution: {integrity: sha512-hS4pxwn1ZGXVkmgD4tpFpaumUaAg2ZzbTrxltfC5yPw4BJV+mGkfnQOB4VpWEYZw2jv65Z0wLwDE/piQiPPZ3w==}
- deprecated: Material UI Pickers v3 doesn't receive active development since January 2020. See the guide https://mui.com/material-ui/guides/pickers-migration/ to upgrade.
+ '@material-ui/pickers@3.3.11':
+ resolution: {integrity: sha512-pDYjbjUeabapijS2FpSwK/ruJdk7IGeAshpLbKDa3PRRKRy7Nv6sXxAvUg2F+lID/NwUKgBmCYS5bzrl7Xxqzw==}
+ deprecated: This package no longer supported. It has been relaced by @mui/x-date-pickers
peerDependencies:
'@date-io/core': ^1.3.6
'@material-ui/core': ^4.0.0
@@ -1580,8 +1450,8 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
- '@mui/base@5.0.0-alpha.118':
- resolution: {integrity: sha512-GAEpqhnuHjRaAZLdxFNuOf2GDTp9sUawM46oHZV4VnYPFjXJDkIYFWfIQLONb0nga92OiqS5DD/scGzVKCL0Mw==}
+ '@mui/base@5.0.0-beta.13':
+ resolution: {integrity: sha512-uC0l97pBspfDAp+iz2cJq8YZ8Sd9i73V77+WzUiOAckIVEyCm5dyVDZCCO2/phmzckVEeZCGcytybkjMQuhPQw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
@@ -1591,8 +1461,8 @@ packages:
'@types/react':
optional: true
- '@mui/base@5.0.0-beta.13':
- resolution: {integrity: sha512-uC0l97pBspfDAp+iz2cJq8YZ8Sd9i73V77+WzUiOAckIVEyCm5dyVDZCCO2/phmzckVEeZCGcytybkjMQuhPQw==}
+ '@mui/base@5.0.0-beta.40':
+ resolution: {integrity: sha512-I/lGHztkCzvwlXpjD2+SNmvNQvB4227xBXhISPjEaJUXGImOQ9f3D2Yj/T3KasSI/h0MLWy74X0J6clhPmsRbQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
@@ -1602,11 +1472,11 @@ packages:
'@types/react':
optional: true
- '@mui/core-downloads-tracker@5.11.9':
- resolution: {integrity: sha512-YGEtucQ/Nl91VZkzYaLad47Cdui51n/hW+OQm4210g4N3/nZzBxmGeKfubEalf+ShKH4aYDS86XTO6q/TpZnjQ==}
+ '@mui/core-downloads-tracker@5.16.7':
+ resolution: {integrity: sha512-RtsCt4Geed2/v74sbihWzzRs+HsIQCfclHeORh5Ynu2fS4icIKozcSubwuG7vtzq2uW3fOR1zITSP84TNt2GoQ==}
- '@mui/icons-material@5.11.9':
- resolution: {integrity: sha512-SPANMk6K757Q1x48nCwPGdSNb8B71d+2hPMJ0V12VWerpSsbjZtvAPi5FAn13l2O5mwWkvI0Kne+0tCgnNxMNw==}
+ '@mui/icons-material@5.16.7':
+ resolution: {integrity: sha512-UrGwDJCXEszbDI7yV047BYU5A28eGJ79keTCP4cc74WyncuVrnurlmIRxaHL8YK+LI1Kzq+/JM52IAkNnv4u+Q==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@mui/material': ^5.0.0
@@ -1616,13 +1486,13 @@ packages:
'@types/react':
optional: true
- '@mui/lab@5.0.0-alpha.120':
- resolution: {integrity: sha512-vjlF2jTKSZnNxtUO0xxHEDfpL5cG0LLNRsfKv8TYOiPs0Q1bbqO3YfqJsqxv8yh+wx7EFZc8lwJ4NSAQdenW3A==}
+ '@mui/lab@5.0.0-alpha.173':
+ resolution: {integrity: sha512-Gt5zopIWwxDgGy/MXcp6GueD84xFFugFai4hYiXY0zowJpTVnIrTQCQXV004Q7rejJ7aaCntX9hpPJqCrioshA==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
- '@mui/material': ^5.0.0
+ '@mui/material': '>=5.15.0'
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
@@ -1634,8 +1504,8 @@ packages:
'@types/react':
optional: true
- '@mui/material@5.11.10':
- resolution: {integrity: sha512-hs1WErbiedqlJIZsljgoil908x4NMp8Lfk8di+5c7o809roqKcFTg2+k3z5ucKvs29AXcsdXrDB/kn2K6dGYIw==}
+ '@mui/material@5.16.7':
+ resolution: {integrity: sha512-cwwVQxBhK60OIOqZOVLFt55t01zmarKJiJUWbk0+8s/Ix5IaUzAShqlJchxsIQ4mSrWqgcKCCXKtIlG5H+/Jmg==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
@@ -1651,8 +1521,8 @@ packages:
'@types/react':
optional: true
- '@mui/private-theming@5.11.9':
- resolution: {integrity: sha512-XMyVIFGomVCmCm92EvYlgq3zrC9K+J6r7IKl/rBJT2/xVYoRY6uM7jeB+Wxh7kXxnW9Dbqsr2yL3cx6wSD1sAg==}
+ '@mui/private-theming@5.16.6':
+ resolution: {integrity: sha512-rAk+Rh8Clg7Cd7shZhyt2HGTTE5wYKNSJ5sspf28Fqm/PZ69Er9o6KX25g03/FG2dfpg5GCwZh/xOojiTfm3hw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
@@ -1661,8 +1531,8 @@ packages:
'@types/react':
optional: true
- '@mui/styled-engine@5.11.9':
- resolution: {integrity: sha512-bkh2CjHKOMy98HyOc8wQXEZvhOmDa/bhxMUekFX5IG0/w4f5HJ8R6+K6nakUUYNEgjOWPYzNPrvGB8EcGbhahQ==}
+ '@mui/styled-engine@5.16.6':
+ resolution: {integrity: sha512-zaThmS67ZmtHSWToTiHslbI8jwrmITcN93LQaR2lKArbvS7Z3iLkwRoiikNWutx9MBs8Q6okKvbZq1RQYB3v7g==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.4.1
@@ -1674,8 +1544,8 @@ packages:
'@emotion/styled':
optional: true
- '@mui/system@5.11.9':
- resolution: {integrity: sha512-h6uarf+l3FO6l75Nf7yO+qDGrIoa1DM9nAMCUFZQsNCDKOInRzcptnm8M1w/Z3gVetfeeGoIGAYuYKbft6KZZA==}
+ '@mui/system@5.16.7':
+ resolution: {integrity: sha512-Jncvs/r/d/itkxh7O7opOunTqbbSSzMTHzZkNLM+FjAOg+cYAZHrPDlYe1ZGKUYORwwb2XexlWnpZp0kZ4AHuA==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
@@ -1690,33 +1560,27 @@ packages:
'@types/react':
optional: true
- '@mui/types@7.2.3':
- resolution: {integrity: sha512-tZ+CQggbe9Ol7e/Fs5RcKwg/woU+o8DCtOnccX6KmbBc7YrfqMYEYuaIcXHuhpT880QwNkZZ3wQwvtlDFA2yOw==}
+ '@mui/types@7.2.19':
+ resolution: {integrity: sha512-6XpZEM/Q3epK9RN8ENoXuygnqUQxE+siN/6rGRi2iwJPgBUR25mphYQ9ZI87plGh58YoZ5pp40bFvKYOCDJ3tA==}
peerDependencies:
- '@types/react': '*'
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@mui/types@7.2.4':
- resolution: {integrity: sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==}
+ '@mui/utils@5.16.6':
+ resolution: {integrity: sha512-tWiQqlhxAt3KENNiSRL+DIn9H5xNVK6Jjf70x3PnfQPz1MPBdh7yyIcAyVBT9xiw7hP3SomRhPR7hzBMBCjqEA==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
- '@types/react': '*'
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@mui/utils@5.11.9':
- resolution: {integrity: sha512-eOJaqzcEs4qEwolcvFAmXGpln+uvouvOS9FUX6Wkrte+4I8rZbjODOBDVNlK+V6/ziTfD4iNKC0G+KfOTApbqg==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- react: ^17.0.0 || ^18.0.0
-
- '@mui/utils@5.14.7':
- resolution: {integrity: sha512-RtheP/aBoPogVdi8vj8Vo2IFnRa4mZVmnD0RGlVZ49yF60rZs+xP4/KbpIrTr83xVs34QmHQ2aQ+IX7I0a0dDw==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- react: ^17.0.0 || ^18.0.0
+ '@noble/hashes@1.5.0':
+ resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==}
+ engines: {node: ^14.21.3 || >=16}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -1730,6 +1594,10 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
+ '@nolyfill/is-core-module@1.0.39':
+ resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
+ engines: {node: '>=12.4.0'}
+
'@octokit/auth-token@4.0.0':
resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
engines: {node: '>= 18'}
@@ -1772,6 +1640,9 @@ packages:
'@octokit/types@12.4.0':
resolution: {integrity: sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==}
+ '@paralleldrive/cuid2@2.2.2':
+ resolution: {integrity: sha512-ZOBkgDwEdoYVlSeRbYYXs0S9MejQofiVYoTbKzy/6GQa39/q5tQU2IX46+shYnUkpEl3wc+J6wRlar7r2EK2xA==}
+
'@popperjs/core@2.11.6':
resolution: {integrity: sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==}
@@ -1795,8 +1666,8 @@ packages:
peerDependencies:
react: 16.x || 17.x || 18.x
- '@reactour/tour@3.6.1':
- resolution: {integrity: sha512-vzmgbm4T7n5gh0cjc4Zi4G3K29dXQyEdi/o7ZYLpNcisJ0hwP5jNKH7BgckrHWEGldBxYSWl34tsRmHcyxporQ==}
+ '@reactour/tour@3.7.0':
+ resolution: {integrity: sha512-p0USaOBc5fcNBS5ZiQ2lsmztAhIGCUfx913Zw14FbEM8bhSXpR1F2JD0alVj9Ya1N+pnTNYatf14rSNGJsEnCg==}
peerDependencies:
react: 16.x || 17.x || 18.x
@@ -1811,33 +1682,126 @@ packages:
'@redocly/config@0.16.0':
resolution: {integrity: sha512-t9jnODbUcuANRSl/K4L9nb12V+U5acIHnVSl26NWrtSdDZVtoqUXk2yGFPZzohYf62cCfEQUT8ouJ3bhPfpnJg==}
- '@redocly/openapi-core@1.25.11':
- resolution: {integrity: sha512-bH+a8izQz4fnKROKoX3bEU8sQ9rjvEIZOqU6qTmxlhOJ0NsKa5e+LmU18SV0oFeg5YhWQhhEDihXkvKJ1wMMNQ==}
+ '@redocly/openapi-core@1.25.13':
+ resolution: {integrity: sha512-8O2IdHCHU1EaGc74/Z5nTItfPrakvPEwZ6sf16c/u5ZJJBo3SKbqM2vOLk4spY4Tn0eaAwUxw2b0kXueemp+iw==}
engines: {node: '>=14.19.0', npm: '>=7.0.0'}
- '@remix-run/router@1.3.2':
- resolution: {integrity: sha512-t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA==}
- engines: {node: '>=14'}
+ '@remix-run/router@1.21.0':
+ resolution: {integrity: sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA==}
+ engines: {node: '>=14.0.0'}
'@restart/hooks@0.4.9':
resolution: {integrity: sha512-3BekqcwB6Umeya+16XPooARn4qEPW6vNvwYnlofIYe6h9qG1/VeD7UvShCWx11eFz5ELYmwIEshz+MkPX3wjcQ==}
peerDependencies:
react: '>=16.8.0'
- '@rollup/pluginutils@5.0.2':
- resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
+ '@rollup/pluginutils@5.1.3':
+ resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
peerDependenciesMeta:
rollup:
optional: true
+ '@rollup/rollup-android-arm-eabi@4.27.2':
+ resolution: {integrity: sha512-Tj+j7Pyzd15wAdSJswvs5CJzJNV+qqSUcr/aCD+jpQSBtXvGnV0pnrjoc8zFTe9fcKCatkpFpOO7yAzpO998HA==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm64@4.27.2':
+ resolution: {integrity: sha512-xsPeJgh2ThBpUqlLgRfiVYBEf/P1nWlWvReG+aBWfNv3XEBpa6ZCmxSVnxJgLgkNz4IbxpLy64h2gCmAAQLneQ==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-darwin-arm64@4.27.2':
+ resolution: {integrity: sha512-KnXU4m9MywuZFedL35Z3PuwiTSn/yqRIhrEA9j+7OSkji39NzVkgxuxTYg5F8ryGysq4iFADaU5osSizMXhU2A==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.27.2':
+ resolution: {integrity: sha512-Hj77A3yTvUeCIx/Vi+4d4IbYhyTwtHj07lVzUgpUq9YpJSEiGJj4vXMKwzJ3w5zp5v3PFvpJNgc/J31smZey6g==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-freebsd-arm64@4.27.2':
+ resolution: {integrity: sha512-RjgKf5C3xbn8gxvCm5VgKZ4nn0pRAIe90J0/fdHUsgztd3+Zesb2lm2+r6uX4prV2eUByuxJNdt647/1KPRq5g==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.27.2':
+ resolution: {integrity: sha512-duq21FoXwQtuws+V9H6UZ+eCBc7fxSpMK1GQINKn3fAyd9DFYKPJNcUhdIKOrMFjLEJgQskoMoiuizMt+dl20g==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.27.2':
+ resolution: {integrity: sha512-6npqOKEPRZkLrMcvyC/32OzJ2srdPzCylJjiTJT2c0bwwSGm7nz2F9mNQ1WrAqCBZROcQn91Fno+khFhVijmFA==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-musleabihf@4.27.2':
+ resolution: {integrity: sha512-V9Xg6eXtgBtHq2jnuQwM/jr2mwe2EycnopO8cbOvpzFuySCGtKlPCI3Hj9xup/pJK5Q0388qfZZy2DqV2J8ftw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-gnu@4.27.2':
+ resolution: {integrity: sha512-uCFX9gtZJoQl2xDTpRdseYuNqyKkuMDtH6zSrBTA28yTfKyjN9hQ2B04N5ynR8ILCoSDOrG/Eg+J2TtJ1e/CSA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-musl@4.27.2':
+ resolution: {integrity: sha512-/PU9P+7Rkz8JFYDHIi+xzHabOu9qEWR07L5nWLIUsvserrxegZExKCi2jhMZRd0ATdboKylu/K5yAXbp7fYFvA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.27.2':
+ resolution: {integrity: sha512-eCHmol/dT5odMYi/N0R0HC8V8QE40rEpkyje/ZAXJYNNoSfrObOvG/Mn+s1F/FJyB7co7UQZZf6FuWnN6a7f4g==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.27.2':
+ resolution: {integrity: sha512-DEP3Njr9/ADDln3kNi76PXonLMSSMiCir0VHXxmGSHxCxDfQ70oWjHcJGfiBugzaqmYdTC7Y+8Int6qbnxPBIQ==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-s390x-gnu@4.27.2':
+ resolution: {integrity: sha512-NHGo5i6IE/PtEPh5m0yw5OmPMpesFnzMIS/lzvN5vknnC1sXM5Z/id5VgcNPgpD+wHmIcuYYgW+Q53v+9s96lQ==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-gnu@4.27.2':
+ resolution: {integrity: sha512-PaW2DY5Tan+IFvNJGHDmUrORadbe/Ceh8tQxi8cmdQVCCYsLoQo2cuaSj+AU+YRX8M4ivS2vJ9UGaxfuNN7gmg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-musl@4.27.2':
+ resolution: {integrity: sha512-dOlWEMg2gI91Qx5I/HYqOD6iqlJspxLcS4Zlg3vjk1srE67z5T2Uz91yg/qA8sY0XcwQrFzWWiZhMNERylLrpQ==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-win32-arm64-msvc@4.27.2':
+ resolution: {integrity: sha512-euMIv/4x5Y2/ImlbGl88mwKNXDsvzbWUlT7DFky76z2keajCtcbAsN9LUdmk31hAoVmJJYSThgdA0EsPeTr1+w==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.27.2':
+ resolution: {integrity: sha512-RsnE6LQkUHlkC10RKngtHNLxb7scFykEbEwOFDjr3CeCMG+Rr+cKqlkKc2/wJ1u4u990urRHCbjz31x84PBrSQ==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.27.2':
+ resolution: {integrity: sha512-foJM5vv+z2KQmn7emYdDLyTbkoO5bkHZE1oth2tWbQNGW7mX32d46Hz6T0MqXdWS2vBZhaEtHqdy9WYwGfiliA==}
+ cpu: [x64]
+ os: [win32]
+
'@rooks/use-mutation-observer@4.11.2':
resolution: {integrity: sha512-vpsdrZdr6TkB1zZJcHx+fR1YC/pHs2BaqcuYiEGjBVbwY5xcC49+h0hAUtQKHth3oJqXfIX/Ng8S7s5HFHdM/A==}
peerDependencies:
react: '>=16.8.0'
+ '@rtsao/scc@1.1.0':
+ resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
@@ -1845,172 +1809,181 @@ packages:
resolution: {integrity: sha512-5imgGUlZL4dW4YWdMYAKLmal9ny/tlenM81QZY7xYyb76z9Z/QOg7oM5Ak9HQl8QfFTlGVWwcMXl+54jroRgEQ==}
engines: {node: '>=14.0.0'}
- '@smithy/abort-controller@2.0.16':
- resolution: {integrity: sha512-4foO7738k8kM9flMHu3VLabqu7nPgvIj8TB909S0CnKx0YZz/dcDH3pZ/4JHdatfxlZdKF1JWOYCw9+v3HVVsw==}
- engines: {node: '>=14.0.0'}
-
- '@smithy/config-resolver@2.0.23':
- resolution: {integrity: sha512-XakUqgtP2YY8Mi+Nlif5BiqJgWdvfxJafSpOSQeCOMizu+PUhE4fBQSy6xFcR+eInrwVadaABNxoJyGUMn15ew==}
- engines: {node: '>=14.0.0'}
+ '@smithy/abort-controller@3.1.8':
+ resolution: {integrity: sha512-+3DOBcUn5/rVjlxGvUPKc416SExarAQ+Qe0bqk30YSUjbepwpS7QN0cyKUSifvLJhdMZ0WPzPP5ymut0oonrpQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/core@1.2.2':
- resolution: {integrity: sha512-uLjrskLT+mWb0emTR5QaiAIxVEU7ndpptDaVDrTwwhD+RjvHhjIiGQ3YL5jKk1a5VSDQUA2RGkXvJ6XKRcz6Dg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/config-resolver@3.0.12':
+ resolution: {integrity: sha512-YAJP9UJFZRZ8N+UruTeq78zkdjUHmzsY62J4qKWZ4SXB4QXJ/+680EfXXgkYA2xj77ooMqtUY9m406zGNqwivQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/credential-provider-imds@2.1.5':
- resolution: {integrity: sha512-VfvE6Wg1MUWwpTZFBnUD7zxvPhLY8jlHCzu6bCjlIYoWgXCDzZAML76IlZUEf45nib3rjehnFgg0s1rgsuN/bg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/core@2.5.3':
+ resolution: {integrity: sha512-96uW8maifUSmehaeW7uydWn7wBc98NEeNI3zN8vqakGpyCQgzyJaA64Z4FCOUmAdCJkhppd/7SZ798Fo4Xx37g==}
+ engines: {node: '>=16.0.0'}
- '@smithy/eventstream-codec@2.0.16':
- resolution: {integrity: sha512-umYh5pdCE9GHgiMAH49zu9wXWZKNHHdKPm/lK22WYISTjqu29SepmpWNmPiBLy/yUu4HFEGJHIFrDWhbDlApaw==}
+ '@smithy/credential-provider-imds@3.2.7':
+ resolution: {integrity: sha512-cEfbau+rrWF8ylkmmVAObOmjbTIzKyUC5TkBL58SbLywD0RCBC4JAUKbmtSm2w5KUJNRPGgpGFMvE2FKnuNlWQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/fetch-http-handler@2.3.2':
- resolution: {integrity: sha512-O9R/OlnAOTsnysuSDjt0v2q6DcSvCz5cCFC/CFAWWcLyBwJDeFyGTCTszgpQTb19+Fi8uRwZE5/3ziAQBFeDMQ==}
+ '@smithy/fetch-http-handler@4.1.1':
+ resolution: {integrity: sha512-bH7QW0+JdX0bPBadXt8GwMof/jz0H28I84hU1Uet9ISpzUqXqRQ3fEZJ+ANPOhzSEczYvANNl3uDQDYArSFDtA==}
- '@smithy/hash-node@2.0.18':
- resolution: {integrity: sha512-gN2JFvAgnZCyDN9rJgcejfpK0uPPJrSortVVVVWsru9whS7eQey6+gj2eM5ln2i6rHNntIXzal1Fm9XOPuoaKA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/hash-node@3.0.10':
+ resolution: {integrity: sha512-3zWGWCHI+FlJ5WJwx73Mw2llYR8aflVyZN5JhoqLxbdPZi6UyKSdCeXAWJw9ja22m6S6Tzz1KZ+kAaSwvydi0g==}
+ engines: {node: '>=16.0.0'}
- '@smithy/invalid-dependency@2.0.16':
- resolution: {integrity: sha512-apEHakT/kmpNo1VFHP4W/cjfeP9U0x5qvfsLJubgp7UM/gq4qYp0GbqdE7QhsjUaYvEnrftRqs7+YrtWreV0wA==}
+ '@smithy/invalid-dependency@3.0.10':
+ resolution: {integrity: sha512-Lp2L65vFi+cj0vFMu2obpPW69DU+6O5g3086lmI4XcnRCG8PxvpWC7XyaVwJCxsZFzueHjXnrOH/E0pl0zikfA==}
- '@smithy/is-array-buffer@2.0.0':
- resolution: {integrity: sha512-z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug==}
+ '@smithy/is-array-buffer@2.2.0':
+ resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
- '@smithy/middleware-content-length@2.0.18':
- resolution: {integrity: sha512-ZJ9uKPTfxYheTKSKYB+GCvcj+izw9WGzRLhjn8n254q0jWLojUzn7Vw0l4R/Gq7Wdpf/qmk/ptD+6CCXHNVCaw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/is-array-buffer@3.0.0':
+ resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/middleware-endpoint@2.3.0':
- resolution: {integrity: sha512-VsOAG2YQ8ykjSmKO+CIXdJBIWFo6AAvG6Iw95BakBTqk66/4BI7XyqLevoNSq/lZ6NgZv24sLmrcIN+fLDWBCg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/middleware-content-length@3.0.12':
+ resolution: {integrity: sha512-1mDEXqzM20yywaMDuf5o9ue8OkJ373lSPbaSjyEvkWdqELhFMyNNgKGWL/rCSf4KME8B+HlHKuR8u9kRj8HzEQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/middleware-retry@2.0.26':
- resolution: {integrity: sha512-Qzpxo0U5jfNiq9iD38U3e2bheXwvTEX4eue9xruIvEgh+UKq6dKuGqcB66oBDV7TD/mfoJi9Q/VmaiqwWbEp7A==}
- engines: {node: '>=14.0.0'}
+ '@smithy/middleware-endpoint@3.2.3':
+ resolution: {integrity: sha512-Hdl9296i/EMptaX7agrSzJZDiz5Y8XPUeBbctTmMtnCguGpqfU3jVsTUan0VLaOhsnquqWLL8Bl5HrlbVGT1og==}
+ engines: {node: '>=16.0.0'}
- '@smithy/middleware-serde@2.0.16':
- resolution: {integrity: sha512-5EAd4t30pcc4M8TSSGq7q/x5IKrxfXR5+SrU4bgxNy7RPHQo2PSWBUco9C+D9Tfqp/JZvprRpK42dnupZafk2g==}
- engines: {node: '>=14.0.0'}
+ '@smithy/middleware-retry@3.0.27':
+ resolution: {integrity: sha512-H3J/PjJpLL7Tt+fxDKiOD25sMc94YetlQhCnYeNmina2LZscAdu0ZEZPas/kwePHABaEtqp7hqa5S4UJgMs1Tg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/middleware-stack@2.0.10':
- resolution: {integrity: sha512-I2rbxctNq9FAPPEcuA1ntZxkTKOPQFy7YBPOaD/MLg1zCvzv21CoNxR0py6J8ZVC35l4qE4nhxB0f7TF5/+Ldw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/middleware-serde@3.0.10':
+ resolution: {integrity: sha512-MnAuhh+dD14F428ubSJuRnmRsfOpxSzvRhaGVTvd/lrUDE3kxzCCmH8lnVTvoNQnV2BbJ4c15QwZ3UdQBtFNZA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/node-config-provider@2.1.9':
- resolution: {integrity: sha512-tUyW/9xrRy+s7RXkmQhgYkAPMpTIF8izK4orhHjNFEKR3QZiOCbWB546Y8iB/Fpbm3O9+q0Af9rpywLKJOwtaQ==}
- engines: {node: '>=14.0.0'}
+ '@smithy/middleware-stack@3.0.10':
+ resolution: {integrity: sha512-grCHyoiARDBBGPyw2BeicpjgpsDFWZZxptbVKb3CRd/ZA15F/T6rZjCCuBUjJwdck1nwUuIxYtsS4H9DDpbP5w==}
+ engines: {node: '>=16.0.0'}
- '@smithy/node-http-handler@2.2.2':
- resolution: {integrity: sha512-XO58TO/Eul/IBQKFKaaBtXJi0ItEQQCT+NI4IiKHCY/4KtqaUT6y/wC1EvDqlA9cP7Dyjdj7FdPs4DyynH3u7g==}
- engines: {node: '>=14.0.0'}
+ '@smithy/node-config-provider@3.1.11':
+ resolution: {integrity: sha512-URq3gT3RpDikh/8MBJUB+QGZzfS7Bm6TQTqoh4CqE8NBuyPkWa5eUXj0XFcFfeZVgg3WMh1u19iaXn8FvvXxZw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/property-provider@2.0.17':
- resolution: {integrity: sha512-+VkeZbVu7qtQ2DjI48Qwaf9fPOr3gZIwxQpuLJgRRSkWsdSvmaTCxI3gzRFKePB63Ts9r4yjn4HkxSCSkdWmcQ==}
- engines: {node: '>=14.0.0'}
+ '@smithy/node-http-handler@3.3.1':
+ resolution: {integrity: sha512-fr+UAOMGWh6bn4YSEezBCpJn9Ukp9oR4D32sCjCo7U81evE11YePOQ58ogzyfgmjIO79YeOdfXXqr0jyhPQeMg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/protocol-http@3.0.12':
- resolution: {integrity: sha512-Xz4iaqLiaBfbQpB9Hgi3VcZYbP7xRDXYhd8XWChh4v94uw7qwmvlxdU5yxzfm6ACJM66phHrTbS5TVvj5uQ72w==}
- engines: {node: '>=14.0.0'}
+ '@smithy/property-provider@3.1.10':
+ resolution: {integrity: sha512-n1MJZGTorTH2DvyTVj+3wXnd4CzjJxyXeOgnTlgNVFxaaMeT4OteEp4QrzF8p9ee2yg42nvyVK6R/awLCakjeQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/querystring-builder@2.0.16':
- resolution: {integrity: sha512-Q/GsJT0C0mijXMRs7YhZLLCP5FcuC4797lYjKQkME5CZohnLC4bEhylAd2QcD3gbMKNjCw8+T2I27WKiV/wToA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/protocol-http@4.1.7':
+ resolution: {integrity: sha512-FP2LepWD0eJeOTm0SjssPcgqAlDFzOmRXqXmGhfIM52G7Lrox/pcpQf6RP4F21k0+O12zaqQt5fCDOeBtqY6Cg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/querystring-parser@2.0.16':
- resolution: {integrity: sha512-c4ueAuL6BDYKWpkubjrQthZKoC3L5kql5O++ovekNxiexRXTlLIVlCR4q3KziOktLIw66EU9SQljPXd/oN6Okg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/querystring-builder@3.0.10':
+ resolution: {integrity: sha512-nT9CQF3EIJtIUepXQuBFb8dxJi3WVZS3XfuDksxSCSn+/CzZowRLdhDn+2acbBv8R6eaJqPupoI/aRFIImNVPQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/service-error-classification@2.0.9':
- resolution: {integrity: sha512-0K+8GvtwI7VkGmmInPydM2XZyBfIqLIbfR7mDQ+oPiz8mIinuHbV6sxOLdvX1Jv/myk7XTK9orgt3tuEpBu/zg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/querystring-parser@3.0.10':
+ resolution: {integrity: sha512-Oa0XDcpo9SmjhiDD9ua2UyM3uU01ZTuIrNdZvzwUTykW1PM8o2yJvMh1Do1rY5sUQg4NDV70dMi0JhDx4GyxuQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/shared-ini-file-loader@2.2.8':
- resolution: {integrity: sha512-E62byatbwSWrtq9RJ7xN40tqrRKDGrEL4EluyNpaIDvfvet06a/QC58oHw2FgVaEgkj0tXZPjZaKrhPfpoU0qw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/service-error-classification@3.0.10':
+ resolution: {integrity: sha512-zHe642KCqDxXLuhs6xmHVgRwy078RfqxP2wRDpIyiF8EmsWXptMwnMwbVa50lw+WOGNrYm9zbaEg0oDe3PTtvQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/signature-v4@2.0.19':
- resolution: {integrity: sha512-nwc3JihdM+kcJjtORv/n7qRHN2Kfh7S2RJI2qr8pz9UcY5TD8rSCRGQ0g81HgyS3jZ5X9U/L4p014P3FonBPhg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/shared-ini-file-loader@3.1.11':
+ resolution: {integrity: sha512-AUdrIZHFtUgmfSN4Gq9nHu3IkHMa1YDcN+s061Nfm+6pQ0mJy85YQDB0tZBCmls0Vuj22pLwDPmL92+Hvfwwlg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/smithy-client@2.2.1':
- resolution: {integrity: sha512-SpD7FLK92XV2fon2hMotaNDa2w5VAy5/uVjP9WFmjGSgWM8pTPVkHcDl1yFs5Z8LYbij0FSz+DbCBK6i+uXXUA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/signature-v4@4.2.3':
+ resolution: {integrity: sha512-pPSQQ2v2vu9vc8iew7sszLd0O09I5TRc5zhY71KA+Ao0xYazIG+uLeHbTJfIWGO3BGVLiXjUr3EEeCcEQLjpWQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/smithy-client@3.4.4':
+ resolution: {integrity: sha512-dPGoJuSZqvirBq+yROapBcHHvFjChoAQT8YPWJ820aPHHiowBlB3RL1Q4kPT1hx0qKgJuf+HhyzKi5Gbof4fNA==}
+ engines: {node: '>=16.0.0'}
'@smithy/types@1.2.0':
resolution: {integrity: sha512-z1r00TvBqF3dh4aHhya7nz1HhvCg4TRmw51fjMrh5do3h+ngSstt/yKlNbHeb9QxJmFbmN8KEVSWgb1bRvfEoA==}
engines: {node: '>=14.0.0'}
- '@smithy/types@2.8.0':
- resolution: {integrity: sha512-h9sz24cFgt/W1Re22OlhQKmUZkNh244ApgRsUDYinqF8R+QgcsBIX344u2j61TPshsTz3CvL6HYU1DnQdsSrHA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/types@3.7.1':
+ resolution: {integrity: sha512-XKLcLXZY7sUQgvvWyeaL/qwNPp6V3dWcUjqrQKjSb+tzYiCy340R/c64LV5j+Tnb2GhmunEX0eou+L+m2hJNYA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/url-parser@2.0.16':
- resolution: {integrity: sha512-Wfz5WqAoRT91TjRy1JeLR0fXtkIXHGsMbgzKFTx7E68SrZ55TB8xoG+vm11Ru4gheFTMXjAjwAxv1jQdC+pAQA==}
+ '@smithy/url-parser@3.0.10':
+ resolution: {integrity: sha512-j90NUalTSBR2NaZTuruEgavSdh8MLirf58LoGSk4AtQfyIymogIhgnGUU2Mga2bkMkpSoC9gxb74xBXL5afKAQ==}
- '@smithy/util-base64@2.0.1':
- resolution: {integrity: sha512-DlI6XFYDMsIVN+GH9JtcRp3j02JEVuWIn/QOZisVzpIAprdsxGveFed0bjbMRCqmIFe8uetn5rxzNrBtIGrPIQ==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-base64@3.0.0':
+ resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-body-length-browser@2.0.1':
- resolution: {integrity: sha512-NXYp3ttgUlwkaug4bjBzJ5+yIbUbUx8VsSLuHZROQpoik+gRkIBeEG9MPVYfvPNpuXb/puqodeeUXcKFe7BLOQ==}
+ '@smithy/util-body-length-browser@3.0.0':
+ resolution: {integrity: sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==}
- '@smithy/util-body-length-node@2.1.0':
- resolution: {integrity: sha512-/li0/kj/y3fQ3vyzn36NTLGmUwAICb7Jbe/CsWCktW363gh1MOcpEcSO3mJ344Gv2dqz8YJCLQpb6hju/0qOWw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-body-length-node@3.0.0':
+ resolution: {integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-buffer-from@2.0.0':
- resolution: {integrity: sha512-/YNnLoHsR+4W4Vf2wL5lGv0ksg8Bmk3GEGxn2vEQt52AQaPSCuaO5PM5VM7lP1K9qHRKHwrPGktqVoAHKWHxzw==}
+ '@smithy/util-buffer-from@2.2.0':
+ resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
engines: {node: '>=14.0.0'}
- '@smithy/util-config-provider@2.1.0':
- resolution: {integrity: sha512-S6V0JvvhQgFSGLcJeT1CBsaTR03MM8qTuxMH9WPCCddlSo2W0V5jIHimHtIQALMLEDPGQ0ROSRr/dU0O+mxiQg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-buffer-from@3.0.0':
+ resolution: {integrity: sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-config-provider@3.0.0':
+ resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-defaults-mode-browser@2.0.24':
- resolution: {integrity: sha512-TsP5mBuLgO2C21+laNG2nHYZEyUdkbGURv2tHvSuQQxLz952MegX95uwdxOY2jR2H4GoKuVRfdJq7w4eIjGYeg==}
+ '@smithy/util-defaults-mode-browser@3.0.27':
+ resolution: {integrity: sha512-GV8NvPy1vAGp7u5iD/xNKUxCorE4nQzlyl057qRac+KwpH5zq8wVq6rE3lPPeuFLyQXofPN6JwxL1N9ojGapiQ==}
engines: {node: '>= 10.0.0'}
- '@smithy/util-defaults-mode-node@2.0.32':
- resolution: {integrity: sha512-d0S33dXA2cq1NyorVMroMrEtqKMr3MlyLITcfTBf9pXiigYiPMOtbSI7czHIfDbuVuM89Cg0urAgpt73QV9mPQ==}
+ '@smithy/util-defaults-mode-node@3.0.27':
+ resolution: {integrity: sha512-7+4wjWfZqZxZVJvDutO+i1GvL6bgOajEkop4FuR6wudFlqBiqwxw3HoH6M9NgeCd37km8ga8NPp2JacQEtAMPg==}
engines: {node: '>= 10.0.0'}
- '@smithy/util-endpoints@1.0.8':
- resolution: {integrity: sha512-l8zVuyZZ61IzZBYp5NWvsAhbaAjYkt0xg9R4xUASkg5SEeTT2meHOJwJHctKMFUXe4QZbn9fR2MaBYjP2119+w==}
- engines: {node: '>= 14.0.0'}
+ '@smithy/util-endpoints@2.1.6':
+ resolution: {integrity: sha512-mFV1t3ndBh0yZOJgWxO9J/4cHZVn5UG1D8DeCc6/echfNkeEJWu9LD7mgGH5fHrEdR7LDoWw7PQO6QiGpHXhgA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-hex-encoding@2.0.0':
- resolution: {integrity: sha512-c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-hex-encoding@3.0.0':
+ resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-middleware@2.0.9':
- resolution: {integrity: sha512-PnCnBJ07noMX1lMDTEefmxSlusWJUiLfrme++MfK5TD0xz8NYmakgoXy5zkF/16zKGmiwOeKAztWT/Vjk1KRIQ==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-middleware@3.0.10':
+ resolution: {integrity: sha512-eJO+/+RsrG2RpmY68jZdwQtnfsxjmPxzMlQpnHKjFPwrYqvlcT+fHdT+ZVwcjlWSrByOhGr9Ff2GG17efc192A==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-retry@2.0.9':
- resolution: {integrity: sha512-46BFWe9RqB6g7f4mxm3W3HlqknqQQmWHKlhoqSFZuGNuiDU5KqmpebMbvC3tjTlUkqn4xa2Z7s3Hwb0HNs5scw==}
- engines: {node: '>= 14.0.0'}
+ '@smithy/util-retry@3.0.10':
+ resolution: {integrity: sha512-1l4qatFp4PiU6j7UsbasUHL2VU023NRB/gfaa1M0rDqVrRN4g3mCArLRyH3OuktApA4ye+yjWQHjdziunw2eWA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-stream@2.0.24':
- resolution: {integrity: sha512-hRpbcRrOxDriMVmbya+Mv77VZVupxRAsfxVDKS54XuiURhdiwCUXJP0X1iJhHinuUf6n8pBF0MkG9C8VooMnWw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-stream@3.3.1':
+ resolution: {integrity: sha512-Ff68R5lJh2zj+AUTvbAU/4yx+6QPRzg7+pI7M1FbtQHcRIp7xvguxVsQBKyB3fwiOwhAKu0lnNyYBaQfSW6TNw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-uri-escape@2.0.0':
- resolution: {integrity: sha512-ebkxsqinSdEooQduuk9CbKcI+wheijxEb3utGXkCoYQkJnwTnLbH1JXGimJtUkQwNQbsbuYwG2+aFVyZf5TLaw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-uri-escape@3.0.0':
+ resolution: {integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-utf8@2.0.2':
- resolution: {integrity: sha512-qOiVORSPm6Ce4/Yu6hbSgNHABLP2VMv8QOC3tTDNHHlWY19pPyc++fBTbZPtx6egPXi4HQxKDnMxVxpbtX2GoA==}
+ '@smithy/util-utf8@2.3.0':
+ resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
engines: {node: '>=14.0.0'}
+ '@smithy/util-utf8@3.0.0':
+ resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==}
+ engines: {node: '>=16.0.0'}
+
'@smithy/util-waiter@1.1.0':
resolution: {integrity: sha512-S6FNIB3UJT+5Efd/0DeziO5Rs82QAMODHW4v2V3oNRrwaBigY/7Yx3SiLudZuF9WpVsV08Ih3BjIH34nzZiinQ==}
engines: {node: '>=14.0.0'}
- '@smithy/util-waiter@2.0.16':
- resolution: {integrity: sha512-5i4YONHQ6HoUWDd+X0frpxTXxSXgJhUFl+z0iMy/zpUmVeCQY2or3Vss6DzHKKMMQL4pmVHpQm9WayHDorFdZg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-waiter@3.1.9':
+ resolution: {integrity: sha512-/aMXPANhMOlMPjfPtSrDfPeVP8l56SJlz93xeiLmhLe5xvlXA5T3abZ2ilEsDEPeY9T/wnN/vNGn9wa1SbufWA==}
+ engines: {node: '>=16.0.0'}
'@svgr/babel-plugin-add-jsx-attribute@6.5.1':
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
@@ -2018,15 +1991,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@svgr/babel-plugin-remove-jsx-attribute@6.5.0':
- resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==}
- engines: {node: '>=10'}
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0':
+ resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
+ engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0':
- resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==}
- engines: {node: '>=10'}
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0':
+ resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
+ engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2080,11 +2053,11 @@ packages:
peerDependencies:
'@svgr/core': ^6.0.0
- '@tanstack/query-core@4.24.10':
- resolution: {integrity: sha512-2QywqXEAGBIUoTdgn1lAB4/C8QEqwXHj2jrCLeYTk2xVGtLiPEUD8jcMoeB2noclbiW2mMt4+Fq7fZStuz3wAQ==}
+ '@tanstack/query-core@4.36.1':
+ resolution: {integrity: sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==}
- '@tanstack/react-query@4.24.10':
- resolution: {integrity: sha512-FY1DixytOcNNCydPQXLxuKEV7VSST32CAuJ55BjhDNqASnMLZn+6c30yQBMrODjmWMNwzfjMZnq0Vw7C62Fwow==}
+ '@tanstack/react-query@4.36.1':
+ resolution: {integrity: sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -2095,12 +2068,12 @@ packages:
react-native:
optional: true
- '@testing-library/dom@9.3.1':
- resolution: {integrity: sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w==}
+ '@testing-library/dom@9.3.4':
+ resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==}
engines: {node: '>=14'}
- '@testing-library/react@14.0.0':
- resolution: {integrity: sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==}
+ '@testing-library/react@14.3.1':
+ resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==}
engines: {node: '>=14'}
peerDependencies:
react: ^18.0.0
@@ -2110,34 +2083,46 @@ packages:
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
engines: {node: '>= 10'}
- '@trpc/client@10.30.0':
- resolution: {integrity: sha512-utz0qRI4eU3QcHvBwcSONEnt5pWR3Dyk4VFJnySHysBT6GQRRpJifWX5+RxDhFK93LxcAmiirFbYXjZ40gbobw==}
+ '@trpc/client@10.45.2':
+ resolution: {integrity: sha512-ykALM5kYWTLn1zYuUOZ2cPWlVfrXhc18HzBDyRhoPYN0jey4iQHEFSEowfnhg1RvYnrAVjNBgHNeSAXjrDbGwg==}
peerDependencies:
- '@trpc/server': 10.30.0
+ '@trpc/server': 10.45.2
- '@trpc/server@10.30.0':
- resolution: {integrity: sha512-pRsrHCuar3fbyOdJvO4b80OMP1Tx/wOSy5Ozy6cFDFWVUmfAyIX3En5Hoysy4cmMUuCsQsfTEYQwo+OcpjzBkg==}
+ '@trpc/server@10.45.2':
+ resolution: {integrity: sha512-wOrSThNNE4HUnuhJG6PfDRp4L2009KDVxsd+2VYH8ro6o/7/jwYZ8Uu5j+VaW+mOmc8EHerHzGcdbGNQSAUPgg==}
- '@types/aria-query@5.0.1':
- resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
+ '@types/aria-query@5.0.4':
+ resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
- '@types/aws-lambda@8.10.110':
- resolution: {integrity: sha512-r6egf2Cwv/JaFTTrF9OXFVUB3j/SXTgM9BwrlbBRjWAa2Tu6GWoDoLflppAZ8uSfbUJdXvC7Br3DjuN9pQ2NUQ==}
+ '@types/aws-lambda@8.10.145':
+ resolution: {integrity: sha512-dtByW6WiFk5W5Jfgz1VM+YPA21xMXTuSFoLYIDY0L44jDLLflVPtZkYuu3/YxpGcvjzKFBZLU+GyKjR0HOYtyw==}
+
+ '@types/babel__core@7.20.5':
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+
+ '@types/babel__generator@7.6.8':
+ resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+
+ '@types/babel__template@7.4.4':
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+
+ '@types/babel__traverse@7.20.6':
+ resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
'@types/body-parser@1.19.2':
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
- '@types/chai-subset@1.3.3':
- resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
+ '@types/chai-subset@1.3.5':
+ resolution: {integrity: sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==}
- '@types/chai@4.3.5':
- resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==}
+ '@types/chai@4.3.20':
+ resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==}
'@types/connect@3.4.35':
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
- '@types/cors@2.8.13':
- resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==}
+ '@types/cors@2.8.17':
+ resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
'@types/d3-array@3.0.4':
resolution: {integrity: sha512-nwvEkG9vYOc0Ic7G7kwgviY4AQlTfYGIZ0fqB7CQHXGyYM6nO7kJh5EguSNA3jfh4rq7Sb7eMVq8isuvg2/miQ==}
@@ -2169,59 +2154,56 @@ packages:
'@types/date-arithmetic@4.1.1':
resolution: {integrity: sha512-o9ILUTMSRiOC73o7h30mgLpuDwOJWqMHZfnEIwNQlfZsGY6Kw2gK5Gz6nXAjNt9zm3Qpr12pM4FDqssfdtBzGA==}
- '@types/eslint@8.56.5':
- resolution: {integrity: sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw==}
+ '@types/eslint@8.56.12':
+ resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
- '@types/estree@1.0.0':
- resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
- '@types/express-serve-static-core@4.17.35':
- resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==}
+ '@types/express-serve-static-core@4.19.6':
+ resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
- '@types/express@4.17.17':
- resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
+ '@types/express@4.17.21':
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
- '@types/file-saver@2.0.5':
- resolution: {integrity: sha512-zv9kNf3keYegP5oThGLaPk8E081DFDuwfqjtiTzm6PoxChdJ1raSuADf2YGCVIyrSynLrgc8JWv296s7Q7pQSQ==}
+ '@types/file-saver@2.0.7':
+ resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==}
'@types/geojson@7946.0.10':
resolution: {integrity: sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==}
- '@types/json-schema@7.0.11':
- resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- '@types/leaflet-routing-machine@3.2.4':
- resolution: {integrity: sha512-CFcWghU+eDel/zY2Q1u1tI6rxL2V6SfJ85/prt7s2QEw8tK+OkH+o5PLm/7eYsZH86i30ff5rmEk8GN1nZ9ODg==}
+ '@types/leaflet-routing-machine@3.2.8':
+ resolution: {integrity: sha512-v2pJDv/nqbB769SsytHemhLkqwjVor9UdWvZ1l6Y2SEaXNt1yDwVrktc4sCT8/4n7npuEb8VP+UAk8xrPePqSQ==}
- '@types/leaflet.locatecontrol@0.74.1':
- resolution: {integrity: sha512-4rqWfKadQ+Rksv4uq7Ab68CdOlaDt8z5bP+EMbXk5Ea82XMV9yLzQpAvVZ2xdARa8fpF2Atk+fheQ04Lik6ziA==}
+ '@types/leaflet.locatecontrol@0.74.6':
+ resolution: {integrity: sha512-IMnp6zSkiEKx5fwZSfySIyQWJWR/tpF00jRZC6BmFU//ygVRChakQpGPMpHIjQOnP3UMTmTXgztvQ2AwlHL8Mg==}
- '@types/leaflet@1.9.0':
- resolution: {integrity: sha512-7LeOSj7EloC5UcyOMo+1kc3S1UT3MjJxwqsMT1d2PTyvQz53w0Y0oSSk9nwZnOZubCmBvpSNGceucxiq+ZPEUw==}
+ '@types/leaflet@1.9.14':
+ resolution: {integrity: sha512-sx2q6MDJaajwhKeVgPSvqXd8rhNJSTA3tMidQGduZn9S6WBYxDkCpSpV5xXEmSg7Cgdk/5vJGhVF1kMYLzauBg==}
- '@types/lodash@4.14.191':
- resolution: {integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==}
-
- '@types/mime@1.3.2':
- resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
+ '@types/mime@1.3.5':
+ resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
'@types/mime@3.0.1':
resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
- '@types/node@18.13.0':
- resolution: {integrity: sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg==}
+ '@types/node@18.19.64':
+ resolution: {integrity: sha512-955mDqvO2vFf/oL7V3WiUtiz+BugyX8uVbaT2H8oj3+8dRyH2FLiNdowe7eNqRM7IOIZvzDH76EoAT+gwm6aIQ==}
- '@types/node@20.11.5':
- resolution: {integrity: sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==}
+ '@types/node@20.17.6':
+ resolution: {integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==}
- '@types/node@20.11.6':
- resolution: {integrity: sha512-+EOokTnksGVgip2PbYbr3xnR7kZigh4LbybAfBAw5BpnQ+FqBYUsvCEjYd70IXKlbohQ64mzEYmMtlWUY8q//Q==}
+ '@types/parse-json@4.0.2':
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
- '@types/parse-json@4.0.0':
- resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
+ '@types/prop-types@15.7.13':
+ resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
'@types/prop-types@15.7.5':
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
@@ -2229,35 +2211,32 @@ packages:
'@types/qs@6.9.7':
resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
- '@types/range-parser@1.2.4':
- resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
-
- '@types/react-big-calendar@1.6.0':
- resolution: {integrity: sha512-ZdewX362GjB8MIVweVw+XR/6qkpkTVJvlTTyhqcLbEVI/zEUxPSX+9OlSDIJG3IONkvq+QqGPJbhyLkiDBQ7Jg==}
+ '@types/range-parser@1.2.7':
+ resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-color@3.0.6':
- resolution: {integrity: sha512-OzPIO5AyRmLA7PlOyISlgabpYUa3En74LP8mTMa0veCA719SvYQov4WLMsHvCgXP+L+KI9yGhYnqZafVGG0P4w==}
+ '@types/react-big-calendar@1.15.0':
+ resolution: {integrity: sha512-eZF0HCwalF8bFaEpcxufrIEAu8m6UiTjqbuQk66i7RbuPbi4xjlJqFeQ6Pb6TCudZVZ5ttnz9AquQDvgKGM3cQ==}
- '@types/react-dom@18.0.11':
- resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==}
+ '@types/react-color@3.0.12':
+ resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==}
- '@types/react-input-mask@3.0.2':
- resolution: {integrity: sha512-WTli3kUyvUqqaOLYG/so2pLqUvRb+n4qnx2He5klfqZDiQmRyD07jVIt/bco/1BrcErkPMtpOm+bHii4Oed6cQ==}
+ '@types/react-dom@18.3.1':
+ resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
- '@types/react-is@17.0.3':
- resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==}
+ '@types/react-input-mask@3.0.6':
+ resolution: {integrity: sha512-+5I18WKyG3eWIj7TVPWfK1VitI9mPpS9y6jE/BfmTCe+iL27NfBw/yzKRvCFp1DRBvlvvcsiZf05bub0YC1k8A==}
- '@types/react-is@18.2.1':
- resolution: {integrity: sha512-wyUkmaaSZEzFZivD8F2ftSyAfk6L+DfFliVj/mYdOXbVjRcS87fQJLTnhk6dRZPuJjI+9g6RZJO4PNCngUrmyw==}
+ '@types/react-lazyload@3.2.3':
+ resolution: {integrity: sha512-s03gWlHXiFqZr7TEFDTx8Lkl+ZEYrwTkXP9MNZ3Z3blzsPrnkYjgeSK2tjfzVv/TYVCnDk6TZwNRDHQlHy/1Ug==}
- '@types/react-lazyload@3.2.0':
- resolution: {integrity: sha512-4+r+z8Cf7L/mgxA1vl5uHx5GS/8gY2jqq2p5r5WCm+nUsg9KilwQ+8uaJA3EUlLj57AOzOfGGwwRJ5LOVl8fwA==}
+ '@types/react-transition-group@4.4.11':
+ resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
'@types/react-transition-group@4.4.5':
resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==}
- '@types/react@18.0.28':
- resolution: {integrity: sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==}
+ '@types/react@18.3.12':
+ resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
'@types/reactcss@1.2.6':
resolution: {integrity: sha512-qaIzpCuXNWomGR1Xq8SCFTtF4v8V27Y6f+b9+bzHiv087MylI/nTCqqdChNeWS7tslgROmYB7yeiruWX7WnqNg==}
@@ -2265,14 +2244,11 @@ packages:
'@types/reactour@1.18.5':
resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==}
- '@types/scheduler@0.16.2':
- resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
+ '@types/semver@7.5.8':
+ resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
- '@types/semver@7.3.13':
- resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
-
- '@types/send@0.17.1':
- resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
+ '@types/send@0.17.4':
+ resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
'@types/serve-static@1.15.1':
resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
@@ -2283,17 +2259,14 @@ packages:
'@types/ua-parser-js@0.7.39':
resolution: {integrity: sha512-P/oDfpofrdtF5xw433SPALpdSchtJmY7nsJItf8h3KXqOslkbySh8zq4dSWXH2oTjRvJ5PczVEoCZPow6GicLg==}
+ '@types/uuid@9.0.8':
+ resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
+
'@types/warning@3.0.0':
resolution: {integrity: sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==}
- '@types/webidl-conversions@7.0.0':
- resolution: {integrity: sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==}
-
- '@types/whatwg-url@8.2.2':
- resolution: {integrity: sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==}
-
- '@typescript-eslint/eslint-plugin@5.57.1':
- resolution: {integrity: sha512-1MeobQkQ9tztuleT3v72XmY0XuKXVXusAhryoLuU5YZ+mXoYKZP9SQ7Flulh1NX4DTjpGTc2b/eMu4u7M7dhnQ==}
+ '@typescript-eslint/eslint-plugin@5.62.0':
+ resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -2303,8 +2276,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@5.57.1':
- resolution: {integrity: sha512-hlA0BLeVSA/wBPKdPGxoVr9Pp6GutGoY380FEhbVi0Ph4WNe8kLvqIRx76RSQt1lynZKfrXKs0/XeEk4zZycuA==}
+ '@typescript-eslint/parser@5.62.0':
+ resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -2313,12 +2286,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@5.57.1':
- resolution: {integrity: sha512-N/RrBwEUKMIYxSKl0oDK5sFVHd6VI7p9K5MyUlVYAY6dyNb/wHUqndkTd3XhpGlXgnQsBkRZuu4f9kAHghvgPw==}
+ '@typescript-eslint/scope-manager@5.62.0':
+ resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@typescript-eslint/type-utils@5.57.1':
- resolution: {integrity: sha512-/RIPQyx60Pt6ga86hKXesXkJ2WOS4UemFrmmq/7eOyiYjYv/MUSHPlkhU6k9T9W1ytnTJueqASW+wOmW4KrViw==}
+ '@typescript-eslint/type-utils@5.62.0':
+ resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -2327,12 +2300,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@5.57.1':
- resolution: {integrity: sha512-bSs4LOgyV3bJ08F5RDqO2KXqg3WAdwHCu06zOqcQ6vqbTJizyBhuh1o1ImC69X4bV2g1OJxbH71PJqiO7Y1RuA==}
+ '@typescript-eslint/types@5.62.0':
+ resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@typescript-eslint/typescript-estree@5.57.1':
- resolution: {integrity: sha512-A2MZqD8gNT0qHKbk2wRspg7cHbCDCk2tcqt6ScCFLr5Ru8cn+TCfM786DjPhqwseiS+PrYwcXht5ztpEQ6TFTw==}
+ '@typescript-eslint/typescript-estree@5.62.0':
+ resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -2340,43 +2313,47 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@5.57.1':
- resolution: {integrity: sha512-kN6vzzf9NkEtawECqze6v99LtmDiUJCVpvieTFA1uL7/jDghiJGubGZ5csicYHU1Xoqb3oH/R5cN5df6W41Nfg==}
+ '@typescript-eslint/utils@5.62.0':
+ resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- '@typescript-eslint/visitor-keys@5.57.1':
- resolution: {integrity: sha512-RjQrAniDU0CEk5r7iphkm731zKlFiUjvcBS2yHAg8WWqFMCaCrD0rKEVOMUyMMcbGPZ0bPp56srkGWrgfZqLRA==}
+ '@typescript-eslint/visitor-keys@5.62.0':
+ resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@vendia/serverless-express@4.10.1':
- resolution: {integrity: sha512-8FM/GnQ8bbp1fynAWLGzNIy3Hyhoevixwh2Aj8qBPpw7rkbWZ1I7RC2XhZZaTZo/1JTDlff4cDDmkgY0CzUV7g==}
+ '@ungap/structured-clone@1.2.0':
+ resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+
+ '@vendia/serverless-express@4.12.6':
+ resolution: {integrity: sha512-ePsIPk3VQwgm5nh/JGBtTKQs5ZOF7REjHxC+PKk/CHvhlKQkJuUU365uPOlxuLJhC+BAefDznDRReWxpnKjmYg==}
engines: {node: '>=12'}
- '@vitejs/plugin-react@4.0.4':
- resolution: {integrity: sha512-7wU921ABnNYkETiMaZy7XqpueMnpu5VxvVps13MjmCo+utBdD79sZzrApHawHtVX66cCJQQTXFcjH0y9dSUK8g==}
+ '@vitejs/plugin-react@4.3.3':
+ resolution: {integrity: sha512-NooDe9GpHGqNns1i8XDERg0Vsg5SSYRhRxxyTGogUdkdNt47jal+fbuYi+Yfq6pzRCKXyoPcWisfxE6RIM3GKA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^4.2.0
+ vite: ^4.2.0 || ^5.0.0
- '@vitest/expect@0.34.4':
- resolution: {integrity: sha512-XlMKX8HyYUqB8dsY8Xxrc64J2Qs9pKMt2Z8vFTL4mBWXJsg4yoALHzJfDWi8h5nkO4Zua4zjqtapQ/IluVkSnA==}
+ '@vitest/expect@0.34.6':
+ resolution: {integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==}
- '@vitest/runner@0.34.4':
- resolution: {integrity: sha512-hwwdB1StERqUls8oV8YcpmTIpVeJMe4WgYuDongVzixl5hlYLT2G8afhcdADeDeqCaAmZcSgLTLtqkjPQF7x+w==}
+ '@vitest/runner@0.34.6':
+ resolution: {integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==}
- '@vitest/snapshot@0.34.4':
- resolution: {integrity: sha512-GCsh4coc3YUSL/o+BPUo7lHQbzpdttTxL6f4q0jRx2qVGoYz/cyTRDJHbnwks6TILi6560bVWoBpYC10PuTLHw==}
+ '@vitest/snapshot@0.34.6':
+ resolution: {integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==}
- '@vitest/spy@0.34.4':
- resolution: {integrity: sha512-PNU+fd7DUPgA3Ya924b1qKuQkonAW6hL7YUjkON3wmBwSTIlhOSpy04SJ0NrRsEbrXgMMj6Morh04BMf8k+w0g==}
+ '@vitest/spy@0.34.6':
+ resolution: {integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==}
- '@vitest/utils@0.34.4':
- resolution: {integrity: sha512-yR2+5CHhp/K4ySY0Qtd+CAL9f5Yh1aXrKfAT42bq6CtlGPh92jIDDDSg7ydlRow1CP+dys4TrOrbELOyNInHSg==}
+ '@vitest/utils@0.34.6':
+ resolution: {integrity: sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A==}
abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
+ deprecated: Use your platform's native atob() and btoa() methods instead
abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
@@ -2390,17 +2367,12 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@8.2.0:
- resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
- engines: {node: '>=0.4.0'}
-
- acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
+ acorn-walk@8.3.4:
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
- hasBin: true
- acorn@8.8.2:
- resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -2412,10 +2384,6 @@ packages:
resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
engines: {node: '>= 14'}
- aggregate-error@3.1.0:
- resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
- engines: {node: '>=8'}
-
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
@@ -2423,22 +2391,18 @@ packages:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
- ansi-escapes@4.3.2:
- resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
- engines: {node: '>=8'}
+ ansi-escapes@5.0.0:
+ resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==}
+ engines: {node: '>=12'}
ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
- ansi-styles@3.2.1:
- resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
- engines: {node: '>=4'}
-
ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
@@ -2464,40 +2428,57 @@ packages:
aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
+ aria-query@5.3.2:
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ engines: {node: '>= 0.4'}
+
arktype@1.0.14-alpha:
resolution: {integrity: sha512-theD5K4QrYCWMtQ52Masj169IgtMJ8Argld/MBS4lotEwR3b+GzfBvsqVJ1OIKhJDTdES02FLQTjcfRe00//mA==}
+ array-buffer-byte-length@1.0.1:
+ resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
+ engines: {node: '>= 0.4'}
+
array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- array-includes@3.1.6:
- resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
+ array-includes@3.1.8:
+ resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- array.prototype.flat@1.3.1:
- resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
+ array.prototype.findlast@1.2.5:
+ resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
engines: {node: '>= 0.4'}
- array.prototype.flatmap@1.3.1:
- resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
+ array.prototype.findlastindex@1.2.5:
+ resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
engines: {node: '>= 0.4'}
- array.prototype.tosorted@1.1.1:
- resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
+ array.prototype.flat@1.3.2:
+ resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
+ engines: {node: '>= 0.4'}
+
+ array.prototype.flatmap@1.3.2:
+ resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
+ engines: {node: '>= 0.4'}
+
+ array.prototype.tosorted@1.1.4:
+ resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
+ engines: {node: '>= 0.4'}
+
+ arraybuffer.prototype.slice@1.0.3:
+ resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ engines: {node: '>= 0.4'}
assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
- ast-types-flow@0.0.7:
- resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
-
- astral-regex@2.0.0:
- resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
- engines: {node: '>=8'}
+ ast-types-flow@0.0.8:
+ resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -2506,8 +2487,12 @@ packages:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
- aws-cdk-lib@2.121.1:
- resolution: {integrity: sha512-wrOHDDQqVuH2tRTH7p2LaMPVI3V2bqr8X//Qrhy+hOFA04u2MVetQYev+NgMXPjNzU9IGX2wy1Fs9Y/ntq2sQA==}
+ available-typed-arrays@1.0.7:
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+ engines: {node: '>= 0.4'}
+
+ aws-cdk-lib@2.167.1:
+ resolution: {integrity: sha512-Ck7Wlc37DDx0aZ7Ho1SIQAF+QKwJ479fmIuR490X1gbx4YquQ9ZQ4Jo0XJqgwyneRpAfE3OISDzTB0cyNyiCYA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
constructs: ^10.0.0
@@ -2522,9 +2507,10 @@ packages:
- semver
- table
- yaml
+ - mime-types
- aws-cdk@2.121.1:
- resolution: {integrity: sha512-T8UFuNGDnXNmcHagCGeQ8xQA3zU/o2ENuyGXO/ho+U3KyYs7tnWIr++ovrp2FvhiBpmBv6SuKiueBA6OW7utBw==}
+ aws-cdk@2.167.1:
+ resolution: {integrity: sha512-GOFe5hj7xi7i7aqkaQ2PT1jmar+Ip+qNpA7hJoH4anz98rthcl4N2X01CdHiEc61/0urobwl5358xAZIhMd21g==}
engines: {node: '>= 14.15.0'}
hasBin: true
@@ -2536,16 +2522,17 @@ packages:
resolution: {integrity: sha512-GoLwk2SuG9A6eWgc1mGmm548dklheDmkeptHRw2RhCvq2GZqlc4AzStFUjUURy4O4NQmd2ZiQIoeseue4RwurA==}
engines: {node: '>= 10.0.0'}
- aws-sdk@2.1550.0:
- resolution: {integrity: sha512-abkbOeaL7iV085UqO8Y7/Ep7VYONK32chhKejhMbPYSqTp2YgNeqOSQfSaVZWeWCwqJxujEyoXFGTNgTt46D0g==}
+ aws-sdk@2.1692.0:
+ resolution: {integrity: sha512-x511uiJ/57FIsbgUe5csJ13k3uzu25uWQE+XqfBis/sB0SFoiElJWXRkgEAUh0U6n40eT3ay5Ue4oPkRMu1LYw==}
engines: {node: '>= 10.0.0'}
- axe-core@4.6.3:
- resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==}
+ axe-core@4.10.2:
+ resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
engines: {node: '>=4'}
- axobject-query@3.1.1:
- resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
+ axobject-query@4.1.0:
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
+ engines: {node: '>= 0.4'}
babel-plugin-macros@3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
@@ -2568,8 +2555,8 @@ packages:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- body-parser@1.20.1:
- resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
+ body-parser@1.20.3:
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
bowser@2.11.0:
@@ -2581,24 +2568,15 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- braces@3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.21.10:
- resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserslist@4.21.5:
- resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
- bson@5.3.0:
- resolution: {integrity: sha512-ukmCZMneMlaC5ebPHXIkP8YJzNl5DC41N5MAIvKDqLggdao342t4McltoJBQfQya/nHBWAcSsYRqlXPoQkTJag==}
- engines: {node: '>=14.20.1'}
-
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -2613,8 +2591,9 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- call-bind@1.0.2:
- resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
+ call-bind@1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ engines: {node: '>= 0.4'}
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
@@ -2624,52 +2603,41 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- caniuse-lite@1.0.30001454:
- resolution: {integrity: sha512-4E63M5TBbgDoA9dQoFRdjL6iAmzTrz3rwYWoKDlvnvyvBxjCZ0rrUoX3THhEMie0/RYuTCeMbeTYLGAWgnLwEg==}
-
- caniuse-lite@1.0.30001532:
- resolution: {integrity: sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw==}
-
- chai@4.3.7:
- resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==}
- engines: {node: '>=4'}
+ caniuse-lite@1.0.30001680:
+ resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==}
- chalk@2.4.2:
- resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+ chai@4.5.0:
+ resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
engines: {node: '>=4'}
chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
+ chalk@5.3.0:
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
change-case@5.4.4:
resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
- chart.js@4.2.1:
- resolution: {integrity: sha512-6YbpQ0nt3NovAgOzbkSSeeAQu/3za1319dPUQTXn9WcOpywM8rGKxJHrhS8V8xEkAlk8YhEfjbuAPfUyp6jIsw==}
- engines: {pnpm: ^7.0.0}
+ chart.js@4.4.6:
+ resolution: {integrity: sha512-8Y406zevUPbbIBA/HRk33khEmQPk5+cxeflWE/2rx1NJsjVWMPw/9mSP9rxHP5eqi6LNoPBVMfZHxbwLSgldYA==}
+ engines: {pnpm: '>=8'}
- check-error@1.0.2:
- resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==}
+ check-error@1.0.3:
+ resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
- classnames@2.3.2:
- resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
-
- clean-stack@2.2.0:
- resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
- engines: {node: '>=6'}
-
- cli-cursor@3.1.0:
- resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
- engines: {node: '>=8'}
+ classnames@2.5.1:
+ resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
- cli-truncate@2.1.0:
- resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
- engines: {node: '>=8'}
+ cli-cursor@4.0.0:
+ resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
cli-truncate@3.1.0:
resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==}
@@ -2683,51 +2651,47 @@ packages:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
- clsx@2.0.0:
- resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
+ clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
- color-convert@1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
-
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- color-name@1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
-
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
colorette@1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
- colorette@2.0.19:
- resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
+ colorette@2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
+ commander@11.0.0:
+ resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==}
+ engines: {node: '>=16'}
+
commander@3.0.2:
resolution: {integrity: sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==}
- commander@9.5.0:
- resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
- engines: {node: ^12.20.0 || >=14}
-
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- concurrently@8.0.1:
- resolution: {integrity: sha512-Sh8bGQMEL0TAmAm2meAXMjcASHZa7V0xXQVDBLknCPa9TPtkY9yYs+0cnGGgfdkW0SV1Mlg+hVGfXcoI8d3MJA==}
+ concurrently@8.2.2:
+ resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==}
engines: {node: ^14.13.0 || >=16.0.0}
hasBin: true
- constructs@10.3.0:
- resolution: {integrity: sha512-vbK8i3rIb/xwZxSpTjz3SagHn1qq9BChLEfy5Hf6fB3/2eFbrwt2n9kHwQcS0CPTRBesreeAcsJfMq2229FnbQ==}
- engines: {node: '>= 16.14.0'}
+ confbox@0.1.8:
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
+
+ constructs@10.4.2:
+ resolution: {integrity: sha512-wsNxBlAott2qg8Zv87q3eYZYgheb9lchtBfjHzzLHtXbttwSrHPs1NNQbBrmbb1YZvYg2+Vh0Dor76w4mFxJkA==}
content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
@@ -2740,11 +2704,14 @@ packages:
convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+ convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- cookie@0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
+ cookie@0.7.1:
+ resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
copy-anything@3.0.5:
@@ -2768,12 +2735,13 @@ packages:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
+ cross-spawn@7.0.5:
+ resolution: {integrity: sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==}
+ engines: {node: '>= 8'}
+
css-line-break@2.1.0:
resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==}
- css-unit-converter@1.1.2:
- resolution: {integrity: sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==}
-
css-vendor@2.0.8:
resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==}
@@ -2787,6 +2755,9 @@ packages:
csstype@3.1.1:
resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
+ csstype@3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+
d3-array@3.2.2:
resolution: {integrity: sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==}
engines: {node: '>=12'}
@@ -2838,15 +2809,27 @@ packages:
resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==}
engines: {node: '>=14'}
- date-arithmetic@4.1.0:
- resolution: {integrity: sha512-QWxYLR5P/6GStZcdem+V1xoto6DMadYWpMXU82ES3/RfR3Wdwr3D0+be7mgOJ+Ov0G9D5Dmb9T17sNLQYj9XOg==}
+ data-view-buffer@1.0.1:
+ resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
+ engines: {node: '>= 0.4'}
+
+ data-view-byte-length@1.0.1:
+ resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
+ engines: {node: '>= 0.4'}
+
+ data-view-byte-offset@1.0.0:
+ resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
+ engines: {node: '>= 0.4'}
+
+ date-arithmetic@4.1.0:
+ resolution: {integrity: sha512-QWxYLR5P/6GStZcdem+V1xoto6DMadYWpMXU82ES3/RfR3Wdwr3D0+be7mgOJ+Ov0G9D5Dmb9T17sNLQYj9XOg==}
- date-fns@2.29.3:
- resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==}
+ date-fns@2.30.0:
+ resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
- dayjs@1.11.7:
- resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==}
+ dayjs@1.11.13:
+ resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -2873,24 +2856,38 @@ packages:
supports-color:
optional: true
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decimal.js-light@2.5.1:
resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
- deep-eql@4.1.3:
- resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ deep-eql@4.1.4:
+ resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
engines: {node: '>=6'}
- deep-equal@2.2.0:
- resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
+ deep-equal@2.2.3:
+ resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
+ engines: {node: '>= 0.4'}
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- define-properties@1.2.0:
- resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
+ define-data-property@1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
+
+ define-properties@1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
delayed-stream@1.0.0:
@@ -2912,8 +2909,8 @@ packages:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- diff-sequences@29.4.3:
- resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==}
+ diff-sequences@29.6.3:
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dir-glob@3.0.1:
@@ -2931,31 +2928,122 @@ packages:
dom-accessibility-api@0.5.16:
resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
- dom-helpers@3.4.0:
- resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==}
-
dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
domexception@4.0.0:
resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
engines: {node: '>=12'}
+ deprecated: Use your platform's native DOMException instead
- dotenv@16.0.3:
- resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
+ dotenv@16.4.5:
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
+ drizzle-kit@0.28.1:
+ resolution: {integrity: sha512-JimOV+ystXTWMgZkLHYHf2w3oS28hxiH1FR0dkmJLc7GHzdGJoJAQtQS5DRppnabsRZwE2U1F6CuezVBgmsBBQ==}
+ hasBin: true
+
+ drizzle-orm@0.36.3:
+ resolution: {integrity: sha512-ffQB7CcyCTvQBK6xtRLMl/Jsd5xFTBs+UTHrgs1hbk68i5TPkbsoCPbKEwiEsQZfq2I7VH632XJpV1g7LS2H9Q==}
+ peerDependencies:
+ '@aws-sdk/client-rds-data': '>=3'
+ '@cloudflare/workers-types': '>=3'
+ '@electric-sql/pglite': '>=0.2.0'
+ '@libsql/client': '>=0.10.0'
+ '@libsql/client-wasm': '>=0.10.0'
+ '@neondatabase/serverless': '>=0.1'
+ '@op-engineering/op-sqlite': '>=2'
+ '@opentelemetry/api': ^1.4.1
+ '@planetscale/database': '>=1'
+ '@prisma/client': '*'
+ '@tidbcloud/serverless': '*'
+ '@types/better-sqlite3': '*'
+ '@types/pg': '*'
+ '@types/react': '>=18'
+ '@types/sql.js': '*'
+ '@vercel/postgres': '>=0.8.0'
+ '@xata.io/client': '*'
+ better-sqlite3: '>=7'
+ bun-types: '*'
+ expo-sqlite: '>=14.0.0'
+ knex: '*'
+ kysely: '*'
+ mysql2: '>=2'
+ pg: '>=8'
+ postgres: '>=3'
+ prisma: '*'
+ react: '>=18'
+ sql.js: '>=1'
+ sqlite3: '>=5'
+ peerDependenciesMeta:
+ '@aws-sdk/client-rds-data':
+ optional: true
+ '@cloudflare/workers-types':
+ optional: true
+ '@electric-sql/pglite':
+ optional: true
+ '@libsql/client':
+ optional: true
+ '@libsql/client-wasm':
+ optional: true
+ '@neondatabase/serverless':
+ optional: true
+ '@op-engineering/op-sqlite':
+ optional: true
+ '@opentelemetry/api':
+ optional: true
+ '@planetscale/database':
+ optional: true
+ '@prisma/client':
+ optional: true
+ '@tidbcloud/serverless':
+ optional: true
+ '@types/better-sqlite3':
+ optional: true
+ '@types/pg':
+ optional: true
+ '@types/react':
+ optional: true
+ '@types/sql.js':
+ optional: true
+ '@vercel/postgres':
+ optional: true
+ '@xata.io/client':
+ optional: true
+ better-sqlite3:
+ optional: true
+ bun-types:
+ optional: true
+ expo-sqlite:
+ optional: true
+ knex:
+ optional: true
+ kysely:
+ optional: true
+ mysql2:
+ optional: true
+ pg:
+ optional: true
+ postgres:
+ optional: true
+ prisma:
+ optional: true
+ react:
+ optional: true
+ sql.js:
+ optional: true
+ sqlite3:
+ optional: true
+
eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.4.300:
- resolution: {integrity: sha512-tHLIBkKaxvG6NnDWuLgeYrz+LTwAnApHm2R3KBNcRrFn0qLmTrqQeB4X4atfN6YJbkOOOSdRBeQ89OfFUelnEQ==}
-
- electron-to-chromium@1.4.514:
- resolution: {integrity: sha512-M8LVncPt1Xaw1XLxws6EoJCmY41RXLk87tq6PHvSHDyTYWla3CrEgGlbhC79e8LHyvQ2JTDXx//xzgSixNYcUQ==}
+ electron-to-chromium@1.5.62:
+ resolution: {integrity: sha512-t8c+zLmJHa9dJy96yBZRXGQYoiCEnHYgFwn1asvSPZSUdVxnB62A4RASd7k41ytG3ErFBA0TpHlKg9D9SQBmLg==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -2967,12 +3055,16 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
+
enhanced-resolve@5.15.1:
resolution: {integrity: sha512-3d3JRbwsCLJsYgvb6NuWEG44jjPSOMuS73L/6+7BZuoKm3W+qXnSoIYVHi8dG7Qcg4inAY4jbzkZ7MnskePeDg==}
engines: {node: '>=10.13.0'}
- entities@4.4.0:
- resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
+ entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
envalid@7.3.1:
@@ -2982,24 +3074,45 @@ packages:
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- es-abstract@1.21.1:
- resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==}
+ es-abstract@1.23.5:
+ resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==}
+ engines: {node: '>= 0.4'}
+
+ es-define-property@1.0.0:
+ resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
+ engines: {node: '>= 0.4'}
+
+ es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
- es-set-tostringtag@2.0.1:
- resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
+ es-iterator-helpers@1.2.0:
+ resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
+ engines: {node: '>= 0.4'}
+
+ es-object-atoms@1.0.0:
+ resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
- es-shim-unscopables@1.0.0:
- resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
+ es-set-tostringtag@2.0.3:
+ resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
+ engines: {node: '>= 0.4'}
+
+ es-shim-unscopables@1.0.2:
+ resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
es-to-primitive@1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
+ esbuild-register@3.6.0:
+ resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
+ peerDependencies:
+ esbuild: '>=0.12 <1'
+
esbuild@0.17.19:
resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
engines: {node: '>=12'}
@@ -3010,39 +3123,46 @@ packages:
engines: {node: '>=12'}
hasBin: true
- escalade@3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ esbuild@0.19.12:
+ resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- escape-string-regexp@1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
- engines: {node: '>=0.8.0'}
-
escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- eslint-config-prettier@8.8.0:
- resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==}
+ eslint-config-prettier@8.10.0:
+ resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
- eslint-import-resolver-node@0.3.7:
- resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
+ eslint-import-resolver-node@0.3.9:
+ resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
- eslint-import-resolver-typescript@3.6.1:
- resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
+ eslint-import-resolver-typescript@3.6.3:
+ resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
+ eslint-plugin-import-x: '*'
+ peerDependenciesMeta:
+ eslint-plugin-import:
+ optional: true
+ eslint-plugin-import-x:
+ optional: true
- eslint-module-utils@2.7.4:
- resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
+ eslint-module-utils@2.12.0:
+ resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -3062,58 +3182,76 @@ packages:
eslint-import-resolver-webpack:
optional: true
- eslint-plugin-import@2.27.5:
- resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
+ eslint-plugin-import@2.31.0:
+ resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-jsx-a11y@6.7.1:
- resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
+ eslint-plugin-jsx-a11y@6.10.2:
+ resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
engines: {node: '>=4.0'}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
- eslint-plugin-react-hooks@4.6.0:
- resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
+ eslint-plugin-react-hooks@4.6.2:
+ resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react@7.32.2:
- resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
+ eslint-plugin-react@7.37.2:
+ resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
engines: {node: '>=4'}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
- eslint-scope@7.1.1:
- resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==}
+ eslint-scope@7.2.2:
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-visitor-keys@3.4.0:
- resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==}
+ eslint-scope@8.2.0:
+ resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint-visitor-keys@3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint@8.37.0:
- resolution: {integrity: sha512-NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw==}
+ eslint-visitor-keys@4.2.0:
+ resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint@8.57.1:
+ resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
- eslint@8.38.0:
- resolution: {integrity: sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint@9.15.0:
+ resolution: {integrity: sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
+ peerDependencies:
+ jiti: '*'
+ peerDependenciesMeta:
+ jiti:
+ optional: true
- espree@9.5.1:
- resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==}
+ espree@10.3.0:
+ resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ espree@9.6.1:
+ resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
esprima@4.0.1:
@@ -3121,8 +3259,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- esquery@1.4.2:
- resolution: {integrity: sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==}
+ esquery@1.6.0:
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
esrecurse@4.3.0:
@@ -3151,6 +3289,9 @@ packages:
eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+ eventemitter3@5.0.1:
+ resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+
events@1.1.1:
resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==}
engines: {node: '>=0.4.x'}
@@ -3159,23 +3300,20 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- execa@6.1.0:
- resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ execa@7.2.0:
+ resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
- express@4.18.2:
- resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
+ express@4.21.1:
+ resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==}
engines: {node: '>= 0.10.0'}
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- fast-equals@4.0.3:
- resolution: {integrity: sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==}
-
- fast-glob@3.2.12:
- resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
- engines: {node: '>=8.6.0'}
+ fast-equals@5.0.1:
+ resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==}
+ engines: {node: '>=6.0.0'}
fast-glob@3.3.2:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
@@ -3187,12 +3325,8 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fast-xml-parser@4.1.2:
- resolution: {integrity: sha512-CDYeykkle1LiA/uqQyNwYpFbyF6Axec6YapmpUP+/RHWIoR1zKjocdvNaTsxCxZzQ6v9MLXaSYm9Qq0thv0DHg==}
- hasBin: true
-
- fast-xml-parser@4.2.5:
- resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==}
+ fast-xml-parser@4.4.1:
+ resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
hasBin: true
fastq@1.15.0:
@@ -3202,15 +3336,19 @@ packages:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
+ file-entry-cache@8.0.0:
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
+
file-saver@2.0.5:
resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==}
- fill-range@7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- finalhandler@1.2.0:
- resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ finalhandler@1.3.1:
+ resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
find-root@1.1.0:
@@ -3220,12 +3358,16 @@ packages:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
- flat-cache@3.0.4:
- resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
+ flat-cache@3.2.0:
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
- flatted@3.2.7:
- resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
+ flat-cache@4.0.1:
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
+ engines: {node: '>=16'}
+
+ flatted@3.3.1:
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
@@ -3250,11 +3392,16 @@ packages:
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
- function-bind@1.1.1:
- resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+ fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+
+ function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- function.prototype.name@1.1.5:
- resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
+ function.prototype.name@1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
engines: {node: '>= 0.4'}
functions-have-names@1.2.3:
@@ -3271,22 +3418,23 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-func-name@2.0.0:
- resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
+ get-func-name@2.0.2:
+ resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- get-intrinsic@1.2.0:
- resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
+ get-intrinsic@1.2.4:
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ engines: {node: '>= 0.4'}
get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- get-symbol-description@1.0.0:
- resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
+ get-symbol-description@1.0.2:
+ resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.6.2:
- resolution: {integrity: sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==}
+ get-tsconfig@4.8.1:
+ resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
@@ -3301,6 +3449,7 @@ packages:
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ deprecated: Glob versions prior to v9 are no longer supported
globalize@0.1.1:
resolution: {integrity: sha512-5e01v8eLGfuQSOvx2MsDMOWS0GFtCx1wPzQSmcHw4hkxFzrQDBO3Xwg/m8Hr/7qXMrHeOIE29qWVzyv06u1TZA==}
@@ -3309,12 +3458,16 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- globals@13.20.0:
- resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
+ globals@13.24.0:
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
- globalthis@1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ globals@14.0.0:
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
+
+ globalthis@1.0.4:
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
globby@11.1.0:
@@ -3327,8 +3480,8 @@ packages:
graceful-fs@4.2.10:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
- grapheme-splitter@1.0.4:
- resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
+ graphemer@1.4.0:
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
@@ -3341,11 +3494,11 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-property-descriptors@1.0.0:
- resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
+ has-property-descriptors@1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ has-proto@1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
has-symbols@1.0.3:
@@ -3356,9 +3509,13 @@ packages:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
- has@1.0.3:
- resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
- engines: {node: '>= 0.4.0'}
+ has-tostringtag@1.0.2:
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+ engines: {node: '>= 0.4'}
+
+ hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
@@ -3387,9 +3544,9 @@ packages:
resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
engines: {node: '>= 14'}
- human-signals@3.0.1:
- resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==}
- engines: {node: '>=12.20.0'}
+ human-signals@4.3.1:
+ resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
+ engines: {node: '>=14.18.0'}
husky@8.0.3:
resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
@@ -3407,8 +3564,8 @@ packages:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
- ics@3.1.0:
- resolution: {integrity: sha512-O48TZKyLYagLlXoZwDmjetXc6SoT54wFkTu2MEYe7zse8kL+C/dgSynYCjRG1OTAv3iHtGtG0PWKG81LbcrKFA==}
+ ics@3.8.1:
+ resolution: {integrity: sha512-UqQlfkajfhrS4pUGQfGIJMYz/Jsl/ob3LqcfEhUmLbwumg+ZNkU0/6S734Vsjq3/FYNpEcZVKodLBoe+zBM69g==}
ieee754@1.1.13:
resolution: {integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==}
@@ -3419,8 +3576,8 @@ packages:
ignore-by-default@1.0.1:
resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==}
- ignore@5.2.4:
- resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
import-fresh@3.3.0:
@@ -3431,22 +3588,19 @@ packages:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- indent-string@4.0.0:
- resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
- engines: {node: '>=8'}
-
index-to-position@0.1.2:
resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==}
engines: {node: '>=18'}
inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- internal-slot@1.0.5:
- resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
+ internal-slot@1.0.7:
+ resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
internmap@2.0.3:
@@ -3456,9 +3610,6 @@ packages:
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
- ip@2.0.0:
- resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
-
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
@@ -3467,12 +3618,17 @@ packages:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
- is-array-buffer@3.0.1:
- resolution: {integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==}
+ is-array-buffer@3.0.4:
+ resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ engines: {node: '>= 0.4'}
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ is-async-function@2.0.0:
+ resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
+ engines: {node: '>= 0.4'}
+
is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
@@ -3484,12 +3640,20 @@ packages:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
+ is-bun-module@1.2.1:
+ resolution: {integrity: sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==}
+
is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- is-core-module@2.11.0:
- resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
+ is-core-module@2.15.1:
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
+ engines: {node: '>= 0.4'}
+
+ is-data-view@1.0.1:
+ resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
+ engines: {node: '>= 0.4'}
is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
@@ -3499,6 +3663,9 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
+ is-finalizationregistry@1.0.2:
+ resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
+
is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
@@ -3518,11 +3685,12 @@ packages:
is-in-browser@1.1.3:
resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==}
- is-map@2.0.2:
- resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
+ is-map@2.0.3:
+ resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
+ engines: {node: '>= 0.4'}
- is-negative-zero@2.0.2:
- resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
+ is-negative-zero@2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
is-number-object@1.0.7:
@@ -3544,11 +3712,13 @@ packages:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
- is-set@2.0.2:
- resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
+ is-set@2.0.3:
+ resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
+ engines: {node: '>= 0.4'}
- is-shared-array-buffer@1.0.2:
- resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ is-shared-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ engines: {node: '>= 0.4'}
is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
@@ -3566,14 +3736,20 @@ packages:
resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
engines: {node: '>= 0.4'}
- is-weakmap@2.0.1:
- resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
+ is-typed-array@1.1.13:
+ resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ engines: {node: '>= 0.4'}
+
+ is-weakmap@2.0.2:
+ resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
+ engines: {node: '>= 0.4'}
is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
- is-weakset@2.0.2:
- resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
+ is-weakset@2.0.3:
+ resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
+ engines: {node: '>= 0.4'}
is-what@4.1.15:
resolution: {integrity: sha512-uKua1wfy3Yt+YqsD6mTUEa2zSi3G1oPlqTflgaPJ7z63vUGN5pxFpnQfeSLMFnJDEsdvOtkp1rUWkYjB4YfhgA==}
@@ -3588,6 +3764,10 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ iterator.prototype@1.1.3:
+ resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
+ engines: {node: '>= 0.4'}
+
jmespath@0.16.0:
resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==}
engines: {node: '>= 0.6.0'}
@@ -3596,9 +3776,6 @@ packages:
resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==}
engines: {node: '>=0.10.0'}
- js-sdsl@4.3.0:
- resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==}
-
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -3619,11 +3796,14 @@ packages:
canvas:
optional: true
- jsesc@2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
hasBin: true
+ json-buffer@3.0.1:
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
@@ -3645,9 +3825,6 @@ packages:
engines: {node: '>=6'}
hasBin: true
- jsonc-parser@3.2.0:
- resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
-
jss-plugin-camel-case@10.10.0:
resolution: {integrity: sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw==}
@@ -3676,15 +3853,19 @@ packages:
resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
engines: {node: '>=4.0'}
- kareem@2.5.1:
- resolution: {integrity: sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==}
- engines: {node: '>=12.0.0'}
+ jsx-ast-utils@3.3.5:
+ resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
+ engines: {node: '>=4.0'}
- language-subtag-registry@0.3.22:
- resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
+ keyv@4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
- language-tags@1.0.5:
- resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
+ language-subtag-registry@0.3.23:
+ resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
+
+ language-tags@1.0.9:
+ resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
+ engines: {node: '>=0.10'}
leaflet-routing-machine@3.2.12:
resolution: {integrity: sha512-HLde58G1YtD9xSIzZavJ6BPABZaV1hHeGst8ouhzuxmSC3s32NVtADT+njbIUMW1maHRCrsgTk/E4hz5QH7FrA==}
@@ -3692,28 +3873,28 @@ packages:
leaflet.locatecontrol@0.79.0:
resolution: {integrity: sha512-h64QIHFkypYdr90lkSfjKvPvvk8/b8UnP3m9WuoWdp5p2AaCWC0T1NVwyuj4rd5U4fBW3tQt4ppmZ2LceHMIDg==}
- leaflet@1.9.3:
- resolution: {integrity: sha512-iB2cR9vAkDOu5l3HAay2obcUHZ7xwUBBjph8+PGtmW/2lYhbLizWtG7nTeYht36WfOslixQF9D/uSIzhZgGMfQ==}
+ leaflet@1.9.4:
+ resolution: {integrity: sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==}
levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- lilconfig@2.0.6:
- resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==}
+ lilconfig@2.1.0:
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- lint-staged@13.1.2:
- resolution: {integrity: sha512-K9b4FPbWkpnupvK3WXZLbgu9pchUJ6N7TtVZjbaPsoizkqFUDkUReUL25xdrCljJs7uLUF3tZ7nVPeo/6lp+6w==}
- engines: {node: ^14.13.1 || >=16.0.0}
+ lint-staged@13.3.0:
+ resolution: {integrity: sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
- listr2@5.0.7:
- resolution: {integrity: sha512-MD+qXHPmtivrHIDRwPYdfNkrzqDiuaKU/rfBcec3WMyMF3xylQj3jMq344OtvQxz7zaCFViRAeqlr2AFhPvXHw==}
- engines: {node: ^14.13.1 || >=16.0.0}
+ listr2@6.6.1:
+ resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
enquirer: '>= 2.3.0 < 3'
peerDependenciesMeta:
@@ -3740,24 +3921,20 @@ packages:
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- log-update@4.0.0:
- resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
- engines: {node: '>=10'}
+ log-update@5.0.1:
+ resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@2.3.6:
- resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==}
+ loupe@2.3.7:
+ resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- lru-cache@6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
-
luxon@3.2.1:
resolution: {integrity: sha512-QrwPArQCNLAKGO/C+ZIilgIuDnEnKx5QYODdDtbFaxzsbZcc/a7WFq7MhsVYgRlwawLtvOUESTlfJ+hc/USqPg==}
engines: {node: '>=12'}
@@ -3766,16 +3943,17 @@ packages:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
- magic-string@0.30.2:
- resolution: {integrity: sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug==}
- engines: {node: '>=12'}
+ magic-string@0.30.12:
+ resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
material-colors@1.2.6:
resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==}
- material-ui-popup-state@5.0.4:
- resolution: {integrity: sha512-QdlKHiKv498UNsH3zpQNJ7SN9RYiEjR5MSJIg+a9gqCp43G0A8fo1r0kmX1qFTLGTfYKgXix5RANJkNTujWtxA==}
+ material-ui-popup-state@5.3.1:
+ resolution: {integrity: sha512-mmx1DsQwF/2cmcpHvS/QkUwOQG2oAM+cDEQU0DaZVYnvwKyTB3AFgu8l1/E+LQFausmzpSJoljwQSZXkNvt7eA==}
+ engines: {node: '>=16'}
peerDependencies:
+ '@mui/material': ^5.0.0 || ^6.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
media-typer@0.3.0:
@@ -3785,11 +3963,8 @@ packages:
memoize-one@6.0.0:
resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
- memory-pager@1.5.0:
- resolution: {integrity: sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==}
-
- merge-descriptors@1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ merge-descriptors@1.0.3:
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -3806,6 +3981,10 @@ packages:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
+
mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
@@ -3837,62 +4016,17 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- mlly@1.4.0:
- resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==}
+ mlly@1.7.3:
+ resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
mnemonist@0.38.3:
resolution: {integrity: sha512-2K9QYubXx/NAjv4VLq1d1Ly8pWNC5L3BrixtdkyTegXWJIqY+zLNDhhX/A+ZwWt70tB1S8H4BE8FLYEFyNoOBw==}
- moment-timezone@0.5.43:
- resolution: {integrity: sha512-72j3aNyuIsDxdF1i7CEgV2FfxM1r6aaqJyLB2vwb33mXYyoyLly+F1zbWqhA3/bVIoJ4szlUoMbUnVdid32NUQ==}
-
- moment@2.29.4:
- resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==}
-
- mongodb-connection-string-url@2.6.0:
- resolution: {integrity: sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==}
-
- mongodb@5.0.1:
- resolution: {integrity: sha512-KpjtY+NWFmcic6UDYEdfn768ZTuKyv7CRaui7ZSd6q/0/o1AURMC7KygTUwB1Cl8V10Pe5NiP+Y2eBMCDs/ygQ==}
- engines: {node: '>=14.20.1'}
- peerDependencies:
- '@aws-sdk/credential-providers': ^3.201.0
- mongodb-client-encryption: ^2.3.0
- snappy: ^7.2.2
- peerDependenciesMeta:
- '@aws-sdk/credential-providers':
- optional: true
- mongodb-client-encryption:
- optional: true
- snappy:
- optional: true
-
- mongodb@5.3.0:
- resolution: {integrity: sha512-Wy/sbahguL8c3TXQWXmuBabiLD+iVmz+tOgQf+FwkCjhUIorqbAxRbbz00g4ZoN4sXIPwpAlTANMaGRjGGTikQ==}
- engines: {node: '>=14.20.1'}
- peerDependencies:
- '@aws-sdk/credential-providers': ^3.201.0
- mongodb-client-encryption: '>=2.3.0 <3'
- snappy: ^7.2.2
- peerDependenciesMeta:
- '@aws-sdk/credential-providers':
- optional: true
- mongodb-client-encryption:
- optional: true
- snappy:
- optional: true
-
- mongoose@7.1.0:
- resolution: {integrity: sha512-shoo9z/7o96Ojx69wpJn65+EC+Mt3q1SWTducW+F2Y4ieCXo0lZwpCZedgC841MIvJ7V8o6gmzoN1NfcnOTOuw==}
- engines: {node: '>=14.0.0'}
-
- mpath@0.9.0:
- resolution: {integrity: sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==}
- engines: {node: '>=4.0.0'}
+ moment-timezone@0.5.46:
+ resolution: {integrity: sha512-ZXm9b36esbe7OmdABqIWJuBBiLLwAjrN7CE+7sYdCCx82Nabt1wHDj8TVseS59QIlfFPbOoiBPm6ca9BioG4hw==}
- mquery@5.0.0:
- resolution: {integrity: sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==}
- engines: {node: '>=14.0.0'}
+ moment@2.30.1:
+ resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -3903,16 +4037,13 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- nanoclone@0.2.1:
- resolution: {integrity: sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==}
-
nanoid@3.3.4:
resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@3.3.6:
- resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
+ nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -3935,11 +4066,8 @@ packages:
encoding:
optional: true
- node-releases@2.0.10:
- resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
-
- node-releases@2.0.13:
- resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
nodemon@2.0.22:
resolution: {integrity: sha512-B8YqaKMmyuCO7BowF1Z1/mkPqLk6cs/l63Ojtd6otKjMx47Dq1utxfRxcavH1I7VSaL8n5BUaoutadnsX3AAVQ==}
@@ -3968,22 +4096,23 @@ packages:
'@emotion/styled':
optional: true
- npm-run-path@5.1.0:
- resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
+ npm-run-path@5.3.0:
+ resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- nwsapi@2.2.7:
- resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
+ nwsapi@2.2.13:
+ resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==}
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- object-inspect@1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
+ object-inspect@1.13.3:
+ resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ engines: {node: '>= 0.4'}
- object-is@1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
+ object-is@1.1.6:
+ resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
engines: {node: '>= 0.4'}
object-keys@1.1.1:
@@ -3994,19 +4123,24 @@ packages:
resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
- object.entries@1.1.6:
- resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
+ object.assign@4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ engines: {node: '>= 0.4'}
+
+ object.entries@1.1.8:
+ resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
engines: {node: '>= 0.4'}
- object.fromentries@2.0.6:
- resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
+ object.fromentries@2.0.8:
+ resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
engines: {node: '>= 0.4'}
- object.hasown@1.1.2:
- resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
+ object.groupby@1.0.3:
+ resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
+ engines: {node: '>= 0.4'}
- object.values@1.1.6:
- resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
+ object.values@1.2.0:
+ resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
obliterator@1.6.1:
@@ -4033,8 +4167,8 @@ packages:
peerDependencies:
typescript: ^5.x
- optionator@0.9.1:
- resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
osrm-text-instructions@0.13.4:
@@ -4052,10 +4186,6 @@ packages:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
- p-map@4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
-
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -4094,33 +4224,37 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-to-regexp@0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ path-to-regexp@0.1.10:
+ resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- pathe@1.1.1:
- resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
+ pathe@1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
pathval@1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
- picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
pidtree@0.6.0:
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
engines: {node: '>=0.10'}
hasBin: true
- pkg-types@1.0.3:
- resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
+ pkg-types@1.2.1:
+ resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
@@ -4129,24 +4263,29 @@ packages:
popper.js@1.16.1-lts:
resolution: {integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==}
- postcss-value-parser@3.3.1:
- resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==}
+ possible-typed-array-names@1.0.0:
+ resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ engines: {node: '>= 0.4'}
- postcss@8.4.29:
- resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==}
+ postcss@8.4.49:
+ resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
+ postgres@3.4.5:
+ resolution: {integrity: sha512-cDWgoah1Gez9rN3H4165peY9qfpEo+SA61oQv65O3cRUE1pOEoJWwddwcqKE8XZYjbblOJlYDlLV4h67HrEVDg==}
+ engines: {node: '>=12'}
+
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prettier@2.8.4:
- resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==}
+ prettier@2.8.8:
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.1.0:
- resolution: {integrity: sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==}
+ prettier@3.3.3:
+ resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
engines: {node: '>=14'}
hasBin: true
@@ -4154,22 +4293,22 @@ packages:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- pretty-format@29.6.2:
- resolution: {integrity: sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==}
+ pretty-format@29.7.0:
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
- property-expr@2.0.5:
- resolution: {integrity: sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==}
+ property-expr@2.0.6:
+ resolution: {integrity: sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==}
proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
- psl@1.9.0:
- resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
+ psl@1.10.0:
+ resolution: {integrity: sha512-KSKHEbjAnpUuAUserOq0FxGXCUrzC3WniuSJhvdbs102rL55266ZcHBqLWOsG30spQMlPdpy7icATiAQehg/iA==}
pstree.remy@1.1.8:
resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==}
@@ -4177,12 +4316,12 @@ packages:
punycode@1.3.2:
resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
- punycode@2.3.0:
- resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- qs@6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
querystring@0.2.0:
@@ -4200,12 +4339,12 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- raw-body@2.5.1:
- resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
+ raw-body@2.5.2:
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
- react-big-calendar@1.6.7:
- resolution: {integrity: sha512-Xg6UGhDHjlhI16YaKtVVAIUwbxOHKdC0+ddcJhYsNOqT6xyRsDPbX3JfpRJaqGuKLpFPVv6vuOQUowXDNI8xbg==}
+ react-big-calendar@1.15.0:
+ resolution: {integrity: sha512-RNiPH1Vh/fpJpNIValpl6lHvuEroWkDvS8z3YW2QpmGUuAk6a0Q1uEujlQTd/gQrpKAaBA4Gyc1mzCdNIQ7DZQ==}
peerDependencies:
react: ^16.14.0 || ^17 || ^18
react-dom: ^16.14.0 || ^17 || ^18
@@ -4221,13 +4360,13 @@ packages:
peerDependencies:
react: '*'
- react-dom@18.2.0:
- resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
+ react-dom@18.3.1:
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
- react: ^18.2.0
+ react: ^18.3.1
- react-ga4@2.0.0:
- resolution: {integrity: sha512-WHi98hMunzh4ngRdNil8NN6Qly3ZZUkprhbgSqA+NFzovp8zqpYV3jcbKL9FnMdeBQHGhv8AVNCT2oFEE+EFXA==}
+ react-ga4@2.1.0:
+ resolution: {integrity: sha512-ZKS7PGNFqqMd3PJ6+C2Jtz/o1iU9ggiy8Y8nUeksgVuvNISbmrQtJiZNvC/TjDsqD0QlU5Wkgs7i+w9+OjHhhQ==}
react-input-mask@2.0.4:
resolution: {integrity: sha512-1hwzMr/aO9tXfiroiVCx5EtKohKwLk/NT8QlJXHQ4N+yJJFyUuMT+zfTpLBwX/lK3PkuMlievIffncpMZ3HGRQ==}
@@ -4241,14 +4380,14 @@ packages:
react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- react-is@18.2.0:
- resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ react-is@18.3.1:
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
- react-lazyload@3.2.0:
- resolution: {integrity: sha512-zJlrG8QyVZz4+xkYZH5v1w3YaP5wEFaYSUWC4CT9UXfK75IfRAIEdnyIUF+dXr3kX2MOtL1lUaZmaQZqrETwgw==}
+ react-lazyload@3.2.1:
+ resolution: {integrity: sha512-oDLlLOI/rRLY0fUh/HYFCy4CqCe7zdJXv6oTl2pC30tN3ezWxvwcdHYfD/ZkrGOMOOT5pO7hNLSvg7WsmAij1w==}
peerDependencies:
- react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- react-dom: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+ react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
react-leaflet@4.2.1:
resolution: {integrity: sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==}
@@ -4266,55 +4405,42 @@ packages:
react: '>=16.3.0'
react-dom: '>=16.3.0'
- react-refresh@0.14.0:
- resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
+ react-refresh@0.14.2:
+ resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
- react-resize-detector@7.1.2:
- resolution: {integrity: sha512-zXnPJ2m8+6oq9Nn8zsep/orts9vQv3elrpA+R8XTcW7DVVUJ9vwDwMXaBtykAYjMnkCIaOoK9vObyR7ZgFNlOw==}
- peerDependencies:
- react: ^16.0.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
-
- react-router-dom@6.8.1:
- resolution: {integrity: sha512-67EXNfkQgf34P7+PSb6VlBuaacGhkKn3kpE51+P6zYSG2kiRoumXEL6e27zTa9+PGF2MNXbgIUHTVlleLbIcHQ==}
- engines: {node: '>=14'}
+ react-router-dom@6.28.0:
+ resolution: {integrity: sha512-kQ7Unsl5YdyOltsPGl31zOjLrDv+m2VcIEcIHqYYD3Lp0UppLjrzcfJqDJwXxFw3TH/yvapbnUvPlAj7Kx5nbg==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
- react-router@6.8.1:
- resolution: {integrity: sha512-Jgi8BzAJQ8MkPt8ipXnR73rnD7EmZ0HFFb7jdQU24TynGW1Ooqin2KVDN9voSC+7xhqbbCd2cjGUepb6RObnyg==}
- engines: {node: '>=14'}
+ react-router@6.28.0:
+ resolution: {integrity: sha512-HrYdIFqdrnhDw0PqG/AKjAqEqM7AvxCz0DQ4h2W8k6nqmc5uRBYDag0SBxx9iYz5G8gnuNVLzUe13wl9eAsXXg==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
- react-smooth@2.0.2:
- resolution: {integrity: sha512-pgqSp1q8rAGtF1bXQE0m3CHGLNfZZh5oA5o1tsPLXRHnKtkujMIJ8Ws5nO1mTySZf1c4vgwlEk+pHi3Ln6eYLw==}
+ react-smooth@4.0.1:
+ resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==}
peerDependencies:
- prop-types: ^15.6.0
- react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
- react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
react-split@2.0.14:
resolution: {integrity: sha512-bKWydgMgaKTg/2JGQnaJPg51T6dmumTWZppFgEbbY0Fbme0F5TuatAScCLaqommbGQQf/ZT1zaejuPDriscISA==}
peerDependencies:
react: '*'
- react-transition-group@2.9.0:
- resolution: {integrity: sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==}
- peerDependencies:
- react: '>=15.0.0'
- react-dom: '>=15.0.0'
-
react-transition-group@4.4.5:
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
react-dom: '>=16.6.0'
- react@18.2.0:
- resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ react@18.3.1:
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
reactcss@1.2.3:
@@ -4329,25 +4455,22 @@ packages:
recharts-scale@0.4.5:
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
- recharts@2.4.3:
- resolution: {integrity: sha512-/hkRHTQShEOKDYd2OlKLIvGA0X9v/XVO/mNeRoDHg0lgFRL2KbGzeqVnStI3mMfORUZ6Hak4JbQ+uDiin1Foqg==}
- engines: {node: '>=12'}
+ recharts@2.13.3:
+ resolution: {integrity: sha512-YDZ9dOfK9t3ycwxgKbrnDlRC4BHdjlY73fet3a0C1+qGMjXVZe6+VXmpOIIhzkje5MMEL8AN4hLIe4AMskBzlA==}
+ engines: {node: '>=14'}
peerDependencies:
- prop-types: ^15.6.0
react: ^16.0.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
- reduce-css-calc@2.1.8:
- resolution: {integrity: sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==}
-
- regenerator-runtime@0.13.11:
- resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
+ reflect.getprototypeof@1.0.6:
+ resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
+ engines: {node: '>= 0.4'}
- regenerator-runtime@0.14.0:
- resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
+ regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- regexp.prototype.flags@1.4.3:
- resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
+ regexp.prototype.flags@1.5.3:
+ resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
engines: {node: '>= 0.4'}
require-directory@2.1.1:
@@ -4371,24 +4494,24 @@ packages:
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- resolve@1.22.1:
- resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
+ resolve@1.22.8:
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
- resolve@2.0.0-next.4:
- resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
+ resolve@2.0.0-next.5:
+ resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
- restore-cursor@3.1.0:
- resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
- engines: {node: '>=8'}
+ restore-cursor@4.0.0:
+ resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- rfdc@1.3.0:
- resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
rifm@0.7.0:
resolution: {integrity: sha512-DSOJTWHD67860I5ojetXdEQRIBvF6YcpNe53j0vn1vp9EUb9N80EiZTxgP+FkDKorWC8PZw052kTF4C1GOivCQ==}
@@ -4397,35 +4520,45 @@ packages:
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rollup@3.29.1:
- resolution: {integrity: sha512-c+ebvQz0VIH4KhhCpDsI+Bik0eT8ZFEVZEYw0cGMVqIP8zc+gnwl7iXCamTw7vzv2MeuZFZfdx5JJIq+ehzDlg==}
+ rollup@3.29.5:
+ resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
+ rollup@4.27.2:
+ resolution: {integrity: sha512-KreA+PzWmk2yaFmZVwe6GB2uBD86nXl86OsDkt1bJS9p3vqWuEQ6HnJJ+j/mZi/q0920P99/MVRlB4L3crpF5w==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
rrweb-cssom@0.6.0:
resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- rxjs@7.8.0:
- resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
+ runes2@1.1.4:
+ resolution: {integrity: sha512-LNPnEDPOOU4ehF71m5JoQyzT2yxwD6ZreFJ7MxZUAoMKNMY1XrAo60H1CUoX5ncSm0rIuKlqn9JZNRrRkNou2g==}
+
+ rxjs@7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+
+ safe-array-concat@1.1.2:
+ resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
+ engines: {node: '>=0.4'}
safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safe-regex-test@1.0.0:
- resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
+ safe-regex-test@1.0.3:
+ resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
+ engines: {node: '>= 0.4'}
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- saslprep@1.0.3:
- resolution: {integrity: sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==}
- engines: {node: '>=6'}
-
sax@1.2.1:
resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==}
@@ -4433,15 +4566,11 @@ packages:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
- scheduler@0.23.0:
- resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
-
- semver@5.7.1:
- resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
- hasBin: true
+ scheduler@0.23.2:
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
- semver@6.3.0:
- resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
+ semver@5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
semver@6.3.1:
@@ -4452,19 +4581,27 @@ packages:
resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
hasBin: true
- semver@7.3.8:
- resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
- send@0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ send@0.19.0:
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ serve-static@1.16.2:
+ resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
+ set-function-length@1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
+
+ set-function-name@2.0.2:
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
+ engines: {node: '>= 0.4'}
+
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
@@ -4479,11 +4616,9 @@ packages:
shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- side-channel@1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
-
- sift@16.0.1:
- resolution: {integrity: sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==}
+ side-channel@1.0.6:
+ resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
+ engines: {node: '>= 0.4'}
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -4499,28 +4634,12 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- slice-ansi@3.0.0:
- resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
- engines: {node: '>=8'}
-
- slice-ansi@4.0.0:
- resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
- engines: {node: '>=10'}
-
slice-ansi@5.0.0:
resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
engines: {node: '>=12'}
- smart-buffer@4.2.0:
- resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
- engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
-
- socks@2.7.1:
- resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
- engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
-
- source-map-js@1.0.2:
- resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
source-map-support@0.5.21:
@@ -4534,11 +4653,8 @@ packages:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- sparse-bitfield@3.0.3:
- resolution: {integrity: sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==}
-
- spawn-command@0.0.2-1:
- resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==}
+ spawn-command@0.0.2:
+ resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==}
split.js@1.6.5:
resolution: {integrity: sha512-mPTnGCiS/RiuTNsVhCm9De9cCAUsrNFFviRbADdKiiV+Kk8HKp/0fWu7Kr8pi3/yBmsqLFHuXGT9UUZ+CNLwFw==}
@@ -4553,15 +4669,15 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- std-env@3.4.0:
- resolution: {integrity: sha512-YqHeQIIQ8r1VtUZOTOyjsAXAsjr369SplZ5rlQaiJTBsvodvPSCME7vuz8pnQltbQ0Cw0lyFo5Q8uyNwYQ58Xw==}
+ std-env@3.8.0:
+ resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
stop-iteration-iterator@1.0.0:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
engines: {node: '>= 0.4'}
- string-argv@0.3.1:
- resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==}
+ string-argv@0.3.2:
+ resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
engines: {node: '>=0.6.19'}
string-width@4.2.3:
@@ -4572,21 +4688,34 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string.prototype.matchall@4.0.8:
- resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
+ string.prototype.includes@2.0.1:
+ resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
+ engines: {node: '>= 0.4'}
+
+ string.prototype.matchall@4.0.11:
+ resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
+ engines: {node: '>= 0.4'}
+
+ string.prototype.repeat@1.0.0:
+ resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
- string.prototype.trimend@1.0.6:
- resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
+ string.prototype.trim@1.2.9:
+ resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
+ engines: {node: '>= 0.4'}
+
+ string.prototype.trimend@1.0.8:
+ resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
- string.prototype.trimstart@1.0.6:
- resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
+ string.prototype.trimstart@1.0.8:
+ resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
+ engines: {node: '>= 0.4'}
strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.0.1:
- resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
+ strip-ansi@7.1.0:
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
strip-bom@3.0.0:
@@ -4607,11 +4736,11 @@ packages:
strnum@1.0.5:
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
- stylis@4.1.3:
- resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==}
+ stylis@4.2.0:
+ resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
- superjson@1.12.3:
- resolution: {integrity: sha512-0j+U70KUtP8+roVPbwfqkyQI7lBt7ETnuA7KXbTDX3mCKiD/4fXs2ldKSMdt0MCfpTwiMxo20yFU3vu6ewETpQ==}
+ superjson@1.13.3:
+ resolution: {integrity: sha512-mJiVjfd2vokfDxsQPOwJ/PtanO87LhpYY88ubI5dUB1Ab58Txbyje3+jpm+/83R/fevaq/107NNhtYBLuoTrFg==}
engines: {node: '>=10'}
supports-color@5.5.0:
@@ -4650,14 +4779,17 @@ packages:
text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- through@2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ tiny-case@1.0.3:
+ resolution: {integrity: sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==}
+
+ tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
- tinybench@2.5.0:
- resolution: {integrity: sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA==}
+ tinybench@2.9.0:
+ resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
@@ -4666,14 +4798,10 @@ packages:
resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==}
engines: {node: '>=14.0.0'}
- tinyspy@2.1.1:
- resolution: {integrity: sha512-XPJL2uSzcOyBMky6OFrusqWlzfFrXtE0hPuMgW8A2HmaqrPo4ZQHRN/V0QXN3FSjKxpsbRrFc5LI7KOwBsT1/w==}
+ tinyspy@2.2.1:
+ resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
engines: {node: '>=14.0.0'}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -4689,17 +4817,13 @@ packages:
resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==}
hasBin: true
- tough-cookie@4.1.3:
- resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
+ tough-cookie@4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- tr46@3.0.0:
- resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
- engines: {node: '>=12'}
-
tr46@4.1.1:
resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==}
engines: {node: '>=14'}
@@ -4708,8 +4832,8 @@ packages:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
- tsconfig-paths@3.14.1:
- resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==}
+ tsconfig-paths@3.15.0:
+ resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
@@ -4720,91 +4844,112 @@ packages:
tslib@2.5.0:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+
tsutils@3.21.0:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
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'
- tsx@3.12.7:
- resolution: {integrity: sha512-C2Ip+jPmqKd1GWVQDvz/Eyc6QJbGfE7NrR3fx5BpEHMZsEHoIxHL1j+lKdGobr8ovEyqeNkPLSKp6SCSOt7gmw==}
+ tsx@3.14.0:
+ resolution: {integrity: sha512-xHtFaKtHxM9LOklMmJdI3BEnQq/D5F73Of2E1GDrITi9sgoVkvIsrQUTY1G8FlmGtA+awCI4EBlTRRYxkL2sRg==}
hasBin: true
tunnel@0.0.6:
resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==}
engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'}
- turbo-darwin-64@1.10.13:
- resolution: {integrity: sha512-vmngGfa2dlYvX7UFVncsNDMuT4X2KPyPJ2Jj+xvf5nvQnZR/3IeDEGleGVuMi/hRzdinoxwXqgk9flEmAYp0Xw==}
+ turbo-darwin-64@2.3.3:
+ resolution: {integrity: sha512-bxX82xe6du/3rPmm4aCC5RdEilIN99VUld4HkFQuw+mvFg6darNBuQxyWSHZTtc25XgYjQrjsV05888w1grpaA==}
cpu: [x64]
os: [darwin]
- turbo-darwin-arm64@1.10.13:
- resolution: {integrity: sha512-eMoJC+k7gIS4i2qL6rKmrIQGP6Wr9nN4odzzgHFngLTMimok2cGLK3qbJs5O5F/XAtEeRAmuxeRnzQwTl/iuAw==}
+ turbo-darwin-arm64@2.3.3:
+ resolution: {integrity: sha512-DYbQwa3NsAuWkCUYVzfOUBbSUBVQzH5HWUFy2Kgi3fGjIWVZOFk86ss+xsWu//rlEAfYwEmopigsPYSmW4X15A==}
cpu: [arm64]
os: [darwin]
- turbo-linux-64@1.10.13:
- resolution: {integrity: sha512-0CyYmnKTs6kcx7+JRH3nPEqCnzWduM0hj8GP/aodhaIkLNSAGAa+RiYZz6C7IXN+xUVh5rrWTnU2f1SkIy7Gdg==}
+ turbo-linux-64@2.3.3:
+ resolution: {integrity: sha512-eHj9OIB0dFaP6BxB88jSuaCLsOQSYWBgmhy2ErCu6D2GG6xW3b6e2UWHl/1Ho9FsTg4uVgo4DB9wGsKa5erjUA==}
cpu: [x64]
os: [linux]
- turbo-linux-arm64@1.10.13:
- resolution: {integrity: sha512-0iBKviSGQQlh2OjZgBsGjkPXoxvRIxrrLLbLObwJo3sOjIH0loGmVIimGS5E323soMfi/o+sidjk2wU1kFfD7Q==}
+ turbo-linux-arm64@2.3.3:
+ resolution: {integrity: sha512-NmDE/NjZoDj1UWBhMtOPmqFLEBKhzGS61KObfrDEbXvU3lekwHeoPvAMfcovzswzch+kN2DrtbNIlz+/rp8OCg==}
cpu: [arm64]
os: [linux]
- turbo-windows-64@1.10.13:
- resolution: {integrity: sha512-S5XySRfW2AmnTeY1IT+Jdr6Goq7mxWganVFfrmqU+qqq3Om/nr0GkcUX+KTIo9mPrN0D3p5QViBRzulwB5iuUQ==}
+ turbo-windows-64@2.3.3:
+ resolution: {integrity: sha512-O2+BS4QqjK3dOERscXqv7N2GXNcqHr9hXumkMxDj/oGx9oCatIwnnwx34UmzodloSnJpgSqjl8iRWiY65SmYoQ==}
cpu: [x64]
os: [win32]
- turbo-windows-arm64@1.10.13:
- resolution: {integrity: sha512-nKol6+CyiExJIuoIc3exUQPIBjP9nIq5SkMJgJuxsot2hkgGrafAg/izVDRDrRduQcXj2s8LdtxJHvvnbI8hEQ==}
+ turbo-windows-arm64@2.3.3:
+ resolution: {integrity: sha512-dW4ZK1r6XLPNYLIKjC4o87HxYidtRRcBeo/hZ9Wng2XM/MqqYkAyzJXJGgRMsc0MMEN9z4+ZIfnSNBrA0b08ag==}
cpu: [arm64]
os: [win32]
- turbo@1.10.13:
- resolution: {integrity: sha512-vOF5IPytgQPIsgGtT0n2uGZizR2N3kKuPIn4b5p5DdeLoI0BV7uNiydT7eSzdkPRpdXNnO8UwS658VaI4+YSzQ==}
+ turbo@2.3.3:
+ resolution: {integrity: sha512-DUHWQAcC8BTiUZDRzAYGvpSpGLiaOQPfYXlCieQbwUvmml/LRGIe3raKdrOPOoiX0DYlzxs2nH6BoWJoZrj8hA==}
hasBin: true
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-detect@4.0.8:
- resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+ type-detect@4.1.0:
+ resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
engines: {node: '>=4'}
type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
- type-fest@0.21.3:
- resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ type-fest@1.4.0:
+ resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
engines: {node: '>=10'}
- type-fest@4.26.1:
- resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==}
+ type-fest@2.19.0:
+ resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
+ engines: {node: '>=12.20'}
+
+ type-fest@4.27.0:
+ resolution: {integrity: sha512-3IMSWgP7C5KSQqmo1wjhKrwsvXAtF33jO3QY+Uy++ia7hqvgSK6iXbbg5PbDBc1P2ZbNEDgejOrN4YooXvhwCw==}
engines: {node: '>=16'}
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- typed-array-length@1.0.4:
- resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ typed-array-buffer@1.0.2:
+ resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
+ engines: {node: '>= 0.4'}
+
+ typed-array-byte-length@1.0.1:
+ resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
+ engines: {node: '>= 0.4'}
+
+ typed-array-byte-offset@1.0.2:
+ resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
+ engines: {node: '>= 0.4'}
+
+ typed-array-length@1.0.6:
+ resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
+ engines: {node: '>= 0.4'}
typescript@5.6.3:
resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
engines: {node: '>=14.17'}
hasBin: true
- ua-parser-js@1.0.37:
- resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==}
+ ua-parser-js@1.0.39:
+ resolution: {integrity: sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==}
+ hasBin: true
- ufo@1.2.0:
- resolution: {integrity: sha512-RsPyTbqORDNDxqAdQPQBpgqhWle1VcTSou/FraClYlHf6TZnQcGslpLcAphNR+sQW4q5lLWLbOsRlh9j24baQg==}
+ ufo@1.5.4:
+ resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
@@ -4820,6 +4965,9 @@ packages:
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ undici-types@6.19.8:
+ resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
+
undici@5.28.2:
resolution: {integrity: sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==}
engines: {node: '>=14.0'}
@@ -4835,14 +4983,8 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- update-browserslist-db@1.0.10:
- resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
- update-browserslist-db@1.0.11:
- resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -4859,8 +5001,8 @@ packages:
url@0.10.3:
resolution: {integrity: sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==}
- use-sync-external-store@1.2.0:
- resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
+ use-sync-external-store@1.2.2:
+ resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4878,8 +5020,8 @@ packages:
resolution: {integrity: sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==}
hasBin: true
- uuid@8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
+ uuid@9.0.1:
+ resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
vary@1.1.2:
@@ -4889,8 +5031,8 @@ packages:
victory-vendor@36.6.8:
resolution: {integrity: sha512-H3kyQ+2zgjMPvbPqAl7Vwm2FD5dU7/4bCTQakFQnpIsfDljeOMDojRsrmJfwh4oAlNnWhpAf+mbAoLh8u7dwyQ==}
- vite-node@0.34.4:
- resolution: {integrity: sha512-ho8HtiLc+nsmbwZMw8SlghESEE3KxJNp04F/jPUCLVvaURwt0d+r9LxEqCX5hvrrOQ0GSyxbYr5ZfRYhQ0yVKQ==}
+ vite-node@0.34.6:
+ resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==}
engines: {node: '>=v14.18.0'}
hasBin: true
@@ -4899,8 +5041,8 @@ packages:
peerDependencies:
vite: ^2.6.0 || 3 || 4
- vite@4.4.9:
- resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==}
+ vite@4.5.5:
+ resolution: {integrity: sha512-ifW3Lb2sMdX+WU91s3R0FyQlAyLxOzCSCP37ujw0+r5POeHPwe6udWVIElKQq8gk3t7b8rkmvqC6IHBpCff4GQ==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -4927,8 +5069,8 @@ packages:
terser:
optional: true
- vitest@0.34.4:
- resolution: {integrity: sha512-SE/laOsB6995QlbSE6BtkpXDeVNLJc1u2LHRG/OpnN4RsRzM3GQm4nm3PQCK5OBtrsUqnhzLdnT7se3aeNGdlw==}
+ vitest@0.34.6:
+ resolution: {integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==}
engines: {node: '>=v14.18.0'}
hasBin: true
peerDependencies:
@@ -4984,10 +5126,6 @@ packages:
resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
engines: {node: '>=12'}
- whatwg-url@11.0.0:
- resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
- engines: {node: '>=12'}
-
whatwg-url@12.0.1:
resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==}
engines: {node: '>=14'}
@@ -4998,8 +5136,17 @@ packages:
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- which-collection@1.0.1:
- resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
+ which-builtin-type@1.1.4:
+ resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
+ engines: {node: '>= 0.4'}
+
+ which-collection@1.0.2:
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+ engines: {node: '>= 0.4'}
+
+ which-typed-array@1.1.15:
+ resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ engines: {node: '>= 0.4'}
which-typed-array@1.1.9:
resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
@@ -5010,28 +5157,28 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- why-is-node-running@2.2.2:
- resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
+ why-is-node-running@2.3.0:
+ resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
engines: {node: '>=8'}
hasBin: true
- word-wrap@1.2.3:
- resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- wrap-ansi@6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
-
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
+ wrap-ansi@8.1.0:
+ resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
+ engines: {node: '>=12'}
+
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- ws@8.14.1:
- resolution: {integrity: sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -5071,9 +5218,6 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yallist@4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
-
yaml-ast-parser@0.0.43:
resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
@@ -5081,8 +5225,8 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.2.1:
- resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==}
+ yaml@2.3.1:
+ resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
engines: {node: '>= 14'}
yargs-parser@21.1.1:
@@ -5097,24 +5241,26 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
- yup@0.32.11:
- resolution: {integrity: sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==}
- engines: {node: '>=10'}
+ yup@1.4.0:
+ resolution: {integrity: sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg==}
zod@3.23.8:
resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
- zustand@4.3.3:
- resolution: {integrity: sha512-x2jXq8S0kfLGNwGh87nhRfEc2eZy37tSatpSoSIN+O6HIaBhgQHSONV/F9VNrNcBcKQu/E80K1DeHDYQC/zCrQ==}
+ zustand@4.5.5:
+ resolution: {integrity: sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==}
engines: {node: '>=12.7.0'}
peerDependencies:
- immer: '>=9.0'
+ '@types/react': '>=16.8'
+ immer: '>=9.0.6'
react: '>=16.8'
peerDependenciesMeta:
+ '@types/react':
+ optional: true
immer:
optional: true
react:
@@ -5122,10 +5268,14 @@ packages:
snapshots:
- '@actions/core@1.10.1':
+ '@actions/core@1.11.1':
dependencies:
+ '@actions/exec': 1.1.1
'@actions/http-client': 2.2.0
- uuid: 8.3.2
+
+ '@actions/exec@1.1.1':
+ dependencies:
+ '@actions/io': 1.1.3
'@actions/github@6.0.0':
dependencies:
@@ -5139,1304 +5289,722 @@ snapshots:
tunnel: 0.0.6
undici: 5.28.2
+ '@actions/io@1.1.3': {}
+
'@ampproject/remapping@2.2.0':
dependencies:
'@jridgewell/gen-mapping': 0.1.1
'@jridgewell/trace-mapping': 0.3.17
- '@aws-cdk/asset-awscli-v1@2.2.201': {}
-
- '@aws-cdk/asset-kubectl-v20@2.1.2': {}
-
- '@aws-cdk/asset-node-proxy-agent-v6@2.0.1': {}
-
- '@aws-crypto/crc32@3.0.0':
- dependencies:
- '@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.489.0
- tslib: 1.14.1
-
- '@aws-crypto/ie11-detection@3.0.0':
- dependencies:
- tslib: 1.14.1
-
- '@aws-crypto/sha256-browser@3.0.0':
- dependencies:
- '@aws-crypto/ie11-detection': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-crypto/supports-web-crypto': 3.0.0
- '@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.489.0
- '@aws-sdk/util-locate-window': 3.310.0
- '@aws-sdk/util-utf8-browser': 3.259.0
- tslib: 1.14.1
-
- '@aws-crypto/sha256-js@3.0.0':
- dependencies:
- '@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.489.0
- tslib: 1.14.1
-
- '@aws-crypto/supports-web-crypto@3.0.0':
- dependencies:
- tslib: 1.14.1
-
- '@aws-crypto/util@3.0.0':
- dependencies:
- '@aws-sdk/types': 3.347.0
- '@aws-sdk/util-utf8-browser': 3.259.0
- tslib: 1.14.1
-
- '@aws-sdk/abort-controller@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/client-cloudformation@3.490.0':
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.490.0
- '@aws-sdk/core': 3.490.0
- '@aws-sdk/credential-provider-node': 3.490.0
- '@aws-sdk/middleware-host-header': 3.489.0
- '@aws-sdk/middleware-logger': 3.489.0
- '@aws-sdk/middleware-recursion-detection': 3.489.0
- '@aws-sdk/middleware-signing': 3.489.0
- '@aws-sdk/middleware-user-agent': 3.489.0
- '@aws-sdk/region-config-resolver': 3.489.0
- '@aws-sdk/types': 3.489.0
- '@aws-sdk/util-endpoints': 3.489.0
- '@aws-sdk/util-user-agent-browser': 3.489.0
- '@aws-sdk/util-user-agent-node': 3.489.0
- '@smithy/config-resolver': 2.0.23
- '@smithy/core': 1.2.2
- '@smithy/fetch-http-handler': 2.3.2
- '@smithy/hash-node': 2.0.18
- '@smithy/invalid-dependency': 2.0.16
- '@smithy/middleware-content-length': 2.0.18
- '@smithy/middleware-endpoint': 2.3.0
- '@smithy/middleware-retry': 2.0.26
- '@smithy/middleware-serde': 2.0.16
- '@smithy/middleware-stack': 2.0.10
- '@smithy/node-config-provider': 2.1.9
- '@smithy/node-http-handler': 2.2.2
- '@smithy/protocol-http': 3.0.12
- '@smithy/smithy-client': 2.2.1
- '@smithy/types': 2.8.0
- '@smithy/url-parser': 2.0.16
- '@smithy/util-base64': 2.0.1
- '@smithy/util-body-length-browser': 2.0.1
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.24
- '@smithy/util-defaults-mode-node': 2.0.32
- '@smithy/util-endpoints': 1.0.8
- '@smithy/util-retry': 2.0.9
- '@smithy/util-utf8': 2.0.2
- '@smithy/util-waiter': 2.0.16
- fast-xml-parser: 4.2.5
- tslib: 2.5.0
- uuid: 8.3.2
+ '@aws-cdk/asset-awscli-v1@2.2.211': {}
+
+ '@aws-cdk/asset-kubectl-v20@2.1.3': {}
+
+ '@aws-cdk/asset-node-proxy-agent-v6@2.1.0': {}
+
+ '@aws-cdk/cloud-assembly-schema@38.0.1': {}
+
+ '@aws-crypto/sha256-browser@5.2.0':
+ dependencies:
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-crypto/supports-web-crypto': 5.2.0
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/types': 3.692.0
+ '@aws-sdk/util-locate-window': 3.693.0
+ '@smithy/util-utf8': 2.3.0
+ tslib: 2.8.1
+
+ '@aws-crypto/sha256-js@5.2.0':
+ dependencies:
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/types': 3.692.0
+ tslib: 2.8.1
+
+ '@aws-crypto/supports-web-crypto@5.2.0':
+ dependencies:
+ tslib: 2.8.1
+
+ '@aws-crypto/util@5.2.0':
+ dependencies:
+ '@aws-sdk/types': 3.692.0
+ '@smithy/util-utf8': 2.3.0
+ tslib: 2.8.1
+
+ '@aws-sdk/client-cloudformation@3.693.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.693.0(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/client-sts': 3.693.0
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/credential-provider-node': 3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/middleware-host-header': 3.693.0
+ '@aws-sdk/middleware-logger': 3.693.0
+ '@aws-sdk/middleware-recursion-detection': 3.693.0
+ '@aws-sdk/middleware-user-agent': 3.693.0
+ '@aws-sdk/region-config-resolver': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@aws-sdk/util-endpoints': 3.693.0
+ '@aws-sdk/util-user-agent-browser': 3.693.0
+ '@aws-sdk/util-user-agent-node': 3.693.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.3
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.3
+ '@smithy/middleware-retry': 3.0.27
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.27
+ '@smithy/util-defaults-mode-node': 3.0.27
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ '@types/uuid': 9.0.8
+ tslib: 2.8.1
+ uuid: 9.0.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-dynamodb@3.332.0':
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.332.0
- '@aws-sdk/config-resolver': 3.329.0
- '@aws-sdk/credential-provider-node': 3.332.0
- '@aws-sdk/fetch-http-handler': 3.329.0
- '@aws-sdk/hash-node': 3.329.0
- '@aws-sdk/invalid-dependency': 3.329.0
- '@aws-sdk/middleware-content-length': 3.329.0
- '@aws-sdk/middleware-endpoint': 3.329.0
- '@aws-sdk/middleware-endpoint-discovery': 3.329.0
- '@aws-sdk/middleware-host-header': 3.329.0
- '@aws-sdk/middleware-logger': 3.329.0
- '@aws-sdk/middleware-recursion-detection': 3.329.0
- '@aws-sdk/middleware-retry': 3.329.0
- '@aws-sdk/middleware-serde': 3.329.0
- '@aws-sdk/middleware-signing': 3.329.0
- '@aws-sdk/middleware-stack': 3.329.0
- '@aws-sdk/middleware-user-agent': 3.332.0
- '@aws-sdk/node-config-provider': 3.329.0
- '@aws-sdk/node-http-handler': 3.329.0
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/smithy-client': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/url-parser': 3.329.0
- '@aws-sdk/util-base64': 3.310.0
- '@aws-sdk/util-body-length-browser': 3.310.0
- '@aws-sdk/util-body-length-node': 3.310.0
- '@aws-sdk/util-defaults-mode-browser': 3.329.0
- '@aws-sdk/util-defaults-mode-node': 3.329.0
- '@aws-sdk/util-endpoints': 3.332.0
- '@aws-sdk/util-retry': 3.329.0
- '@aws-sdk/util-user-agent-browser': 3.329.0
- '@aws-sdk/util-user-agent-node': 3.329.0
- '@aws-sdk/util-utf8': 3.310.0
- '@aws-sdk/util-waiter': 3.329.0
- tslib: 2.5.0
- uuid: 8.3.2
+ '@aws-sdk/client-dynamodb@3.693.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.693.0(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/client-sts': 3.693.0
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/credential-provider-node': 3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/middleware-endpoint-discovery': 3.693.0
+ '@aws-sdk/middleware-host-header': 3.693.0
+ '@aws-sdk/middleware-logger': 3.693.0
+ '@aws-sdk/middleware-recursion-detection': 3.693.0
+ '@aws-sdk/middleware-user-agent': 3.693.0
+ '@aws-sdk/region-config-resolver': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@aws-sdk/util-endpoints': 3.693.0
+ '@aws-sdk/util-user-agent-browser': 3.693.0
+ '@aws-sdk/util-user-agent-node': 3.693.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.3
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.3
+ '@smithy/middleware-retry': 3.0.27
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.27
+ '@smithy/util-defaults-mode-node': 3.0.27
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ '@types/uuid': 9.0.8
+ tslib: 2.8.1
+ uuid: 9.0.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso-oidc@3.332.0':
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/config-resolver': 3.329.0
- '@aws-sdk/fetch-http-handler': 3.329.0
- '@aws-sdk/hash-node': 3.329.0
- '@aws-sdk/invalid-dependency': 3.329.0
- '@aws-sdk/middleware-content-length': 3.329.0
- '@aws-sdk/middleware-endpoint': 3.329.0
- '@aws-sdk/middleware-host-header': 3.329.0
- '@aws-sdk/middleware-logger': 3.329.0
- '@aws-sdk/middleware-recursion-detection': 3.329.0
- '@aws-sdk/middleware-retry': 3.329.0
- '@aws-sdk/middleware-serde': 3.329.0
- '@aws-sdk/middleware-stack': 3.329.0
- '@aws-sdk/middleware-user-agent': 3.332.0
- '@aws-sdk/node-config-provider': 3.329.0
- '@aws-sdk/node-http-handler': 3.329.0
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/smithy-client': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/url-parser': 3.329.0
- '@aws-sdk/util-base64': 3.310.0
- '@aws-sdk/util-body-length-browser': 3.310.0
- '@aws-sdk/util-body-length-node': 3.310.0
- '@aws-sdk/util-defaults-mode-browser': 3.329.0
- '@aws-sdk/util-defaults-mode-node': 3.329.0
- '@aws-sdk/util-endpoints': 3.332.0
- '@aws-sdk/util-retry': 3.329.0
- '@aws-sdk/util-user-agent-browser': 3.329.0
- '@aws-sdk/util-user-agent-node': 3.329.0
- '@aws-sdk/util-utf8': 3.310.0
- tslib: 2.5.0
+ '@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0)':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sts': 3.693.0
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/credential-provider-node': 3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/middleware-host-header': 3.693.0
+ '@aws-sdk/middleware-logger': 3.693.0
+ '@aws-sdk/middleware-recursion-detection': 3.693.0
+ '@aws-sdk/middleware-user-agent': 3.693.0
+ '@aws-sdk/region-config-resolver': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@aws-sdk/util-endpoints': 3.693.0
+ '@aws-sdk/util-user-agent-browser': 3.693.0
+ '@aws-sdk/util-user-agent-node': 3.693.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.3
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.3
+ '@smithy/middleware-retry': 3.0.27
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.27
+ '@smithy/util-defaults-mode-node': 3.0.27
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso@3.332.0':
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/config-resolver': 3.329.0
- '@aws-sdk/fetch-http-handler': 3.329.0
- '@aws-sdk/hash-node': 3.329.0
- '@aws-sdk/invalid-dependency': 3.329.0
- '@aws-sdk/middleware-content-length': 3.329.0
- '@aws-sdk/middleware-endpoint': 3.329.0
- '@aws-sdk/middleware-host-header': 3.329.0
- '@aws-sdk/middleware-logger': 3.329.0
- '@aws-sdk/middleware-recursion-detection': 3.329.0
- '@aws-sdk/middleware-retry': 3.329.0
- '@aws-sdk/middleware-serde': 3.329.0
- '@aws-sdk/middleware-stack': 3.329.0
- '@aws-sdk/middleware-user-agent': 3.332.0
- '@aws-sdk/node-config-provider': 3.329.0
- '@aws-sdk/node-http-handler': 3.329.0
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/smithy-client': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/url-parser': 3.329.0
- '@aws-sdk/util-base64': 3.310.0
- '@aws-sdk/util-body-length-browser': 3.310.0
- '@aws-sdk/util-body-length-node': 3.310.0
- '@aws-sdk/util-defaults-mode-browser': 3.329.0
- '@aws-sdk/util-defaults-mode-node': 3.329.0
- '@aws-sdk/util-endpoints': 3.332.0
- '@aws-sdk/util-retry': 3.329.0
- '@aws-sdk/util-user-agent-browser': 3.329.0
- '@aws-sdk/util-user-agent-node': 3.329.0
- '@aws-sdk/util-utf8': 3.310.0
- tslib: 2.5.0
+ '@aws-sdk/client-sso@3.693.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/middleware-host-header': 3.693.0
+ '@aws-sdk/middleware-logger': 3.693.0
+ '@aws-sdk/middleware-recursion-detection': 3.693.0
+ '@aws-sdk/middleware-user-agent': 3.693.0
+ '@aws-sdk/region-config-resolver': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@aws-sdk/util-endpoints': 3.693.0
+ '@aws-sdk/util-user-agent-browser': 3.693.0
+ '@aws-sdk/util-user-agent-node': 3.693.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.3
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.3
+ '@smithy/middleware-retry': 3.0.27
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.27
+ '@smithy/util-defaults-mode-node': 3.0.27
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso@3.490.0':
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/core': 3.490.0
- '@aws-sdk/middleware-host-header': 3.489.0
- '@aws-sdk/middleware-logger': 3.489.0
- '@aws-sdk/middleware-recursion-detection': 3.489.0
- '@aws-sdk/middleware-user-agent': 3.489.0
- '@aws-sdk/region-config-resolver': 3.489.0
- '@aws-sdk/types': 3.489.0
- '@aws-sdk/util-endpoints': 3.489.0
- '@aws-sdk/util-user-agent-browser': 3.489.0
- '@aws-sdk/util-user-agent-node': 3.489.0
- '@smithy/config-resolver': 2.0.23
- '@smithy/core': 1.2.2
- '@smithy/fetch-http-handler': 2.3.2
- '@smithy/hash-node': 2.0.18
- '@smithy/invalid-dependency': 2.0.16
- '@smithy/middleware-content-length': 2.0.18
- '@smithy/middleware-endpoint': 2.3.0
- '@smithy/middleware-retry': 2.0.26
- '@smithy/middleware-serde': 2.0.16
- '@smithy/middleware-stack': 2.0.10
- '@smithy/node-config-provider': 2.1.9
- '@smithy/node-http-handler': 2.2.2
- '@smithy/protocol-http': 3.0.12
- '@smithy/smithy-client': 2.2.1
- '@smithy/types': 2.8.0
- '@smithy/url-parser': 2.0.16
- '@smithy/util-base64': 2.0.1
- '@smithy/util-body-length-browser': 2.0.1
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.24
- '@smithy/util-defaults-mode-node': 2.0.32
- '@smithy/util-endpoints': 1.0.8
- '@smithy/util-retry': 2.0.9
- '@smithy/util-utf8': 2.0.2
- tslib: 2.5.0
+ '@aws-sdk/client-sts@3.693.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.693.0(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/credential-provider-node': 3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/middleware-host-header': 3.693.0
+ '@aws-sdk/middleware-logger': 3.693.0
+ '@aws-sdk/middleware-recursion-detection': 3.693.0
+ '@aws-sdk/middleware-user-agent': 3.693.0
+ '@aws-sdk/region-config-resolver': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@aws-sdk/util-endpoints': 3.693.0
+ '@aws-sdk/util-user-agent-browser': 3.693.0
+ '@aws-sdk/util-user-agent-node': 3.693.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.3
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.3
+ '@smithy/middleware-retry': 3.0.27
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.27
+ '@smithy/util-defaults-mode-node': 3.0.27
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sts@3.332.0':
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/config-resolver': 3.329.0
- '@aws-sdk/credential-provider-node': 3.332.0
- '@aws-sdk/fetch-http-handler': 3.329.0
- '@aws-sdk/hash-node': 3.329.0
- '@aws-sdk/invalid-dependency': 3.329.0
- '@aws-sdk/middleware-content-length': 3.329.0
- '@aws-sdk/middleware-endpoint': 3.329.0
- '@aws-sdk/middleware-host-header': 3.329.0
- '@aws-sdk/middleware-logger': 3.329.0
- '@aws-sdk/middleware-recursion-detection': 3.329.0
- '@aws-sdk/middleware-retry': 3.329.0
- '@aws-sdk/middleware-sdk-sts': 3.329.0
- '@aws-sdk/middleware-serde': 3.329.0
- '@aws-sdk/middleware-signing': 3.329.0
- '@aws-sdk/middleware-stack': 3.329.0
- '@aws-sdk/middleware-user-agent': 3.332.0
- '@aws-sdk/node-config-provider': 3.329.0
- '@aws-sdk/node-http-handler': 3.329.0
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/smithy-client': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/url-parser': 3.329.0
- '@aws-sdk/util-base64': 3.310.0
- '@aws-sdk/util-body-length-browser': 3.310.0
- '@aws-sdk/util-body-length-node': 3.310.0
- '@aws-sdk/util-defaults-mode-browser': 3.329.0
- '@aws-sdk/util-defaults-mode-node': 3.329.0
- '@aws-sdk/util-endpoints': 3.332.0
- '@aws-sdk/util-retry': 3.329.0
- '@aws-sdk/util-user-agent-browser': 3.329.0
- '@aws-sdk/util-user-agent-node': 3.329.0
- '@aws-sdk/util-utf8': 3.310.0
- fast-xml-parser: 4.1.2
- tslib: 2.5.0
+ '@aws-sdk/core@3.693.0':
+ dependencies:
+ '@aws-sdk/types': 3.692.0
+ '@smithy/core': 2.5.3
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/property-provider': 3.1.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/signature-v4': 4.2.3
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ '@smithy/util-middleware': 3.0.10
+ fast-xml-parser: 4.4.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-env@3.693.0':
+ dependencies:
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-http@3.693.0':
+ dependencies:
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/property-provider': 3.1.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ '@smithy/util-stream': 3.3.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-ini@3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))(@aws-sdk/client-sts@3.693.0)':
+ dependencies:
+ '@aws-sdk/client-sts': 3.693.0
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/credential-provider-env': 3.693.0
+ '@aws-sdk/credential-provider-http': 3.693.0
+ '@aws-sdk/credential-provider-process': 3.693.0
+ '@aws-sdk/credential-provider-sso': 3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))
+ '@aws-sdk/credential-provider-web-identity': 3.693.0(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/types': 3.692.0
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
transitivePeerDependencies:
+ - '@aws-sdk/client-sso-oidc'
- aws-crt
- '@aws-sdk/client-sts@3.490.0':
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/core': 3.490.0
- '@aws-sdk/credential-provider-node': 3.490.0
- '@aws-sdk/middleware-host-header': 3.489.0
- '@aws-sdk/middleware-logger': 3.489.0
- '@aws-sdk/middleware-recursion-detection': 3.489.0
- '@aws-sdk/middleware-user-agent': 3.489.0
- '@aws-sdk/region-config-resolver': 3.489.0
- '@aws-sdk/types': 3.489.0
- '@aws-sdk/util-endpoints': 3.489.0
- '@aws-sdk/util-user-agent-browser': 3.489.0
- '@aws-sdk/util-user-agent-node': 3.489.0
- '@smithy/config-resolver': 2.0.23
- '@smithy/core': 1.2.2
- '@smithy/fetch-http-handler': 2.3.2
- '@smithy/hash-node': 2.0.18
- '@smithy/invalid-dependency': 2.0.16
- '@smithy/middleware-content-length': 2.0.18
- '@smithy/middleware-endpoint': 2.3.0
- '@smithy/middleware-retry': 2.0.26
- '@smithy/middleware-serde': 2.0.16
- '@smithy/middleware-stack': 2.0.10
- '@smithy/node-config-provider': 2.1.9
- '@smithy/node-http-handler': 2.2.2
- '@smithy/protocol-http': 3.0.12
- '@smithy/smithy-client': 2.2.1
- '@smithy/types': 2.8.0
- '@smithy/url-parser': 2.0.16
- '@smithy/util-base64': 2.0.1
- '@smithy/util-body-length-browser': 2.0.1
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.24
- '@smithy/util-defaults-mode-node': 2.0.32
- '@smithy/util-endpoints': 1.0.8
- '@smithy/util-middleware': 2.0.9
- '@smithy/util-retry': 2.0.9
- '@smithy/util-utf8': 2.0.2
- fast-xml-parser: 4.2.5
- tslib: 2.5.0
+ '@aws-sdk/credential-provider-node@3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))(@aws-sdk/client-sts@3.693.0)':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.693.0
+ '@aws-sdk/credential-provider-http': 3.693.0
+ '@aws-sdk/credential-provider-ini': 3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/credential-provider-process': 3.693.0
+ '@aws-sdk/credential-provider-sso': 3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))
+ '@aws-sdk/credential-provider-web-identity': 3.693.0(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/types': 3.692.0
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
transitivePeerDependencies:
+ - '@aws-sdk/client-sso-oidc'
+ - '@aws-sdk/client-sts'
- aws-crt
- '@aws-sdk/config-resolver@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/util-config-provider': 3.310.0
- '@aws-sdk/util-middleware': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/core@3.490.0':
- dependencies:
- '@smithy/core': 1.2.2
- '@smithy/protocol-http': 3.0.12
- '@smithy/signature-v4': 2.0.19
- '@smithy/smithy-client': 2.2.1
- '@smithy/types': 2.8.0
- tslib: 2.5.0
-
- '@aws-sdk/credential-provider-env@3.329.0':
- dependencies:
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/credential-provider-env@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/property-provider': 2.0.17
- '@smithy/types': 2.8.0
- tslib: 2.5.0
-
- '@aws-sdk/credential-provider-imds@3.329.0':
- dependencies:
- '@aws-sdk/node-config-provider': 3.329.0
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/url-parser': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/credential-provider-ini@3.332.0':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.329.0
- '@aws-sdk/credential-provider-imds': 3.329.0
- '@aws-sdk/credential-provider-process': 3.329.0
- '@aws-sdk/credential-provider-sso': 3.332.0
- '@aws-sdk/credential-provider-web-identity': 3.329.0
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/shared-ini-file-loader': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-ini@3.490.0':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.489.0
- '@aws-sdk/credential-provider-process': 3.489.0
- '@aws-sdk/credential-provider-sso': 3.490.0
- '@aws-sdk/credential-provider-web-identity': 3.489.0
- '@aws-sdk/types': 3.489.0
- '@smithy/credential-provider-imds': 2.1.5
- '@smithy/property-provider': 2.0.17
- '@smithy/shared-ini-file-loader': 2.2.8
- '@smithy/types': 2.8.0
- tslib: 2.5.0
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-node@3.332.0':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.329.0
- '@aws-sdk/credential-provider-imds': 3.329.0
- '@aws-sdk/credential-provider-ini': 3.332.0
- '@aws-sdk/credential-provider-process': 3.329.0
- '@aws-sdk/credential-provider-sso': 3.332.0
- '@aws-sdk/credential-provider-web-identity': 3.329.0
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/shared-ini-file-loader': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-node@3.490.0':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.489.0
- '@aws-sdk/credential-provider-ini': 3.490.0
- '@aws-sdk/credential-provider-process': 3.489.0
- '@aws-sdk/credential-provider-sso': 3.490.0
- '@aws-sdk/credential-provider-web-identity': 3.489.0
- '@aws-sdk/types': 3.489.0
- '@smithy/credential-provider-imds': 2.1.5
- '@smithy/property-provider': 2.0.17
- '@smithy/shared-ini-file-loader': 2.2.8
- '@smithy/types': 2.8.0
- tslib: 2.5.0
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-process@3.329.0':
- dependencies:
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/shared-ini-file-loader': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/credential-provider-process@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/property-provider': 2.0.17
- '@smithy/shared-ini-file-loader': 2.2.8
- '@smithy/types': 2.8.0
- tslib: 2.5.0
-
- '@aws-sdk/credential-provider-sso@3.332.0':
- dependencies:
- '@aws-sdk/client-sso': 3.332.0
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/shared-ini-file-loader': 3.329.0
- '@aws-sdk/token-providers': 3.332.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
+ '@aws-sdk/credential-provider-process@3.693.0':
+ dependencies:
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-sso@3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))':
+ dependencies:
+ '@aws-sdk/client-sso': 3.693.0
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/token-providers': 3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))
+ '@aws-sdk/types': 3.692.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
transitivePeerDependencies:
+ - '@aws-sdk/client-sso-oidc'
- aws-crt
- '@aws-sdk/credential-provider-sso@3.490.0':
+ '@aws-sdk/credential-provider-web-identity@3.693.0(@aws-sdk/client-sts@3.693.0)':
dependencies:
- '@aws-sdk/client-sso': 3.490.0
- '@aws-sdk/token-providers': 3.489.0
- '@aws-sdk/types': 3.489.0
- '@smithy/property-provider': 2.0.17
- '@smithy/shared-ini-file-loader': 2.2.8
- '@smithy/types': 2.8.0
- tslib: 2.5.0
- transitivePeerDependencies:
- - aws-crt
+ '@aws-sdk/client-sts': 3.693.0
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@aws-sdk/credential-provider-web-identity@3.329.0':
- dependencies:
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/credential-provider-web-identity@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/property-provider': 2.0.17
- '@smithy/types': 2.8.0
- tslib: 2.5.0
-
- '@aws-sdk/endpoint-cache@3.310.0':
+ '@aws-sdk/endpoint-cache@3.693.0':
dependencies:
mnemonist: 0.38.3
- tslib: 2.5.0
-
- '@aws-sdk/fetch-http-handler@3.329.0':
- dependencies:
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/querystring-builder': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/util-base64': 3.310.0
- tslib: 2.5.0
-
- '@aws-sdk/hash-node@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/util-buffer-from': 3.310.0
- '@aws-sdk/util-utf8': 3.310.0
- tslib: 2.5.0
-
- '@aws-sdk/invalid-dependency@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/is-array-buffer@3.310.0':
- dependencies:
- tslib: 2.5.0
-
- '@aws-sdk/lib-dynamodb@3.332.0(@aws-sdk/client-dynamodb@3.332.0)(@aws-sdk/smithy-client@3.347.0)(@aws-sdk/types@3.489.0)':
- dependencies:
- '@aws-sdk/client-dynamodb': 3.332.0
- '@aws-sdk/smithy-client': 3.347.0
- '@aws-sdk/types': 3.489.0
- '@aws-sdk/util-dynamodb': 3.332.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-content-length@3.329.0':
- dependencies:
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-endpoint-discovery@3.329.0':
- dependencies:
- '@aws-sdk/endpoint-cache': 3.310.0
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-endpoint@3.329.0':
- dependencies:
- '@aws-sdk/middleware-serde': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/url-parser': 3.329.0
- '@aws-sdk/util-middleware': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-host-header@3.329.0':
- dependencies:
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-host-header@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/protocol-http': 3.0.12
- '@smithy/types': 2.8.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-logger@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-logger@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/types': 2.8.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-recursion-detection@3.329.0':
- dependencies:
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-recursion-detection@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/protocol-http': 3.0.12
- '@smithy/types': 2.8.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-retry@3.329.0':
- dependencies:
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/service-error-classification': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/util-middleware': 3.329.0
- '@aws-sdk/util-retry': 3.329.0
- tslib: 2.5.0
- uuid: 8.3.2
-
- '@aws-sdk/middleware-sdk-sts@3.329.0':
- dependencies:
- '@aws-sdk/middleware-signing': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-serde@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-signing@3.329.0':
- dependencies:
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/signature-v4': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/util-middleware': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-signing@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/property-provider': 2.0.17
- '@smithy/protocol-http': 3.0.12
- '@smithy/signature-v4': 2.0.19
- '@smithy/types': 2.8.0
- '@smithy/util-middleware': 2.0.9
- tslib: 2.5.0
-
- '@aws-sdk/middleware-stack@3.329.0':
- dependencies:
- tslib: 2.5.0
-
- '@aws-sdk/middleware-stack@3.347.0':
- dependencies:
- tslib: 2.5.0
-
- '@aws-sdk/middleware-user-agent@3.332.0':
- dependencies:
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/util-endpoints': 3.332.0
- tslib: 2.5.0
-
- '@aws-sdk/middleware-user-agent@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@aws-sdk/util-endpoints': 3.489.0
- '@smithy/protocol-http': 3.0.12
- '@smithy/types': 2.8.0
- tslib: 2.5.0
-
- '@aws-sdk/node-config-provider@3.329.0':
- dependencies:
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/shared-ini-file-loader': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/node-http-handler@3.329.0':
- dependencies:
- '@aws-sdk/abort-controller': 3.329.0
- '@aws-sdk/protocol-http': 3.329.0
- '@aws-sdk/querystring-builder': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/property-provider@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/protocol-http@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/querystring-builder@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/util-uri-escape': 3.310.0
- tslib: 2.5.0
-
- '@aws-sdk/querystring-parser@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/region-config-resolver@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/node-config-provider': 2.1.9
- '@smithy/types': 2.8.0
- '@smithy/util-config-provider': 2.1.0
- '@smithy/util-middleware': 2.0.9
- tslib: 2.5.0
-
- '@aws-sdk/service-error-classification@3.329.0': {}
-
- '@aws-sdk/shared-ini-file-loader@3.329.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/signature-v4@3.329.0':
- dependencies:
- '@aws-sdk/is-array-buffer': 3.310.0
- '@aws-sdk/types': 3.329.0
- '@aws-sdk/util-hex-encoding': 3.310.0
- '@aws-sdk/util-middleware': 3.329.0
- '@aws-sdk/util-uri-escape': 3.310.0
- '@aws-sdk/util-utf8': 3.310.0
- tslib: 2.5.0
-
- '@aws-sdk/smithy-client@3.329.0':
- dependencies:
- '@aws-sdk/middleware-stack': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/smithy-client@3.347.0':
- dependencies:
- '@aws-sdk/middleware-stack': 3.347.0
- '@aws-sdk/types': 3.347.0
- tslib: 2.5.0
+ tslib: 2.8.1
- '@aws-sdk/token-providers@3.332.0':
+ '@aws-sdk/lib-dynamodb@3.693.0(@aws-sdk/client-dynamodb@3.693.0)':
dependencies:
- '@aws-sdk/client-sso-oidc': 3.332.0
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/shared-ini-file-loader': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/token-providers@3.489.0':
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/middleware-host-header': 3.489.0
- '@aws-sdk/middleware-logger': 3.489.0
- '@aws-sdk/middleware-recursion-detection': 3.489.0
- '@aws-sdk/middleware-user-agent': 3.489.0
- '@aws-sdk/region-config-resolver': 3.489.0
- '@aws-sdk/types': 3.489.0
- '@aws-sdk/util-endpoints': 3.489.0
- '@aws-sdk/util-user-agent-browser': 3.489.0
- '@aws-sdk/util-user-agent-node': 3.489.0
- '@smithy/config-resolver': 2.0.23
- '@smithy/fetch-http-handler': 2.3.2
- '@smithy/hash-node': 2.0.18
- '@smithy/invalid-dependency': 2.0.16
- '@smithy/middleware-content-length': 2.0.18
- '@smithy/middleware-endpoint': 2.3.0
- '@smithy/middleware-retry': 2.0.26
- '@smithy/middleware-serde': 2.0.16
- '@smithy/middleware-stack': 2.0.10
- '@smithy/node-config-provider': 2.1.9
- '@smithy/node-http-handler': 2.2.2
- '@smithy/property-provider': 2.0.17
- '@smithy/protocol-http': 3.0.12
- '@smithy/shared-ini-file-loader': 2.2.8
- '@smithy/smithy-client': 2.2.1
- '@smithy/types': 2.8.0
- '@smithy/url-parser': 2.0.16
- '@smithy/util-base64': 2.0.1
- '@smithy/util-body-length-browser': 2.0.1
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.24
- '@smithy/util-defaults-mode-node': 2.0.32
- '@smithy/util-endpoints': 1.0.8
- '@smithy/util-retry': 2.0.9
- '@smithy/util-utf8': 2.0.2
- tslib: 2.5.0
- transitivePeerDependencies:
- - aws-crt
+ '@aws-sdk/client-dynamodb': 3.693.0
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/util-dynamodb': 3.693.0(@aws-sdk/client-dynamodb@3.693.0)
+ '@smithy/core': 2.5.3
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@aws-sdk/types@3.329.0':
+ '@aws-sdk/middleware-endpoint-discovery@3.693.0':
dependencies:
- tslib: 2.5.0
+ '@aws-sdk/endpoint-cache': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@aws-sdk/types@3.347.0':
+ '@aws-sdk/middleware-host-header@3.693.0':
dependencies:
- tslib: 2.5.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@aws-sdk/types@3.489.0':
+ '@aws-sdk/middleware-logger@3.693.0':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@aws-sdk/url-parser@3.329.0':
+ '@aws-sdk/middleware-recursion-detection@3.693.0':
dependencies:
- '@aws-sdk/querystring-parser': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@aws-sdk/util-base64@3.310.0':
+ '@aws-sdk/middleware-user-agent@3.693.0':
dependencies:
- '@aws-sdk/util-buffer-from': 3.310.0
- tslib: 2.5.0
+ '@aws-sdk/core': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@aws-sdk/util-endpoints': 3.693.0
+ '@smithy/core': 2.5.3
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@aws-sdk/util-body-length-browser@3.310.0':
+ '@aws-sdk/region-config-resolver@3.693.0':
dependencies:
- tslib: 2.5.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
+ '@smithy/util-config-provider': 3.0.0
+ '@smithy/util-middleware': 3.0.10
+ tslib: 2.8.1
- '@aws-sdk/util-body-length-node@3.310.0':
+ '@aws-sdk/token-providers@3.693.0(@aws-sdk/client-sso-oidc@3.693.0(@aws-sdk/client-sts@3.693.0))':
dependencies:
- tslib: 2.5.0
+ '@aws-sdk/client-sso-oidc': 3.693.0(@aws-sdk/client-sts@3.693.0)
+ '@aws-sdk/types': 3.692.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@aws-sdk/util-buffer-from@3.310.0':
+ '@aws-sdk/types@3.692.0':
dependencies:
- '@aws-sdk/is-array-buffer': 3.310.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@aws-sdk/util-config-provider@3.310.0':
+ '@aws-sdk/util-dynamodb@3.693.0(@aws-sdk/client-dynamodb@3.693.0)':
dependencies:
- tslib: 2.5.0
+ '@aws-sdk/client-dynamodb': 3.693.0
+ tslib: 2.8.1
- '@aws-sdk/util-defaults-mode-browser@3.329.0':
+ '@aws-sdk/util-endpoints@3.693.0':
dependencies:
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/types': 3.329.0
- bowser: 2.11.0
- tslib: 2.5.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/types': 3.7.1
+ '@smithy/util-endpoints': 2.1.6
+ tslib: 2.8.1
- '@aws-sdk/util-defaults-mode-node@3.329.0':
+ '@aws-sdk/util-locate-window@3.693.0':
dependencies:
- '@aws-sdk/config-resolver': 3.329.0
- '@aws-sdk/credential-provider-imds': 3.329.0
- '@aws-sdk/node-config-provider': 3.329.0
- '@aws-sdk/property-provider': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/util-dynamodb@3.332.0':
- dependencies:
- tslib: 2.5.0
-
- '@aws-sdk/util-endpoints@3.332.0':
- dependencies:
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/util-endpoints@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/types': 2.8.0
- '@smithy/util-endpoints': 1.0.8
- tslib: 2.5.0
-
- '@aws-sdk/util-hex-encoding@3.310.0':
- dependencies:
- tslib: 2.5.0
-
- '@aws-sdk/util-locate-window@3.310.0':
- dependencies:
- tslib: 2.5.0
-
- '@aws-sdk/util-middleware@3.329.0':
- dependencies:
- tslib: 2.5.0
-
- '@aws-sdk/util-retry@3.329.0':
- dependencies:
- '@aws-sdk/service-error-classification': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/util-uri-escape@3.310.0':
- dependencies:
- tslib: 2.5.0
+ tslib: 2.8.1
- '@aws-sdk/util-user-agent-browser@3.329.0':
+ '@aws-sdk/util-user-agent-browser@3.693.0':
dependencies:
- '@aws-sdk/types': 3.329.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/types': 3.7.1
bowser: 2.11.0
- tslib: 2.5.0
-
- '@aws-sdk/util-user-agent-browser@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/types': 2.8.0
- bowser: 2.11.0
- tslib: 2.5.0
-
- '@aws-sdk/util-user-agent-node@3.329.0':
- dependencies:
- '@aws-sdk/node-config-provider': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
-
- '@aws-sdk/util-user-agent-node@3.489.0':
- dependencies:
- '@aws-sdk/types': 3.489.0
- '@smithy/node-config-provider': 2.1.9
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ tslib: 2.8.1
- '@aws-sdk/util-utf8-browser@3.259.0':
+ '@aws-sdk/util-user-agent-node@3.693.0':
dependencies:
- tslib: 2.5.0
-
- '@aws-sdk/util-utf8@3.310.0':
- dependencies:
- '@aws-sdk/util-buffer-from': 3.310.0
- tslib: 2.5.0
-
- '@aws-sdk/util-waiter@3.329.0':
- dependencies:
- '@aws-sdk/abort-controller': 3.329.0
- '@aws-sdk/types': 3.329.0
- tslib: 2.5.0
+ '@aws-sdk/middleware-user-agent': 3.693.0
+ '@aws-sdk/types': 3.692.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
'@aws-sdk/util-waiter@3.374.0':
dependencies:
'@smithy/util-waiter': 1.1.0
tslib: 2.5.0
- '@babel/code-frame@7.18.6':
+ '@babel/code-frame@7.26.2':
dependencies:
- '@babel/highlight': 7.18.6
-
- '@babel/code-frame@7.22.13':
- dependencies:
- '@babel/highlight': 7.22.13
- chalk: 2.4.2
-
- '@babel/compat-data@7.20.14': {}
-
- '@babel/compat-data@7.22.9': {}
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/core@7.20.12':
- dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.14
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.12)
- '@babel/helper-module-transforms': 7.20.11
- '@babel/helpers': 7.20.13
- '@babel/parser': 7.20.15
- '@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
- convert-source-map: 1.9.0
- debug: 4.3.4(supports-color@9.4.0)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/compat-data@7.26.2': {}
- '@babel/core@7.22.17':
+ '@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.15
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17)
- '@babel/helpers': 7.22.15
- '@babel/parser': 7.22.16
- '@babel/template': 7.22.15
- '@babel/traverse': 7.22.17
- '@babel/types': 7.22.17
- convert-source-map: 1.9.0
- debug: 4.3.4(supports-color@9.4.0)
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ convert-source-map: 2.0.0
+ debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.20.14':
- dependencies:
- '@babel/types': 7.20.7
- '@jridgewell/gen-mapping': 0.3.2
- jsesc: 2.5.2
-
- '@babel/generator@7.22.15':
+ '@babel/generator@7.26.2':
dependencies:
- '@babel/types': 7.22.17
- '@jridgewell/gen-mapping': 0.3.2
- '@jridgewell/trace-mapping': 0.3.17
- jsesc: 2.5.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.0.2
- '@babel/helper-compilation-targets@7.20.7(@babel/core@7.20.12)':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.20.14
- '@babel/core': 7.20.12
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.5
- lru-cache: 5.1.1
- semver: 6.3.0
-
- '@babel/helper-compilation-targets@7.22.15':
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/helper-validator-option': 7.22.15
- browserslist: 4.21.10
+ '@babel/compat-data': 7.26.2
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.2
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-environment-visitor@7.18.9': {}
-
- '@babel/helper-environment-visitor@7.22.5': {}
-
- '@babel/helper-function-name@7.19.0':
- dependencies:
- '@babel/template': 7.20.7
- '@babel/types': 7.20.7
-
- '@babel/helper-function-name@7.22.5':
- dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.22.17
-
- '@babel/helper-hoist-variables@7.18.6':
- dependencies:
- '@babel/types': 7.20.7
-
- '@babel/helper-hoist-variables@7.22.5':
- dependencies:
- '@babel/types': 7.22.17
-
- '@babel/helper-module-imports@7.18.6':
- dependencies:
- '@babel/types': 7.20.7
-
- '@babel/helper-module-imports@7.22.15':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/types': 7.22.17
-
- '@babel/helper-module-transforms@7.20.11':
- dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-simple-access': 7.20.2
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.19.1
- '@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.22.17(@babel/core@7.22.17)':
- dependencies:
- '@babel/core': 7.22.17
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.15
-
- '@babel/helper-plugin-utils@7.22.5': {}
-
- '@babel/helper-simple-access@7.20.2':
- dependencies:
- '@babel/types': 7.20.7
-
- '@babel/helper-simple-access@7.22.5':
- dependencies:
- '@babel/types': 7.22.17
-
- '@babel/helper-split-export-declaration@7.18.6':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/types': 7.20.7
-
- '@babel/helper-split-export-declaration@7.22.6':
- dependencies:
- '@babel/types': 7.22.17
-
- '@babel/helper-string-parser@7.19.4': {}
-
- '@babel/helper-string-parser@7.22.5': {}
-
- '@babel/helper-validator-identifier@7.19.1': {}
-
- '@babel/helper-validator-identifier@7.22.15': {}
-
- '@babel/helper-validator-option@7.18.6': {}
-
- '@babel/helper-validator-option@7.22.15': {}
-
- '@babel/helpers@7.20.13':
- dependencies:
- '@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.22.15':
- dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.22.17
- '@babel/types': 7.22.17
- transitivePeerDependencies:
- - supports-color
-
- '@babel/highlight@7.18.6':
- dependencies:
- '@babel/helper-validator-identifier': 7.19.1
- chalk: 2.4.2
- js-tokens: 4.0.0
+ '@babel/helper-plugin-utils@7.25.9': {}
- '@babel/highlight@7.22.13':
- dependencies:
- '@babel/helper-validator-identifier': 7.22.15
- chalk: 2.4.2
- js-tokens: 4.0.0
+ '@babel/helper-string-parser@7.25.9': {}
- '@babel/parser@7.20.15':
- dependencies:
- '@babel/types': 7.20.7
+ '@babel/helper-validator-identifier@7.25.9': {}
- '@babel/parser@7.22.16':
- dependencies:
- '@babel/types': 7.22.17
+ '@babel/helper-validator-option@7.25.9': {}
- '@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.17)':
+ '@babel/helpers@7.26.0':
dependencies:
- '@babel/core': 7.22.17
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
- '@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.22.17)':
+ '@babel/parser@7.26.2':
dependencies:
- '@babel/core': 7.22.17
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/types': 7.26.0
- '@babel/runtime@7.20.13':
+ '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
dependencies:
- regenerator-runtime: 0.13.11
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/runtime@7.22.11':
+ '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
dependencies:
- regenerator-runtime: 0.14.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/template@7.20.7':
+ '@babel/runtime@7.26.0':
dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/parser': 7.20.15
- '@babel/types': 7.20.7
+ regenerator-runtime: 0.14.1
- '@babel/template@7.22.15':
+ '@babel/template@7.25.9':
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/parser': 7.22.16
- '@babel/types': 7.22.17
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
- '@babel/traverse@7.20.13':
+ '@babel/traverse@7.25.9':
dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.14
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.20.15
- '@babel/types': 7.20.7
- debug: 4.3.4(supports-color@9.4.0)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/traverse@7.22.17':
- dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.15
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.22.16
- '@babel/types': 7.22.17
- debug: 4.3.4(supports-color@9.4.0)
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+ debug: 4.3.7(supports-color@9.4.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.20.7':
+ '@babel/types@7.26.0':
dependencies:
- '@babel/helper-string-parser': 7.19.4
- '@babel/helper-validator-identifier': 7.19.1
- to-fast-properties: 2.0.0
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
- '@babel/types@7.22.17':
- dependencies:
- '@babel/helper-string-parser': 7.22.5
- '@babel/helper-validator-identifier': 7.22.15
- to-fast-properties: 2.0.0
+ '@codegenie/serverless-express@4.16.0': {}
+
+ '@date-io/core@2.17.0': {}
- '@date-io/core@2.16.0': {}
+ '@date-io/core@3.0.0': {}
- '@date-io/date-fns@2.16.0(date-fns@2.29.3)':
+ '@date-io/date-fns@2.17.0(date-fns@2.30.0)':
dependencies:
- '@date-io/core': 2.16.0
+ '@date-io/core': 2.17.0
optionalDependencies:
- date-fns: 2.29.3
+ date-fns: 2.30.0
+
+ '@drizzle-team/brocli@0.10.2': {}
- '@emotion/babel-plugin@11.10.6':
+ '@emotion/babel-plugin@11.12.0':
dependencies:
- '@babel/helper-module-imports': 7.18.6
- '@babel/runtime': 7.22.11
- '@emotion/hash': 0.9.0
- '@emotion/memoize': 0.8.0
- '@emotion/serialize': 1.1.1
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/runtime': 7.26.0
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/serialize': 1.3.2
babel-plugin-macros: 3.1.0
convert-source-map: 1.9.0
escape-string-regexp: 4.0.0
find-root: 1.1.0
source-map: 0.5.7
- stylis: 4.1.3
+ stylis: 4.2.0
+ transitivePeerDependencies:
+ - supports-color
- '@emotion/cache@11.10.5':
+ '@emotion/cache@11.13.1':
dependencies:
- '@emotion/memoize': 0.8.0
- '@emotion/sheet': 1.2.1
- '@emotion/utils': 1.2.0
- '@emotion/weak-memoize': 0.3.0
- stylis: 4.1.3
+ '@emotion/memoize': 0.9.0
+ '@emotion/sheet': 1.4.0
+ '@emotion/utils': 1.4.1
+ '@emotion/weak-memoize': 0.4.0
+ stylis: 4.2.0
'@emotion/hash@0.8.0': {}
- '@emotion/hash@0.9.0': {}
+ '@emotion/hash@0.9.2': {}
- '@emotion/is-prop-valid@1.2.0':
+ '@emotion/is-prop-valid@1.3.1':
dependencies:
- '@emotion/memoize': 0.8.0
+ '@emotion/memoize': 0.9.0
- '@emotion/is-prop-valid@1.2.1':
- dependencies:
- '@emotion/memoize': 0.8.1
+ '@emotion/memoize@0.9.0': {}
- '@emotion/memoize@0.8.0': {}
-
- '@emotion/memoize@0.8.1': {}
-
- '@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0)':
+ '@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.20.13
- '@emotion/babel-plugin': 11.10.6
- '@emotion/cache': 11.10.5
- '@emotion/serialize': 1.1.1
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0)
- '@emotion/utils': 1.2.0
- '@emotion/weak-memoize': 0.3.0
+ '@babel/runtime': 7.26.0
+ '@emotion/babel-plugin': 11.12.0
+ '@emotion/cache': 11.13.1
+ '@emotion/serialize': 1.3.2
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1)
+ '@emotion/utils': 1.4.1
+ '@emotion/weak-memoize': 0.4.0
hoist-non-react-statics: 3.3.2
- react: 18.2.0
+ react: 18.3.1
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
+ transitivePeerDependencies:
+ - supports-color
- '@emotion/serialize@1.1.1':
+ '@emotion/serialize@1.3.2':
dependencies:
- '@emotion/hash': 0.9.0
- '@emotion/memoize': 0.8.0
- '@emotion/unitless': 0.8.0
- '@emotion/utils': 1.2.0
- csstype: 3.1.1
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/unitless': 0.10.0
+ '@emotion/utils': 1.4.1
+ csstype: 3.1.3
- '@emotion/sheet@1.2.1': {}
+ '@emotion/sheet@1.4.0': {}
- '@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)':
+ '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.20.13
- '@emotion/babel-plugin': 11.10.6
- '@emotion/is-prop-valid': 1.2.0
- '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0)
- '@emotion/serialize': 1.1.1
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0)
- '@emotion/utils': 1.2.0
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@emotion/babel-plugin': 11.12.0
+ '@emotion/is-prop-valid': 1.3.1
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/serialize': 1.3.2
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1)
+ '@emotion/utils': 1.4.1
+ react: 18.3.1
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
+ transitivePeerDependencies:
+ - supports-color
- '@emotion/unitless@0.8.0': {}
+ '@emotion/unitless@0.10.0': {}
- '@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@18.2.0)':
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.3.1)':
dependencies:
- react: 18.2.0
-
- '@emotion/utils@1.2.0': {}
+ react: 18.3.1
- '@emotion/weak-memoize@0.3.0': {}
+ '@emotion/utils@1.4.1': {}
- '@esbuild-kit/cjs-loader@2.4.2':
- dependencies:
- '@esbuild-kit/core-utils': 3.1.0
- get-tsconfig: 4.6.2
+ '@emotion/weak-memoize@0.4.0': {}
- '@esbuild-kit/core-utils@3.1.0':
+ '@esbuild-kit/core-utils@3.3.2':
dependencies:
- esbuild: 0.17.19
+ esbuild: 0.18.20
source-map-support: 0.5.21
- '@esbuild-kit/esm-loader@2.5.5':
+ '@esbuild-kit/esm-loader@2.6.5':
dependencies:
- '@esbuild-kit/core-utils': 3.1.0
- get-tsconfig: 4.6.2
+ '@esbuild-kit/core-utils': 3.3.2
+ get-tsconfig: 4.8.1
+
+ '@esbuild/aix-ppc64@0.19.12':
+ optional: true
'@esbuild/android-arm64@0.17.19':
optional: true
@@ -6444,112 +6012,169 @@ snapshots:
'@esbuild/android-arm64@0.18.20':
optional: true
+ '@esbuild/android-arm64@0.19.12':
+ optional: true
+
'@esbuild/android-arm@0.17.19':
optional: true
'@esbuild/android-arm@0.18.20':
optional: true
+ '@esbuild/android-arm@0.19.12':
+ optional: true
+
'@esbuild/android-x64@0.17.19':
optional: true
'@esbuild/android-x64@0.18.20':
optional: true
+ '@esbuild/android-x64@0.19.12':
+ optional: true
+
'@esbuild/darwin-arm64@0.17.19':
optional: true
'@esbuild/darwin-arm64@0.18.20':
optional: true
+ '@esbuild/darwin-arm64@0.19.12':
+ optional: true
+
'@esbuild/darwin-x64@0.17.19':
optional: true
'@esbuild/darwin-x64@0.18.20':
optional: true
+ '@esbuild/darwin-x64@0.19.12':
+ optional: true
+
'@esbuild/freebsd-arm64@0.17.19':
optional: true
'@esbuild/freebsd-arm64@0.18.20':
optional: true
+ '@esbuild/freebsd-arm64@0.19.12':
+ optional: true
+
'@esbuild/freebsd-x64@0.17.19':
optional: true
'@esbuild/freebsd-x64@0.18.20':
optional: true
+ '@esbuild/freebsd-x64@0.19.12':
+ optional: true
+
'@esbuild/linux-arm64@0.17.19':
optional: true
'@esbuild/linux-arm64@0.18.20':
optional: true
+ '@esbuild/linux-arm64@0.19.12':
+ optional: true
+
'@esbuild/linux-arm@0.17.19':
optional: true
'@esbuild/linux-arm@0.18.20':
optional: true
+ '@esbuild/linux-arm@0.19.12':
+ optional: true
+
'@esbuild/linux-ia32@0.17.19':
optional: true
'@esbuild/linux-ia32@0.18.20':
optional: true
+ '@esbuild/linux-ia32@0.19.12':
+ optional: true
+
'@esbuild/linux-loong64@0.17.19':
optional: true
'@esbuild/linux-loong64@0.18.20':
optional: true
+ '@esbuild/linux-loong64@0.19.12':
+ optional: true
+
'@esbuild/linux-mips64el@0.17.19':
optional: true
'@esbuild/linux-mips64el@0.18.20':
optional: true
+ '@esbuild/linux-mips64el@0.19.12':
+ optional: true
+
'@esbuild/linux-ppc64@0.17.19':
optional: true
'@esbuild/linux-ppc64@0.18.20':
optional: true
+ '@esbuild/linux-ppc64@0.19.12':
+ optional: true
+
'@esbuild/linux-riscv64@0.17.19':
optional: true
'@esbuild/linux-riscv64@0.18.20':
optional: true
+ '@esbuild/linux-riscv64@0.19.12':
+ optional: true
+
'@esbuild/linux-s390x@0.17.19':
optional: true
'@esbuild/linux-s390x@0.18.20':
optional: true
+ '@esbuild/linux-s390x@0.19.12':
+ optional: true
+
'@esbuild/linux-x64@0.17.19':
optional: true
'@esbuild/linux-x64@0.18.20':
optional: true
+ '@esbuild/linux-x64@0.19.12':
+ optional: true
+
'@esbuild/netbsd-x64@0.17.19':
optional: true
'@esbuild/netbsd-x64@0.18.20':
optional: true
+ '@esbuild/netbsd-x64@0.19.12':
+ optional: true
+
'@esbuild/openbsd-x64@0.17.19':
optional: true
'@esbuild/openbsd-x64@0.18.20':
optional: true
+ '@esbuild/openbsd-x64@0.19.12':
+ optional: true
+
'@esbuild/sunos-x64@0.17.19':
optional: true
- '@esbuild/sunos-x64@0.18.20':
+ '@esbuild/sunos-x64@0.18.20':
+ optional: true
+
+ '@esbuild/sunos-x64@0.19.12':
optional: true
'@esbuild/win32-arm64@0.17.19':
@@ -6558,37 +6183,70 @@ snapshots:
'@esbuild/win32-arm64@0.18.20':
optional: true
+ '@esbuild/win32-arm64@0.19.12':
+ optional: true
+
'@esbuild/win32-ia32@0.17.19':
optional: true
'@esbuild/win32-ia32@0.18.20':
optional: true
+ '@esbuild/win32-ia32@0.19.12':
+ optional: true
+
'@esbuild/win32-x64@0.17.19':
optional: true
'@esbuild/win32-x64@0.18.20':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@8.37.0)':
+ '@esbuild/win32-x64@0.19.12':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
+ dependencies:
+ eslint: 8.57.1
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.15.0)':
dependencies:
- eslint: 8.37.0
- eslint-visitor-keys: 3.4.0
+ eslint: 9.15.0
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/regexpp@4.12.1': {}
- '@eslint-community/eslint-utils@4.4.0(eslint@8.38.0)':
+ '@eslint/config-array@0.19.0':
dependencies:
- eslint: 8.38.0
- eslint-visitor-keys: 3.4.0
+ '@eslint/object-schema': 2.1.4
+ debug: 4.3.7(supports-color@9.4.0)
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/core@0.9.0': {}
- '@eslint-community/regexpp@4.5.0': {}
+ '@eslint/eslintrc@2.1.4':
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.7(supports-color@9.4.0)
+ espree: 9.6.1
+ globals: 13.24.0
+ ignore: 5.3.2
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
- '@eslint/eslintrc@2.0.2':
+ '@eslint/eslintrc@3.2.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.4(supports-color@9.4.0)
- espree: 9.5.1
- globals: 13.20.0
- ignore: 5.2.4
+ debug: 4.3.7(supports-color@9.4.0)
+ espree: 10.3.0
+ globals: 14.0.0
+ ignore: 5.3.2
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
@@ -6596,46 +6254,63 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@8.37.0': {}
+ '@eslint/js@8.57.1': {}
+
+ '@eslint/js@9.15.0': {}
+
+ '@eslint/object-schema@2.1.4': {}
- '@eslint/js@8.38.0': {}
+ '@eslint/plugin-kit@0.2.3':
+ dependencies:
+ levn: 0.4.1
'@fastify/busboy@2.1.0': {}
- '@floating-ui/core@1.4.1':
+ '@floating-ui/core@1.6.8':
dependencies:
- '@floating-ui/utils': 0.1.1
+ '@floating-ui/utils': 0.2.8
- '@floating-ui/dom@1.5.1':
+ '@floating-ui/dom@1.6.12':
dependencies:
- '@floating-ui/core': 1.4.1
- '@floating-ui/utils': 0.1.1
+ '@floating-ui/core': 1.6.8
+ '@floating-ui/utils': 0.2.8
- '@floating-ui/react-dom@2.0.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@floating-ui/dom': 1.5.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@floating-ui/dom': 1.6.12
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@floating-ui/utils@0.2.8': {}
+
+ '@humanfs/core@0.19.1': {}
- '@floating-ui/utils@0.1.1': {}
+ '@humanfs/node@0.16.6':
+ dependencies:
+ '@humanfs/core': 0.19.1
+ '@humanwhocodes/retry': 0.3.1
- '@humanwhocodes/config-array@0.11.8':
+ '@humanwhocodes/config-array@0.13.0':
dependencies:
- '@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4(supports-color@9.4.0)
+ '@humanwhocodes/object-schema': 2.0.3
+ debug: 4.3.7(supports-color@9.4.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/object-schema@1.2.1': {}
+ '@humanwhocodes/object-schema@2.0.3': {}
+
+ '@humanwhocodes/retry@0.3.1': {}
- '@icons/material@0.2.4(react@18.2.0)':
+ '@humanwhocodes/retry@0.4.1': {}
+
+ '@icons/material@0.2.4(react@18.3.1)':
dependencies:
- react: 18.2.0
+ react: 18.3.1
- '@jest/schemas@29.6.0':
+ '@jest/schemas@29.6.3':
dependencies:
'@sinclair/typebox': 0.27.8
@@ -6644,25 +6319,36 @@ snapshots:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/gen-mapping@0.3.2':
+ '@jridgewell/gen-mapping@0.3.5':
dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.17
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping': 0.3.25
'@jridgewell/resolve-uri@3.1.0': {}
+ '@jridgewell/resolve-uri@3.1.2': {}
+
'@jridgewell/set-array@1.1.2': {}
+ '@jridgewell/set-array@1.2.1': {}
+
'@jridgewell/sourcemap-codec@1.4.14': {}
'@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/sourcemap-codec@1.5.0': {}
+
'@jridgewell/trace-mapping@0.3.17':
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
+ '@jridgewell/trace-mapping@0.3.25':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.0
+
'@kurkle/color@0.3.2': {}
'@leeoniya/ufuzzy@1.0.14': {}
@@ -6671,66 +6357,66 @@ snapshots:
'@mapbox/polyline@0.2.0': {}
- '@material-ui/core@4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@material-ui/core@4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.20.13
- '@material-ui/styles': 4.11.5(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@material-ui/system': 4.12.2(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@material-ui/types': 5.1.0(@types/react@18.0.28)
- '@material-ui/utils': 4.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@material-ui/styles': 4.11.5(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@material-ui/system': 4.12.2(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@material-ui/types': 5.1.0(@types/react@18.3.12)
+ '@material-ui/utils': 4.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/react-transition-group': 4.4.5
clsx: 1.2.1
hoist-non-react-statics: 3.3.2
popper.js: 1.16.1-lts
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
react-is: 17.0.2
- react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@material-ui/icons@4.11.3(@material-ui/core@4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@material-ui/icons@4.11.3(@material-ui/core@4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.20.13
- '@material-ui/core': 4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@material-ui/core': 4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@material-ui/lab@4.0.0-alpha.61(@material-ui/core@4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@material-ui/lab@4.0.0-alpha.61(@material-ui/core@4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.20.13
- '@material-ui/core': 4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@material-ui/utils': 4.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@material-ui/core': 4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@material-ui/utils': 4.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
clsx: 1.2.1
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
react-is: 17.0.2
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@material-ui/pickers@3.3.10(@date-io/core@2.16.0)(@material-ui/core@4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(prop-types@15.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@material-ui/pickers@3.3.11(@date-io/core@3.0.0)(@material-ui/core@4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.20.13
- '@date-io/core': 2.16.0
- '@material-ui/core': 4.12.4(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@date-io/core': 3.0.0
+ '@material-ui/core': 4.12.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/styled-jsx': 2.2.9
clsx: 1.2.1
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- rifm: 0.7.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rifm: 0.7.0(react@18.3.1)
- '@material-ui/styles@4.11.5(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@material-ui/styles@4.11.5(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
'@emotion/hash': 0.8.0
- '@material-ui/types': 5.1.0(@types/react@18.0.28)
- '@material-ui/utils': 4.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@material-ui/types': 5.1.0(@types/react@18.3.12)
+ '@material-ui/utils': 4.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
clsx: 1.2.1
csstype: 2.6.21
hoist-non-react-statics: 3.3.2
@@ -6743,175 +6429,165 @@ snapshots:
jss-plugin-rule-value-function: 10.10.0
jss-plugin-vendor-prefixer: 10.10.0
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@material-ui/system@4.12.2(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@material-ui/system@4.12.2(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
- '@material-ui/utils': 4.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@material-ui/utils': 4.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
csstype: 2.6.21
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@material-ui/types@5.1.0(@types/react@18.0.28)':
+ '@material-ui/types@5.1.0(@types/react@18.3.12)':
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@material-ui/utils@4.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@material-ui/utils@4.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
react-is: 17.0.2
- '@mui/base@5.0.0-alpha.118(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@mui/base@5.0.0-beta.13(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
- '@emotion/is-prop-valid': 1.2.0
- '@mui/types': 7.2.3(@types/react@18.0.28)
- '@mui/utils': 5.11.9(react@18.2.0)
- '@popperjs/core': 2.11.6
- clsx: 1.2.1
+ '@babel/runtime': 7.26.0
+ '@emotion/is-prop-valid': 1.3.1
+ '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/types': 7.2.19(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
+ '@popperjs/core': 2.11.8
+ clsx: 2.1.1
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-is: 18.2.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-is: 18.3.1
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@mui/base@5.0.0-beta.13(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@mui/base@5.0.0-beta.40(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
- '@emotion/is-prop-valid': 1.2.1
- '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@mui/types': 7.2.4(@types/react@18.0.28)
- '@mui/utils': 5.14.7(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/types': 7.2.19(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@popperjs/core': 2.11.8
- clsx: 2.0.0
+ clsx: 2.1.1
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-is: 18.2.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@mui/core-downloads-tracker@5.11.9': {}
+ '@mui/core-downloads-tracker@5.16.7': {}
- '@mui/icons-material@5.11.9(@mui/material@5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)':
+ '@mui/icons-material@5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.20.13
- '@mui/material': 5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@mui/lab@5.0.0-alpha.120(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@mui/material@5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@mui/lab@5.0.0-alpha.173(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.20.13
- '@mui/base': 5.0.0-alpha.118(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@mui/material': 5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@mui/system': 5.11.9(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)
- '@mui/types': 7.2.3(@types/react@18.0.28)
- '@mui/utils': 5.11.9(react@18.2.0)
- clsx: 1.2.1
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-is: 18.2.0
- optionalDependencies:
- '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0)
- '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)
- '@types/react': 18.0.28
-
- '@mui/material@5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.20.13
- '@mui/base': 5.0.0-alpha.118(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@mui/core-downloads-tracker': 5.11.9
- '@mui/system': 5.11.9(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)
- '@mui/types': 7.2.3(@types/react@18.0.28)
- '@mui/utils': 5.11.9(react@18.2.0)
- '@types/react-transition-group': 4.4.5
- clsx: 1.2.1
- csstype: 3.1.1
+ '@babel/runtime': 7.26.0
+ '@mui/base': 5.0.0-beta.40(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@mui/types': 7.2.19(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
+ clsx: 2.1.1
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-is: 18.2.0
- react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0)
- '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)
- '@types/react': 18.0.28
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@types/react': 18.3.12
- '@mui/private-theming@5.11.9(@types/react@18.0.28)(react@18.2.0)':
+ '@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
- '@mui/utils': 5.11.9(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@mui/core-downloads-tracker': 5.16.7
+ '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@mui/types': 7.2.19(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
+ '@popperjs/core': 2.11.8
+ '@types/react-transition-group': 4.4.11
+ clsx: 2.1.1
+ csstype: 3.1.3
prop-types: 15.8.1
- react: 18.2.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-is: 18.3.1
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
optionalDependencies:
- '@types/react': 18.0.28
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@types/react': 18.3.12
- '@mui/styled-engine@5.11.9(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(react@18.2.0)':
+ '@mui/private-theming@5.16.6(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
- '@emotion/cache': 11.10.5
- csstype: 3.1.1
+ '@babel/runtime': 7.26.0
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
prop-types: 15.8.1
- react: 18.2.0
+ react: 18.3.1
optionalDependencies:
- '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0)
- '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)
+ '@types/react': 18.3.12
- '@mui/system@5.11.9(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)':
+ '@mui/styled-engine@5.16.6(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
- '@mui/private-theming': 5.11.9(@types/react@18.0.28)(react@18.2.0)
- '@mui/styled-engine': 5.11.9(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(react@18.2.0)
- '@mui/types': 7.2.3(@types/react@18.0.28)
- '@mui/utils': 5.11.9(react@18.2.0)
- clsx: 1.2.1
- csstype: 3.1.1
+ '@babel/runtime': 7.26.0
+ '@emotion/cache': 11.13.1
+ csstype: 3.1.3
prop-types: 15.8.1
- react: 18.2.0
+ react: 18.3.1
optionalDependencies:
- '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0)
- '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)
- '@types/react': 18.0.28
-
- '@mui/types@7.2.3(@types/react@18.0.28)':
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+
+ '@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@mui/private-theming': 5.16.6(@types/react@18.3.12)(react@18.3.1)
+ '@mui/styled-engine': 5.16.6(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@mui/types': 7.2.19(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
+ clsx: 2.1.1
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 18.3.1
optionalDependencies:
- '@types/react': 18.0.28
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@types/react': 18.3.12
- '@mui/types@7.2.4(@types/react@18.0.28)':
+ '@mui/types@7.2.19(@types/react@18.3.12)':
optionalDependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@mui/utils@5.11.9(react@18.2.0)':
+ '@mui/utils@5.16.6(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
- '@types/prop-types': 15.7.5
- '@types/react-is': 17.0.3
+ '@babel/runtime': 7.26.0
+ '@mui/types': 7.2.19(@types/react@18.3.12)
+ '@types/prop-types': 15.7.13
+ clsx: 2.1.1
prop-types: 15.8.1
- react: 18.2.0
- react-is: 18.2.0
+ react: 18.3.1
+ react-is: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.12
- '@mui/utils@5.14.7(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.22.11
- '@types/prop-types': 15.7.5
- '@types/react-is': 18.2.1
- prop-types: 15.8.1
- react: 18.2.0
- react-is: 18.2.0
+ '@noble/hashes@1.5.0': {}
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -6925,6 +6601,8 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
+ '@nolyfill/is-core-module@1.0.39': {}
+
'@octokit/auth-token@4.0.0': {}
'@octokit/core@5.1.0':
@@ -6977,37 +6655,41 @@ snapshots:
dependencies:
'@octokit/openapi-types': 19.1.0
+ '@paralleldrive/cuid2@2.2.2':
+ dependencies:
+ '@noble/hashes': 1.5.0
+
'@popperjs/core@2.11.6': {}
'@popperjs/core@2.11.8': {}
- '@react-leaflet/core@2.1.0(leaflet@1.9.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@react-leaflet/core@2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- leaflet: 1.9.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ leaflet: 1.9.4
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- '@reactour/mask@1.1.0(react@18.2.0)':
+ '@reactour/mask@1.1.0(react@18.3.1)':
dependencies:
- '@reactour/utils': 0.5.0(react@18.2.0)
- react: 18.2.0
+ '@reactour/utils': 0.5.0(react@18.3.1)
+ react: 18.3.1
- '@reactour/popover@1.1.1(react@18.2.0)':
+ '@reactour/popover@1.1.1(react@18.3.1)':
dependencies:
- '@reactour/utils': 0.5.0(react@18.2.0)
- react: 18.2.0
+ '@reactour/utils': 0.5.0(react@18.3.1)
+ react: 18.3.1
- '@reactour/tour@3.6.1(react@18.2.0)':
+ '@reactour/tour@3.7.0(react@18.3.1)':
dependencies:
- '@reactour/mask': 1.1.0(react@18.2.0)
- '@reactour/popover': 1.1.1(react@18.2.0)
- '@reactour/utils': 0.5.0(react@18.2.0)
- react: 18.2.0
+ '@reactour/mask': 1.1.0(react@18.3.1)
+ '@reactour/popover': 1.1.1(react@18.3.1)
+ '@reactour/utils': 0.5.0(react@18.3.1)
+ react: 18.3.1
- '@reactour/utils@0.5.0(react@18.2.0)':
+ '@reactour/utils@0.5.0(react@18.3.1)':
dependencies:
- '@rooks/use-mutation-observer': 4.11.2(react@18.2.0)
- react: 18.2.0
+ '@rooks/use-mutation-observer': 4.11.2(react@18.3.1)
+ react: 18.3.1
resize-observer-polyfill: 1.5.1
'@redocly/ajv@8.11.2':
@@ -7019,7 +6701,7 @@ snapshots:
'@redocly/config@0.16.0': {}
- '@redocly/openapi-core@1.25.11(supports-color@9.4.0)':
+ '@redocly/openapi-core@1.25.13(supports-color@9.4.0)':
dependencies:
'@redocly/ajv': 8.11.2
'@redocly/config': 0.16.0
@@ -7036,353 +6718,419 @@ snapshots:
- encoding
- supports-color
- '@remix-run/router@1.3.2': {}
+ '@remix-run/router@1.21.0': {}
- '@restart/hooks@0.4.9(react@18.2.0)':
+ '@restart/hooks@0.4.9(react@18.3.1)':
dependencies:
dequal: 2.0.3
- react: 18.2.0
+ react: 18.3.1
- '@rollup/pluginutils@5.0.2(rollup@3.29.1)':
+ '@rollup/pluginutils@5.1.3(rollup@4.27.2)':
dependencies:
- '@types/estree': 1.0.0
+ '@types/estree': 1.0.6
estree-walker: 2.0.2
- picomatch: 2.3.1
+ picomatch: 4.0.2
optionalDependencies:
- rollup: 3.29.1
+ rollup: 4.27.2
+
+ '@rollup/rollup-android-arm-eabi@4.27.2':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.27.2':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.27.2':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.27.2':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.27.2':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.27.2':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.27.2':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.27.2':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.27.2':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.27.2':
+ optional: true
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.27.2':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.27.2':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.27.2':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.27.2':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.27.2':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.27.2':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.27.2':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.27.2':
+ optional: true
- '@rooks/use-mutation-observer@4.11.2(react@18.2.0)':
+ '@rooks/use-mutation-observer@4.11.2(react@18.3.1)':
dependencies:
- react: 18.2.0
+ react: 18.3.1
+
+ '@rtsao/scc@1.1.0': {}
'@sinclair/typebox@0.27.8': {}
'@smithy/abort-controller@1.1.0':
dependencies:
'@smithy/types': 1.2.0
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/abort-controller@2.0.16':
+ '@smithy/abort-controller@3.1.8':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/config-resolver@2.0.23':
+ '@smithy/config-resolver@3.0.12':
dependencies:
- '@smithy/node-config-provider': 2.1.9
- '@smithy/types': 2.8.0
- '@smithy/util-config-provider': 2.1.0
- '@smithy/util-middleware': 2.0.9
- tslib: 2.5.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
+ '@smithy/util-config-provider': 3.0.0
+ '@smithy/util-middleware': 3.0.10
+ tslib: 2.8.1
- '@smithy/core@1.2.2':
+ '@smithy/core@2.5.3':
dependencies:
- '@smithy/middleware-endpoint': 2.3.0
- '@smithy/middleware-retry': 2.0.26
- '@smithy/middleware-serde': 2.0.16
- '@smithy/protocol-http': 3.0.12
- '@smithy/smithy-client': 2.2.1
- '@smithy/types': 2.8.0
- '@smithy/util-middleware': 2.0.9
- tslib: 2.5.0
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-stream': 3.3.1
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
- '@smithy/credential-provider-imds@2.1.5':
+ '@smithy/credential-provider-imds@3.2.7':
dependencies:
- '@smithy/node-config-provider': 2.1.9
- '@smithy/property-provider': 2.0.17
- '@smithy/types': 2.8.0
- '@smithy/url-parser': 2.0.16
- tslib: 2.5.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ tslib: 2.8.1
- '@smithy/eventstream-codec@2.0.16':
+ '@smithy/fetch-http-handler@4.1.1':
dependencies:
- '@aws-crypto/crc32': 3.0.0
- '@smithy/types': 2.8.0
- '@smithy/util-hex-encoding': 2.0.0
- tslib: 2.5.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/querystring-builder': 3.0.10
+ '@smithy/types': 3.7.1
+ '@smithy/util-base64': 3.0.0
+ tslib: 2.8.1
- '@smithy/fetch-http-handler@2.3.2':
+ '@smithy/hash-node@3.0.10':
dependencies:
- '@smithy/protocol-http': 3.0.12
- '@smithy/querystring-builder': 2.0.16
- '@smithy/types': 2.8.0
- '@smithy/util-base64': 2.0.1
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ '@smithy/util-buffer-from': 3.0.0
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
- '@smithy/hash-node@2.0.18':
+ '@smithy/invalid-dependency@3.0.10':
dependencies:
- '@smithy/types': 2.8.0
- '@smithy/util-buffer-from': 2.0.0
- '@smithy/util-utf8': 2.0.2
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/invalid-dependency@2.0.16':
+ '@smithy/is-array-buffer@2.2.0':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/is-array-buffer@2.0.0':
+ '@smithy/is-array-buffer@3.0.0':
dependencies:
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/middleware-content-length@2.0.18':
+ '@smithy/middleware-content-length@3.0.12':
dependencies:
- '@smithy/protocol-http': 3.0.12
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/middleware-endpoint@2.3.0':
+ '@smithy/middleware-endpoint@3.2.3':
dependencies:
- '@smithy/middleware-serde': 2.0.16
- '@smithy/node-config-provider': 2.1.9
- '@smithy/shared-ini-file-loader': 2.2.8
- '@smithy/types': 2.8.0
- '@smithy/url-parser': 2.0.16
- '@smithy/util-middleware': 2.0.9
- tslib: 2.5.0
+ '@smithy/core': 2.5.3
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-middleware': 3.0.10
+ tslib: 2.8.1
- '@smithy/middleware-retry@2.0.26':
+ '@smithy/middleware-retry@3.0.27':
dependencies:
- '@smithy/node-config-provider': 2.1.9
- '@smithy/protocol-http': 3.0.12
- '@smithy/service-error-classification': 2.0.9
- '@smithy/smithy-client': 2.2.1
- '@smithy/types': 2.8.0
- '@smithy/util-middleware': 2.0.9
- '@smithy/util-retry': 2.0.9
- tslib: 2.5.0
- uuid: 8.3.2
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/service-error-classification': 3.0.10
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ tslib: 2.8.1
+ uuid: 9.0.1
- '@smithy/middleware-serde@2.0.16':
+ '@smithy/middleware-serde@3.0.10':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/middleware-stack@2.0.10':
+ '@smithy/middleware-stack@3.0.10':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/node-config-provider@2.1.9':
+ '@smithy/node-config-provider@3.1.11':
dependencies:
- '@smithy/property-provider': 2.0.17
- '@smithy/shared-ini-file-loader': 2.2.8
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/node-http-handler@2.2.2':
+ '@smithy/node-http-handler@3.3.1':
dependencies:
- '@smithy/abort-controller': 2.0.16
- '@smithy/protocol-http': 3.0.12
- '@smithy/querystring-builder': 2.0.16
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/abort-controller': 3.1.8
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/querystring-builder': 3.0.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/property-provider@2.0.17':
+ '@smithy/property-provider@3.1.10':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/protocol-http@3.0.12':
+ '@smithy/protocol-http@4.1.7':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/querystring-builder@2.0.16':
+ '@smithy/querystring-builder@3.0.10':
dependencies:
- '@smithy/types': 2.8.0
- '@smithy/util-uri-escape': 2.0.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ '@smithy/util-uri-escape': 3.0.0
+ tslib: 2.8.1
- '@smithy/querystring-parser@2.0.16':
+ '@smithy/querystring-parser@3.0.10':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/service-error-classification@2.0.9':
+ '@smithy/service-error-classification@3.0.10':
dependencies:
- '@smithy/types': 2.8.0
+ '@smithy/types': 3.7.1
- '@smithy/shared-ini-file-loader@2.2.8':
+ '@smithy/shared-ini-file-loader@3.1.11':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/signature-v4@2.0.19':
+ '@smithy/signature-v4@4.2.3':
dependencies:
- '@smithy/eventstream-codec': 2.0.16
- '@smithy/is-array-buffer': 2.0.0
- '@smithy/types': 2.8.0
- '@smithy/util-hex-encoding': 2.0.0
- '@smithy/util-middleware': 2.0.9
- '@smithy/util-uri-escape': 2.0.0
- '@smithy/util-utf8': 2.0.2
- tslib: 2.5.0
+ '@smithy/is-array-buffer': 3.0.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-hex-encoding': 3.0.0
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-uri-escape': 3.0.0
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
- '@smithy/smithy-client@2.2.1':
+ '@smithy/smithy-client@3.4.4':
dependencies:
- '@smithy/middleware-endpoint': 2.3.0
- '@smithy/middleware-stack': 2.0.10
- '@smithy/protocol-http': 3.0.12
- '@smithy/types': 2.8.0
- '@smithy/util-stream': 2.0.24
- tslib: 2.5.0
+ '@smithy/core': 2.5.3
+ '@smithy/middleware-endpoint': 3.2.3
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-stream': 3.3.1
+ tslib: 2.8.1
'@smithy/types@1.2.0':
dependencies:
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/types@2.8.0':
+ '@smithy/types@3.7.1':
dependencies:
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/url-parser@2.0.16':
+ '@smithy/url-parser@3.0.10':
dependencies:
- '@smithy/querystring-parser': 2.0.16
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/querystring-parser': 3.0.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/util-base64@2.0.1':
+ '@smithy/util-base64@3.0.0':
dependencies:
- '@smithy/util-buffer-from': 2.0.0
- tslib: 2.5.0
+ '@smithy/util-buffer-from': 3.0.0
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
- '@smithy/util-body-length-browser@2.0.1':
+ '@smithy/util-body-length-browser@3.0.0':
dependencies:
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/util-body-length-node@2.1.0':
+ '@smithy/util-body-length-node@3.0.0':
dependencies:
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/util-buffer-from@2.0.0':
+ '@smithy/util-buffer-from@2.2.0':
dependencies:
- '@smithy/is-array-buffer': 2.0.0
- tslib: 2.5.0
+ '@smithy/is-array-buffer': 2.2.0
+ tslib: 2.8.1
- '@smithy/util-config-provider@2.1.0':
+ '@smithy/util-buffer-from@3.0.0':
dependencies:
- tslib: 2.5.0
+ '@smithy/is-array-buffer': 3.0.0
+ tslib: 2.8.1
- '@smithy/util-defaults-mode-browser@2.0.24':
+ '@smithy/util-config-provider@3.0.0':
dependencies:
- '@smithy/property-provider': 2.0.17
- '@smithy/smithy-client': 2.2.1
- '@smithy/types': 2.8.0
+ tslib: 2.8.1
+
+ '@smithy/util-defaults-mode-browser@3.0.27':
+ dependencies:
+ '@smithy/property-provider': 3.1.10
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
bowser: 2.11.0
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/util-defaults-mode-node@2.0.32':
+ '@smithy/util-defaults-mode-node@3.0.27':
dependencies:
- '@smithy/config-resolver': 2.0.23
- '@smithy/credential-provider-imds': 2.1.5
- '@smithy/node-config-provider': 2.1.9
- '@smithy/property-provider': 2.0.17
- '@smithy/smithy-client': 2.2.1
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/property-provider': 3.1.10
+ '@smithy/smithy-client': 3.4.4
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/util-endpoints@1.0.8':
+ '@smithy/util-endpoints@2.1.6':
dependencies:
- '@smithy/node-config-provider': 2.1.9
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/util-hex-encoding@2.0.0':
+ '@smithy/util-hex-encoding@3.0.0':
dependencies:
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/util-middleware@2.0.9':
+ '@smithy/util-middleware@3.0.10':
dependencies:
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/util-retry@2.0.9':
+ '@smithy/util-retry@3.0.10':
dependencies:
- '@smithy/service-error-classification': 2.0.9
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/service-error-classification': 3.0.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@smithy/util-stream@2.0.24':
+ '@smithy/util-stream@3.3.1':
dependencies:
- '@smithy/fetch-http-handler': 2.3.2
- '@smithy/node-http-handler': 2.2.2
- '@smithy/types': 2.8.0
- '@smithy/util-base64': 2.0.1
- '@smithy/util-buffer-from': 2.0.0
- '@smithy/util-hex-encoding': 2.0.0
- '@smithy/util-utf8': 2.0.2
- tslib: 2.5.0
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/types': 3.7.1
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-buffer-from': 3.0.0
+ '@smithy/util-hex-encoding': 3.0.0
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
- '@smithy/util-uri-escape@2.0.0':
+ '@smithy/util-uri-escape@3.0.0':
dependencies:
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/util-utf8@2.0.2':
+ '@smithy/util-utf8@2.3.0':
dependencies:
- '@smithy/util-buffer-from': 2.0.0
- tslib: 2.5.0
+ '@smithy/util-buffer-from': 2.2.0
+ tslib: 2.8.1
+
+ '@smithy/util-utf8@3.0.0':
+ dependencies:
+ '@smithy/util-buffer-from': 3.0.0
+ tslib: 2.8.1
'@smithy/util-waiter@1.1.0':
dependencies:
'@smithy/abort-controller': 1.1.0
'@smithy/types': 1.2.0
- tslib: 2.5.0
+ tslib: 2.8.1
- '@smithy/util-waiter@2.0.16':
+ '@smithy/util-waiter@3.1.9':
dependencies:
- '@smithy/abort-controller': 2.0.16
- '@smithy/types': 2.8.0
- tslib: 2.5.0
+ '@smithy/abort-controller': 3.1.8
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.20.12)':
+ '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.20.12)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.20.12)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.20.12)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.20.12)':
+ '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.20.12)':
+ '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.20.12)':
+ '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.20.12)':
+ '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.26.0
- '@svgr/babel-preset@6.5.1(@babel/core@7.20.12)':
+ '@svgr/babel-preset@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.20.12
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.20.12)
- '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0(@babel/core@7.20.12)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0(@babel/core@7.20.12)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.20.12)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.20.12)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.20.12)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.20.12)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.20.12)
+ '@babel/core': 7.26.0
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.26.0)
'@svgr/core@6.5.1':
dependencies:
- '@babel/core': 7.20.12
- '@svgr/babel-preset': 6.5.1(@babel/core@7.20.12)
+ '@babel/core': 7.26.0
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.26.0)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -7391,78 +7139,99 @@ snapshots:
'@svgr/hast-util-to-babel-ast@6.5.1':
dependencies:
- '@babel/types': 7.20.7
- entities: 4.4.0
+ '@babel/types': 7.26.0
+ entities: 4.5.0
'@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)':
dependencies:
- '@babel/core': 7.20.12
- '@svgr/babel-preset': 6.5.1(@babel/core@7.20.12)
+ '@babel/core': 7.26.0
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.26.0)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
- '@tanstack/query-core@4.24.10': {}
+ '@tanstack/query-core@4.36.1': {}
- '@tanstack/react-query@4.24.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tanstack/query-core': 4.24.10
- react: 18.2.0
- use-sync-external-store: 1.2.0(react@18.2.0)
+ '@tanstack/query-core': 4.36.1
+ react: 18.3.1
+ use-sync-external-store: 1.2.2(react@18.3.1)
optionalDependencies:
- react-dom: 18.2.0(react@18.2.0)
+ react-dom: 18.3.1(react@18.3.1)
- '@testing-library/dom@9.3.1':
+ '@testing-library/dom@9.3.4':
dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/runtime': 7.22.11
- '@types/aria-query': 5.0.1
+ '@babel/code-frame': 7.26.2
+ '@babel/runtime': 7.26.0
+ '@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
dom-accessibility-api: 0.5.16
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/react@14.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@testing-library/react@14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.22.11
- '@testing-library/dom': 9.3.1
- '@types/react-dom': 18.0.11
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@testing-library/dom': 9.3.4
+ '@types/react-dom': 18.3.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
'@tootallnate/once@2.0.0': {}
- '@trpc/client@10.30.0(@trpc/server@10.30.0)':
+ '@trpc/client@10.45.2(@trpc/server@10.45.2)':
+ dependencies:
+ '@trpc/server': 10.45.2
+
+ '@trpc/server@10.45.2': {}
+
+ '@types/aria-query@5.0.4': {}
+
+ '@types/aws-lambda@8.10.145': {}
+
+ '@types/babel__core@7.20.5':
dependencies:
- '@trpc/server': 10.30.0
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.6
- '@trpc/server@10.30.0': {}
+ '@types/babel__generator@7.6.8':
+ dependencies:
+ '@babel/types': 7.26.0
- '@types/aria-query@5.0.1': {}
+ '@types/babel__template@7.4.4':
+ dependencies:
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
- '@types/aws-lambda@8.10.110': {}
+ '@types/babel__traverse@7.20.6':
+ dependencies:
+ '@babel/types': 7.26.0
'@types/body-parser@1.19.2':
dependencies:
'@types/connect': 3.4.35
- '@types/node': 20.11.5
+ '@types/node': 20.17.6
- '@types/chai-subset@1.3.3':
+ '@types/chai-subset@1.3.5':
dependencies:
- '@types/chai': 4.3.5
+ '@types/chai': 4.3.20
- '@types/chai@4.3.5': {}
+ '@types/chai@4.3.20': {}
'@types/connect@3.4.35':
dependencies:
- '@types/node': 20.11.5
+ '@types/node': 20.17.6
- '@types/cors@2.8.13':
+ '@types/cors@2.8.17':
dependencies:
- '@types/node': 20.11.5
+ '@types/node': 20.17.6
'@types/d3-array@3.0.4': {}
@@ -7490,272 +7259,263 @@ snapshots:
'@types/date-arithmetic@4.1.1': {}
- '@types/eslint@8.56.5':
+ '@types/eslint@8.56.12':
dependencies:
- '@types/estree': 1.0.0
- '@types/json-schema': 7.0.11
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
- '@types/estree@1.0.0': {}
+ '@types/estree@1.0.6': {}
- '@types/express-serve-static-core@4.17.35':
+ '@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 20.11.5
+ '@types/node': 20.17.6
'@types/qs': 6.9.7
- '@types/range-parser': 1.2.4
- '@types/send': 0.17.1
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
- '@types/express@4.17.17':
+ '@types/express@4.17.21':
dependencies:
'@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.35
+ '@types/express-serve-static-core': 4.19.6
'@types/qs': 6.9.7
'@types/serve-static': 1.15.1
- '@types/file-saver@2.0.5': {}
+ '@types/file-saver@2.0.7': {}
'@types/geojson@7946.0.10': {}
- '@types/json-schema@7.0.11': {}
+ '@types/json-schema@7.0.15': {}
'@types/json5@0.0.29': {}
- '@types/leaflet-routing-machine@3.2.4':
+ '@types/leaflet-routing-machine@3.2.8':
dependencies:
- '@types/leaflet': 1.9.0
+ '@types/leaflet': 1.9.14
- '@types/leaflet.locatecontrol@0.74.1':
+ '@types/leaflet.locatecontrol@0.74.6':
dependencies:
- '@types/leaflet': 1.9.0
+ '@types/leaflet': 1.9.14
- '@types/leaflet@1.9.0':
+ '@types/leaflet@1.9.14':
dependencies:
'@types/geojson': 7946.0.10
- '@types/lodash@4.14.191': {}
-
- '@types/mime@1.3.2': {}
+ '@types/mime@1.3.5': {}
'@types/mime@3.0.1': {}
- '@types/node@18.13.0': {}
-
- '@types/node@20.11.5':
+ '@types/node@18.19.64':
dependencies:
undici-types: 5.26.5
- '@types/node@20.11.6':
+ '@types/node@20.17.6':
dependencies:
- undici-types: 5.26.5
+ undici-types: 6.19.8
- '@types/parse-json@4.0.0': {}
+ '@types/parse-json@4.0.2': {}
+
+ '@types/prop-types@15.7.13': {}
'@types/prop-types@15.7.5': {}
'@types/qs@6.9.7': {}
- '@types/range-parser@1.2.4': {}
+ '@types/range-parser@1.2.7': {}
- '@types/react-big-calendar@1.6.0':
+ '@types/react-big-calendar@1.15.0':
dependencies:
'@types/date-arithmetic': 4.1.1
'@types/prop-types': 15.7.5
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@types/react-color@3.0.6':
+ '@types/react-color@3.0.12':
dependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
'@types/reactcss': 1.2.6
- '@types/react-dom@18.0.11':
- dependencies:
- '@types/react': 18.0.28
-
- '@types/react-input-mask@3.0.2':
+ '@types/react-dom@18.3.1':
dependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@types/react-is@17.0.3':
+ '@types/react-input-mask@3.0.6':
dependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@types/react-is@18.2.1':
+ '@types/react-lazyload@3.2.3':
dependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@types/react-lazyload@3.2.0':
+ '@types/react-transition-group@4.4.11':
dependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
'@types/react-transition-group@4.4.5':
dependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
- '@types/react@18.0.28':
+ '@types/react@18.3.12':
dependencies:
- '@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.2
- csstype: 3.1.1
+ '@types/prop-types': 15.7.13
+ csstype: 3.1.3
'@types/reactcss@1.2.6':
dependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
'@types/reactour@1.18.5':
dependencies:
- '@types/react': 18.0.28
-
- '@types/scheduler@0.16.2': {}
+ '@types/react': 18.3.12
- '@types/semver@7.3.13': {}
+ '@types/semver@7.5.8': {}
- '@types/send@0.17.1':
+ '@types/send@0.17.4':
dependencies:
- '@types/mime': 1.3.2
- '@types/node': 20.11.5
+ '@types/mime': 1.3.5
+ '@types/node': 20.17.6
'@types/serve-static@1.15.1':
dependencies:
'@types/mime': 3.0.1
- '@types/node': 20.11.5
+ '@types/node': 20.17.6
'@types/styled-jsx@2.2.9':
dependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.3.12
'@types/ua-parser-js@0.7.39': {}
- '@types/warning@3.0.0': {}
-
- '@types/webidl-conversions@7.0.0': {}
+ '@types/uuid@9.0.8': {}
- '@types/whatwg-url@8.2.2':
- dependencies:
- '@types/node': 20.11.5
- '@types/webidl-conversions': 7.0.0
+ '@types/warning@3.0.0': {}
- '@typescript-eslint/eslint-plugin@5.57.1(@typescript-eslint/parser@5.57.1(eslint@8.38.0)(typescript@5.6.3))(eslint@8.38.0)(typescript@5.6.3)':
- dependencies:
- '@eslint-community/regexpp': 4.5.0
- '@typescript-eslint/parser': 5.57.1(eslint@8.38.0)(typescript@5.6.3)
- '@typescript-eslint/scope-manager': 5.57.1
- '@typescript-eslint/type-utils': 5.57.1(eslint@8.38.0)(typescript@5.6.3)
- '@typescript-eslint/utils': 5.57.1(eslint@8.38.0)(typescript@5.6.3)
- debug: 4.3.4(supports-color@9.4.0)
- eslint: 8.38.0
- grapheme-splitter: 1.0.4
- ignore: 5.2.4
+ '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.6.3)
+ debug: 4.3.7(supports-color@9.4.0)
+ eslint: 8.57.1
+ graphemer: 1.4.0
+ ignore: 5.3.2
natural-compare-lite: 1.4.0
- semver: 7.3.8
+ semver: 7.6.3
tsutils: 3.21.0(typescript@5.6.3)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@5.57.1(eslint@8.38.0)(typescript@5.6.3)':
+ '@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 5.57.1
- '@typescript-eslint/types': 5.57.1
- '@typescript-eslint/typescript-estree': 5.57.1(typescript@5.6.3)
- debug: 4.3.4(supports-color@9.4.0)
- eslint: 8.38.0
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
+ debug: 4.3.7(supports-color@9.4.0)
+ eslint: 8.57.1
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@5.57.1':
+ '@typescript-eslint/scope-manager@5.62.0':
dependencies:
- '@typescript-eslint/types': 5.57.1
- '@typescript-eslint/visitor-keys': 5.57.1
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
- '@typescript-eslint/type-utils@5.57.1(eslint@8.38.0)(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@5.62.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 5.57.1(typescript@5.6.3)
- '@typescript-eslint/utils': 5.57.1(eslint@8.38.0)(typescript@5.6.3)
- debug: 4.3.4(supports-color@9.4.0)
- eslint: 8.38.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.6.3)
+ debug: 4.3.7(supports-color@9.4.0)
+ eslint: 8.57.1
tsutils: 3.21.0(typescript@5.6.3)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@5.57.1': {}
+ '@typescript-eslint/types@5.62.0': {}
- '@typescript-eslint/typescript-estree@5.57.1(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 5.57.1
- '@typescript-eslint/visitor-keys': 5.57.1
- debug: 4.3.4(supports-color@9.4.0)
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
+ debug: 4.3.7(supports-color@9.4.0)
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.8
+ semver: 7.6.3
tsutils: 3.21.0(typescript@5.6.3)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.57.1(eslint@8.38.0)(typescript@5.6.3)':
+ '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0)
- '@types/json-schema': 7.0.11
- '@types/semver': 7.3.13
- '@typescript-eslint/scope-manager': 5.57.1
- '@typescript-eslint/types': 5.57.1
- '@typescript-eslint/typescript-estree': 5.57.1(typescript@5.6.3)
- eslint: 8.38.0
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.8
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
+ eslint: 8.57.1
eslint-scope: 5.1.1
- semver: 7.3.8
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@5.57.1':
+ '@typescript-eslint/visitor-keys@5.62.0':
dependencies:
- '@typescript-eslint/types': 5.57.1
- eslint-visitor-keys: 3.4.0
+ '@typescript-eslint/types': 5.62.0
+ eslint-visitor-keys: 3.4.3
+
+ '@ungap/structured-clone@1.2.0': {}
- '@vendia/serverless-express@4.10.1': {}
+ '@vendia/serverless-express@4.12.6':
+ dependencies:
+ '@codegenie/serverless-express': 4.16.0
- '@vitejs/plugin-react@4.0.4(vite@4.4.9(@types/node@18.13.0))':
+ '@vitejs/plugin-react@4.3.3(vite@4.5.5(@types/node@18.19.64))':
dependencies:
- '@babel/core': 7.22.17
- '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.17)
- '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.17)
- react-refresh: 0.14.0
- vite: 4.4.9(@types/node@18.13.0)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.14.2
+ vite: 4.5.5(@types/node@18.19.64)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@0.34.4':
+ '@vitest/expect@0.34.6':
dependencies:
- '@vitest/spy': 0.34.4
- '@vitest/utils': 0.34.4
- chai: 4.3.7
+ '@vitest/spy': 0.34.6
+ '@vitest/utils': 0.34.6
+ chai: 4.5.0
- '@vitest/runner@0.34.4':
+ '@vitest/runner@0.34.6':
dependencies:
- '@vitest/utils': 0.34.4
+ '@vitest/utils': 0.34.6
p-limit: 4.0.0
- pathe: 1.1.1
+ pathe: 1.1.2
- '@vitest/snapshot@0.34.4':
+ '@vitest/snapshot@0.34.6':
dependencies:
- magic-string: 0.30.2
- pathe: 1.1.1
- pretty-format: 29.6.2
+ magic-string: 0.30.12
+ pathe: 1.1.2
+ pretty-format: 29.7.0
- '@vitest/spy@0.34.4':
+ '@vitest/spy@0.34.6':
dependencies:
- tinyspy: 2.1.1
+ tinyspy: 2.2.1
- '@vitest/utils@0.34.4':
+ '@vitest/utils@0.34.6':
dependencies:
- diff-sequences: 29.4.3
- loupe: 2.3.6
- pretty-format: 29.6.2
+ diff-sequences: 29.6.3
+ loupe: 2.3.7
+ pretty-format: 29.7.0
abab@2.0.6: {}
@@ -7766,33 +7526,28 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-jsx@5.3.2(acorn@8.8.2):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.8.2
-
- acorn-walk@8.2.0: {}
+ acorn: 8.14.0
- acorn@8.10.0: {}
+ acorn-walk@8.3.4:
+ dependencies:
+ acorn: 8.14.0
- acorn@8.8.2: {}
+ acorn@8.14.0: {}
agent-base@6.0.2:
dependencies:
- debug: 4.3.4(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
agent-base@7.1.1(supports-color@9.4.0):
dependencies:
- debug: 4.3.4(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- aggregate-error@3.1.0:
- dependencies:
- clean-stack: 2.2.0
- indent-string: 4.0.0
-
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -7802,17 +7557,13 @@ snapshots:
ansi-colors@4.1.3: {}
- ansi-escapes@4.3.2:
+ ansi-escapes@5.0.0:
dependencies:
- type-fest: 0.21.3
+ type-fest: 1.4.0
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
-
- ansi-styles@3.2.1:
- dependencies:
- color-convert: 1.9.3
+ ansi-regex@6.1.0: {}
ansi-styles@4.3.0:
dependencies:
@@ -7835,62 +7586,102 @@ snapshots:
aria-query@5.1.3:
dependencies:
- deep-equal: 2.2.0
+ deep-equal: 2.2.3
+
+ aria-query@5.3.2: {}
arktype@1.0.14-alpha: {}
+ array-buffer-byte-length@1.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ is-array-buffer: 3.0.4
+
array-flatten@1.1.1: {}
- array-includes@3.1.6:
+ array-includes@3.1.8:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
- get-intrinsic: 1.2.0
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
is-string: 1.0.7
array-union@2.1.0: {}
- array.prototype.flat@1.3.1:
+ array.prototype.findlast@1.2.5:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
- es-shim-unscopables: 1.0.0
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
- array.prototype.flatmap@1.3.1:
+ array.prototype.findlastindex@1.2.5:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
- es-shim-unscopables: 1.0.0
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
- array.prototype.tosorted@1.1.1:
+ array.prototype.flat@1.3.2:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
- es-shim-unscopables: 1.0.0
- get-intrinsic: 1.2.0
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-shim-unscopables: 1.0.2
- assertion-error@1.1.0: {}
+ array.prototype.flatmap@1.3.2:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-shim-unscopables: 1.0.2
+
+ array.prototype.tosorted@1.1.4:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-errors: 1.3.0
+ es-shim-unscopables: 1.0.2
- ast-types-flow@0.0.7: {}
+ arraybuffer.prototype.slice@1.0.3:
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ is-array-buffer: 3.0.4
+ is-shared-array-buffer: 1.0.3
+
+ assertion-error@1.1.0: {}
- astral-regex@2.0.0: {}
+ ast-types-flow@0.0.8: {}
asynckit@0.4.0: {}
available-typed-arrays@1.0.5: {}
- aws-cdk-lib@2.121.1(constructs@10.3.0):
+ available-typed-arrays@1.0.7:
+ dependencies:
+ possible-typed-array-names: 1.0.0
+
+ aws-cdk-lib@2.167.1(constructs@10.4.2):
dependencies:
- '@aws-cdk/asset-awscli-v1': 2.2.201
- '@aws-cdk/asset-kubectl-v20': 2.1.2
- '@aws-cdk/asset-node-proxy-agent-v6': 2.0.1
- constructs: 10.3.0
+ '@aws-cdk/asset-awscli-v1': 2.2.211
+ '@aws-cdk/asset-kubectl-v20': 2.1.3
+ '@aws-cdk/asset-node-proxy-agent-v6': 2.1.0
+ '@aws-cdk/cloud-assembly-schema': 38.0.1
+ constructs: 10.4.2
- aws-cdk@2.121.1:
+ aws-cdk@2.167.1:
optionalDependencies:
fsevents: 2.3.2
@@ -7914,7 +7705,7 @@ snapshots:
uuid: 8.0.0
xml2js: 0.4.19
- aws-sdk@2.1550.0:
+ aws-sdk@2.1692.0:
dependencies:
buffer: 4.9.2
events: 1.1.1
@@ -7927,17 +7718,15 @@ snapshots:
uuid: 8.0.0
xml2js: 0.6.2
- axe-core@4.6.3: {}
+ axe-core@4.10.2: {}
- axobject-query@3.1.1:
- dependencies:
- deep-equal: 2.2.0
+ axobject-query@4.1.0: {}
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
cosmiconfig: 7.1.0
- resolve: 1.22.1
+ resolve: 1.22.8
balanced-match@1.0.2: {}
@@ -7949,7 +7738,7 @@ snapshots:
binary-extensions@2.2.0: {}
- body-parser@1.20.1:
+ body-parser@1.20.3:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -7959,8 +7748,8 @@ snapshots:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
- raw-body: 2.5.1
+ qs: 6.13.0
+ raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
@@ -7977,25 +7766,16 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.2:
- dependencies:
- fill-range: 7.0.1
-
- browserslist@4.21.10:
+ braces@3.0.3:
dependencies:
- caniuse-lite: 1.0.30001532
- electron-to-chromium: 1.4.514
- node-releases: 2.0.13
- update-browserslist-db: 1.0.11(browserslist@4.21.10)
+ fill-range: 7.1.1
- browserslist@4.21.5:
+ browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001454
- electron-to-chromium: 1.4.300
- node-releases: 2.0.10
- update-browserslist-db: 1.0.10(browserslist@4.21.5)
-
- bson@5.3.0: {}
+ caniuse-lite: 1.0.30001680
+ electron-to-chromium: 1.5.62
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
buffer-from@1.1.2: {}
@@ -8009,72 +7789,64 @@ snapshots:
cac@6.7.14: {}
- call-bind@1.0.2:
+ call-bind@1.0.7:
dependencies:
- function-bind: 1.1.1
- get-intrinsic: 1.2.0
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ set-function-length: 1.2.2
callsites@3.1.0: {}
camelcase@6.3.0: {}
- caniuse-lite@1.0.30001454: {}
-
- caniuse-lite@1.0.30001532: {}
+ caniuse-lite@1.0.30001680: {}
- chai@4.3.7:
+ chai@4.5.0:
dependencies:
assertion-error: 1.1.0
- check-error: 1.0.2
- deep-eql: 4.1.3
- get-func-name: 2.0.0
- loupe: 2.3.6
+ check-error: 1.0.3
+ deep-eql: 4.1.4
+ get-func-name: 2.0.2
+ loupe: 2.3.7
pathval: 1.1.1
- type-detect: 4.0.8
-
- chalk@2.4.2:
- dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
+ type-detect: 4.1.0
chalk@4.1.2:
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
+ chalk@5.3.0: {}
+
change-case@5.4.4: {}
- chart.js@4.2.1:
+ chart.js@4.4.6:
dependencies:
'@kurkle/color': 0.3.2
- check-error@1.0.2: {}
+ check-error@1.0.3:
+ dependencies:
+ get-func-name: 2.0.2
chokidar@3.5.3:
dependencies:
anymatch: 3.1.3
- braces: 3.0.2
+ braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
- classnames@2.3.2: {}
+ classnames@2.5.1: {}
- clean-stack@2.2.0: {}
-
- cli-cursor@3.1.0:
- dependencies:
- restore-cursor: 3.1.0
-
- cli-truncate@2.1.0:
+ cli-cursor@4.0.0:
dependencies:
- slice-ansi: 3.0.0
- string-width: 4.2.3
+ restore-cursor: 4.0.0
cli-truncate@3.1.0:
dependencies:
@@ -8089,47 +7861,43 @@ snapshots:
clsx@1.2.1: {}
- clsx@2.0.0: {}
-
- color-convert@1.9.3:
- dependencies:
- color-name: 1.1.3
+ clsx@2.1.1: {}
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
- color-name@1.1.3: {}
-
color-name@1.1.4: {}
colorette@1.4.0: {}
- colorette@2.0.19: {}
+ colorette@2.0.20: {}
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
- commander@3.0.2: {}
+ commander@11.0.0: {}
- commander@9.5.0: {}
+ commander@3.0.2: {}
concat-map@0.0.1: {}
- concurrently@8.0.1:
+ concurrently@8.2.2:
dependencies:
chalk: 4.1.2
- date-fns: 2.29.3
+ date-fns: 2.30.0
lodash: 4.17.21
- rxjs: 7.8.0
+ rxjs: 7.8.1
shell-quote: 1.8.1
- spawn-command: 0.0.2-1
+ spawn-command: 0.0.2
supports-color: 8.1.1
tree-kill: 1.2.2
yargs: 17.7.2
- constructs@10.3.0: {}
+ confbox@0.1.8: {}
+
+ constructs@10.4.2: {}
content-disposition@0.5.4:
dependencies:
@@ -8139,9 +7907,11 @@ snapshots:
convert-source-map@1.9.0: {}
+ convert-source-map@2.0.0: {}
+
cookie-signature@1.0.6: {}
- cookie@0.5.0: {}
+ cookie@0.7.1: {}
copy-anything@3.0.5:
dependencies:
@@ -8154,7 +7924,7 @@ snapshots:
cosmiconfig@7.1.0:
dependencies:
- '@types/parse-json': 4.0.0
+ '@types/parse-json': 4.0.2
import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
@@ -8170,15 +7940,19 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
+ cross-spawn@7.0.5:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+
css-line-break@2.1.0:
dependencies:
utrie: 1.0.2
- css-unit-converter@1.1.2: {}
-
css-vendor@2.0.8:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
is-in-browser: 1.1.3
cssstyle@3.0.0:
@@ -8189,6 +7963,8 @@ snapshots:
csstype@3.1.1: {}
+ csstype@3.1.3: {}
+
d3-array@3.2.2:
dependencies:
internmap: 2.0.3
@@ -8237,11 +8013,31 @@ snapshots:
whatwg-mimetype: 3.0.0
whatwg-url: 12.0.1
+ data-view-buffer@1.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
+ data-view-byte-length@1.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
+ data-view-byte-offset@1.0.0:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
date-arithmetic@4.1.0: {}
- date-fns@2.29.3: {}
+ date-fns@2.30.0:
+ dependencies:
+ '@babel/runtime': 7.26.0
- dayjs@1.11.7: {}
+ dayjs@1.11.13: {}
debug@2.6.9:
dependencies:
@@ -8253,9 +8049,13 @@ snapshots:
optionalDependencies:
supports-color: 5.5.0
- debug@4.3.4(supports-color@9.4.0):
+ debug@4.3.4:
dependencies:
ms: 2.1.2
+
+ debug@4.3.7(supports-color@9.4.0):
+ dependencies:
+ ms: 2.1.3
optionalDependencies:
supports-color: 9.4.0
@@ -8263,35 +8063,43 @@ snapshots:
decimal.js@10.4.3: {}
- deep-eql@4.1.3:
+ deep-eql@4.1.4:
dependencies:
- type-detect: 4.0.8
+ type-detect: 4.1.0
- deep-equal@2.2.0:
+ deep-equal@2.2.3:
dependencies:
- call-bind: 1.0.2
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
es-get-iterator: 1.1.3
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.4
is-arguments: 1.1.1
- is-array-buffer: 3.0.1
+ is-array-buffer: 3.0.4
is-date-object: 1.0.5
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
+ is-shared-array-buffer: 1.0.3
isarray: 2.0.5
- object-is: 1.1.5
+ object-is: 1.1.6
object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.4.3
- side-channel: 1.0.4
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.3
+ side-channel: 1.0.6
which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
- which-typed-array: 1.1.9
+ which-collection: 1.0.2
+ which-typed-array: 1.1.15
deep-is@0.1.4: {}
- define-properties@1.2.0:
+ define-data-property@1.1.4:
+ dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ gopd: 1.0.1
+
+ define-properties@1.2.1:
dependencies:
- has-property-descriptors: 1.0.0
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
delayed-stream@1.0.0: {}
@@ -8304,7 +8112,7 @@ snapshots:
destroy@1.2.0: {}
- diff-sequences@29.4.3: {}
+ diff-sequences@29.6.3: {}
dir-glob@3.0.1:
dependencies:
@@ -8320,28 +8128,37 @@ snapshots:
dom-accessibility-api@0.5.16: {}
- dom-helpers@3.4.0:
- dependencies:
- '@babel/runtime': 7.22.11
-
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
csstype: 3.1.1
domexception@4.0.0:
dependencies:
webidl-conversions: 7.0.0
- dotenv@16.0.3: {}
+ dotenv@16.4.5: {}
+
+ drizzle-kit@0.28.1:
+ dependencies:
+ '@drizzle-team/brocli': 0.10.2
+ '@esbuild-kit/esm-loader': 2.6.5
+ esbuild: 0.19.12
+ esbuild-register: 3.6.0(esbuild@0.19.12)
+ transitivePeerDependencies:
+ - supports-color
+
+ drizzle-orm@0.36.3(@types/react@18.3.12)(postgres@3.4.5)(react@18.3.1):
+ optionalDependencies:
+ '@types/react': 18.3.12
+ postgres: 3.4.5
+ react: 18.3.1
eastasianwidth@0.2.0: {}
ee-first@1.1.1: {}
- electron-to-chromium@1.4.300: {}
-
- electron-to-chromium@1.4.514: {}
+ electron-to-chromium@1.5.62: {}
emoji-regex@8.0.0: {}
@@ -8349,12 +8166,14 @@ snapshots:
encodeurl@1.0.2: {}
+ encodeurl@2.0.0: {}
+
enhanced-resolve@5.15.1:
dependencies:
graceful-fs: 4.2.10
tapable: 2.2.1
- entities@4.4.0: {}
+ entities@4.5.0: {}
envalid@7.3.1:
dependencies:
@@ -8364,63 +8183,104 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
- es-abstract@1.21.1:
- dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- es-set-tostringtag: 2.0.1
+ es-abstract@1.23.5:
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ arraybuffer.prototype.slice: 1.0.3
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ data-view-buffer: 1.0.1
+ data-view-byte-length: 1.0.1
+ data-view-byte-offset: 1.0.0
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-set-tostringtag: 2.0.3
es-to-primitive: 1.2.1
- function-bind: 1.1.1
- function.prototype.name: 1.1.5
- get-intrinsic: 1.2.0
- get-symbol-description: 1.0.0
- globalthis: 1.0.3
+ function.prototype.name: 1.1.6
+ get-intrinsic: 1.2.4
+ get-symbol-description: 1.0.2
+ globalthis: 1.0.4
gopd: 1.0.1
- has: 1.0.3
- has-property-descriptors: 1.0.0
- has-proto: 1.0.1
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
has-symbols: 1.0.3
- internal-slot: 1.0.5
- is-array-buffer: 3.0.1
+ hasown: 2.0.2
+ internal-slot: 1.0.7
+ is-array-buffer: 3.0.4
is-callable: 1.2.7
- is-negative-zero: 2.0.2
+ is-data-view: 1.0.1
+ is-negative-zero: 2.0.3
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
+ is-shared-array-buffer: 1.0.3
is-string: 1.0.7
- is-typed-array: 1.1.10
+ is-typed-array: 1.1.13
is-weakref: 1.0.2
- object-inspect: 1.12.3
+ object-inspect: 1.13.3
object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.4.3
- safe-regex-test: 1.0.0
- string.prototype.trimend: 1.0.6
- string.prototype.trimstart: 1.0.6
- typed-array-length: 1.0.4
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.3
+ safe-array-concat: 1.1.2
+ safe-regex-test: 1.0.3
+ string.prototype.trim: 1.2.9
+ string.prototype.trimend: 1.0.8
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.2
+ typed-array-byte-length: 1.0.1
+ typed-array-byte-offset: 1.0.2
+ typed-array-length: 1.0.6
unbox-primitive: 1.0.2
- which-typed-array: 1.1.9
+ which-typed-array: 1.1.15
+
+ es-define-property@1.0.0:
+ dependencies:
+ get-intrinsic: 1.2.4
+
+ es-errors@1.3.0: {}
es-get-iterator@1.1.3:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
has-symbols: 1.0.3
is-arguments: 1.1.1
- is-map: 2.0.2
- is-set: 2.0.2
+ is-map: 2.0.3
+ is-set: 2.0.3
is-string: 1.0.7
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
- es-set-tostringtag@2.0.1:
+ es-iterator-helpers@1.2.0:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-errors: 1.3.0
+ es-set-tostringtag: 2.0.3
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ globalthis: 1.0.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ internal-slot: 1.0.7
+ iterator.prototype: 1.1.3
+ safe-array-concat: 1.1.2
+
+ es-object-atoms@1.0.0:
dependencies:
- get-intrinsic: 1.2.0
- has: 1.0.3
- has-tostringtag: 1.0.0
+ es-errors: 1.3.0
+
+ es-set-tostringtag@2.0.3:
+ dependencies:
+ get-intrinsic: 1.2.4
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
- es-shim-unscopables@1.0.0:
+ es-shim-unscopables@1.0.2:
dependencies:
- has: 1.0.3
+ hasown: 2.0.2
es-to-primitive@1.2.1:
dependencies:
@@ -8428,6 +8288,13 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
+ esbuild-register@3.6.0(esbuild@0.19.12):
+ dependencies:
+ debug: 4.3.7(supports-color@9.4.0)
+ esbuild: 0.19.12
+ transitivePeerDependencies:
+ - supports-color
+
esbuild@0.17.19:
optionalDependencies:
'@esbuild/android-arm': 0.17.19
@@ -8478,293 +8345,308 @@ snapshots:
'@esbuild/win32-ia32': 0.18.20
'@esbuild/win32-x64': 0.18.20
- escalade@3.1.1: {}
+ esbuild@0.19.12:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.19.12
+ '@esbuild/android-arm': 0.19.12
+ '@esbuild/android-arm64': 0.19.12
+ '@esbuild/android-x64': 0.19.12
+ '@esbuild/darwin-arm64': 0.19.12
+ '@esbuild/darwin-x64': 0.19.12
+ '@esbuild/freebsd-arm64': 0.19.12
+ '@esbuild/freebsd-x64': 0.19.12
+ '@esbuild/linux-arm': 0.19.12
+ '@esbuild/linux-arm64': 0.19.12
+ '@esbuild/linux-ia32': 0.19.12
+ '@esbuild/linux-loong64': 0.19.12
+ '@esbuild/linux-mips64el': 0.19.12
+ '@esbuild/linux-ppc64': 0.19.12
+ '@esbuild/linux-riscv64': 0.19.12
+ '@esbuild/linux-s390x': 0.19.12
+ '@esbuild/linux-x64': 0.19.12
+ '@esbuild/netbsd-x64': 0.19.12
+ '@esbuild/openbsd-x64': 0.19.12
+ '@esbuild/sunos-x64': 0.19.12
+ '@esbuild/win32-arm64': 0.19.12
+ '@esbuild/win32-ia32': 0.19.12
+ '@esbuild/win32-x64': 0.19.12
+
+ escalade@3.2.0: {}
escape-html@1.0.3: {}
- escape-string-regexp@1.0.5: {}
-
escape-string-regexp@4.0.0: {}
- eslint-config-prettier@8.8.0(eslint@8.37.0):
- dependencies:
- eslint: 8.37.0
-
- eslint-config-prettier@8.8.0(eslint@8.38.0):
+ eslint-config-prettier@8.10.0(eslint@8.57.1):
dependencies:
- eslint: 8.38.0
+ eslint: 8.57.1
- eslint-import-resolver-node@0.3.7:
+ eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7(supports-color@5.5.0)
- is-core-module: 2.11.0
- resolve: 1.22.1
+ is-core-module: 2.15.1
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0):
+ eslint-import-resolver-typescript@3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0):
dependencies:
- debug: 4.3.4(supports-color@9.4.0)
+ '@nolyfill/is-core-module': 1.0.39
+ debug: 4.3.7(supports-color@9.4.0)
enhanced-resolve: 5.15.1
- eslint: 8.38.0
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.57.1(eslint@8.38.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.38.0)
- eslint-plugin-import: 2.27.5(eslint-import-resolver-typescript@3.6.1)(eslint@8.38.0)
+ eslint: 9.15.0
+ eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0))(eslint@9.15.0)
fast-glob: 3.3.2
- get-tsconfig: 4.6.2
- is-core-module: 2.11.0
+ get-tsconfig: 4.8.1
+ is-bun-module: 1.2.1
is-glob: 4.0.3
+ optionalDependencies:
+ eslint-plugin-import: 2.31.0(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0)
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.7.4(@typescript-eslint/parser@5.57.1(eslint@8.38.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.38.0):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0))(eslint@8.57.1):
dependencies:
debug: 3.2.7(supports-color@5.5.0)
optionalDependencies:
- '@typescript-eslint/parser': 5.57.1(eslint@8.38.0)(typescript@5.6.3)
- eslint: 8.38.0
- eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.6.3)
+ eslint: 8.57.1
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.7.4(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.37.0):
+ eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0))(eslint@9.15.0):
dependencies:
debug: 3.2.7(supports-color@5.5.0)
optionalDependencies:
- eslint: 8.37.0
- eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0)
+ eslint: 9.15.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0)
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.57.1(eslint@8.38.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.38.0):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0))(eslint@8.57.1):
dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
+ '@rtsao/scc': 1.1.0
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@5.5.0)
doctrine: 2.1.0
- eslint: 8.38.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.57.1(eslint@8.38.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.38.0)
- has: 1.0.3
- is-core-module: 2.11.0
+ eslint: 8.57.1
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0))(eslint@8.57.1)
+ hasown: 2.0.2
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.1
- semver: 6.3.0
- tsconfig-paths: 3.14.1
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ string.prototype.trimend: 1.0.8
+ tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 5.57.1(eslint@8.38.0)(typescript@5.6.3)
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
-
- eslint-plugin-import@2.27.5(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.37.0):
- dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
- debug: 3.2.7(supports-color@5.5.0)
- doctrine: 2.1.0
- eslint: 8.37.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.37.0)
- has: 1.0.3
- is-core-module: 2.11.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.1
- semver: 6.3.0
- tsconfig-paths: 3.14.1
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.27.5(eslint-import-resolver-typescript@3.6.1)(eslint@8.38.0):
+ eslint-plugin-import@2.31.0(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0):
dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
+ '@rtsao/scc': 1.1.0
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@5.5.0)
doctrine: 2.1.0
- eslint: 8.38.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.57.1(eslint@8.38.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.27.5)(eslint@8.38.0))(eslint@8.38.0)
- has: 1.0.3
- is-core-module: 2.11.0
+ eslint: 9.15.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-plugin-import@2.31.0)(eslint@9.15.0))(eslint@9.15.0)
+ hasown: 2.0.2
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.1
- semver: 6.3.0
- tsconfig-paths: 3.14.1
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ string.prototype.trimend: 1.0.8
+ tsconfig-paths: 3.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
+ optional: true
- eslint-plugin-jsx-a11y@6.7.1(eslint@8.37.0):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1):
dependencies:
- '@babel/runtime': 7.20.13
- aria-query: 5.1.3
- array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
- ast-types-flow: 0.0.7
- axe-core: 4.6.3
- axobject-query: 3.1.1
+ aria-query: 5.3.2
+ array-includes: 3.1.8
+ array.prototype.flatmap: 1.3.2
+ ast-types-flow: 0.0.8
+ axe-core: 4.10.2
+ axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.37.0
- has: 1.0.3
- jsx-ast-utils: 3.3.3
- language-tags: 1.0.5
+ eslint: 8.57.1
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.9
minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- semver: 6.3.0
+ object.fromentries: 2.0.8
+ safe-regex-test: 1.0.3
+ string.prototype.includes: 2.0.1
- eslint-plugin-react-hooks@4.6.0(eslint@8.37.0):
+ eslint-plugin-react-hooks@4.6.2(eslint@8.57.1):
dependencies:
- eslint: 8.37.0
+ eslint: 8.57.1
- eslint-plugin-react@7.32.2(eslint@8.37.0):
+ eslint-plugin-react@7.37.2(eslint@8.57.1):
dependencies:
- array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
- array.prototype.tosorted: 1.1.1
+ array-includes: 3.1.8
+ array.prototype.findlast: 1.2.5
+ array.prototype.flatmap: 1.3.2
+ array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- eslint: 8.37.0
+ es-iterator-helpers: 1.2.0
+ eslint: 8.57.1
estraverse: 5.3.0
+ hasown: 2.0.2
jsx-ast-utils: 3.3.3
minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- object.hasown: 1.1.2
- object.values: 1.1.6
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.values: 1.2.0
prop-types: 15.8.1
- resolve: 2.0.0-next.4
- semver: 6.3.0
- string.prototype.matchall: 4.0.8
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.11
+ string.prototype.repeat: 1.0.0
eslint-scope@5.1.1:
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- eslint-scope@7.1.1:
+ eslint-scope@7.2.2:
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
+ eslint-scope@8.2.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- eslint-visitor-keys@3.4.0: {}
+ eslint-visitor-keys@3.4.3: {}
- eslint@8.37.0:
+ eslint-visitor-keys@4.2.0: {}
+
+ eslint@8.57.1:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.37.0)
- '@eslint-community/regexpp': 4.5.0
- '@eslint/eslintrc': 2.0.2
- '@eslint/js': 8.37.0
- '@humanwhocodes/config-array': 0.11.8
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/eslintrc': 2.1.4
+ '@eslint/js': 8.57.1
+ '@humanwhocodes/config-array': 0.13.0
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
+ '@ungap/structured-clone': 1.2.0
ajv: 6.12.6
chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4(supports-color@9.4.0)
+ cross-spawn: 7.0.5
+ debug: 4.3.7(supports-color@9.4.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
- eslint-scope: 7.1.1
- eslint-visitor-keys: 3.4.0
- espree: 9.5.1
- esquery: 1.4.2
+ eslint-scope: 7.2.2
+ eslint-visitor-keys: 3.4.3
+ espree: 9.6.1
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.20.0
- grapheme-splitter: 1.0.4
- ignore: 5.2.4
- import-fresh: 3.3.0
+ globals: 13.24.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
- js-sdsl: 4.3.0
js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.1
+ optionator: 0.9.4
strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
text-table: 0.2.0
transitivePeerDependencies:
- supports-color
- eslint@8.38.0:
+ eslint@9.15.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0)
- '@eslint-community/regexpp': 4.5.0
- '@eslint/eslintrc': 2.0.2
- '@eslint/js': 8.38.0
- '@humanwhocodes/config-array': 0.11.8
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0)
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/config-array': 0.19.0
+ '@eslint/core': 0.9.0
+ '@eslint/eslintrc': 3.2.0
+ '@eslint/js': 9.15.0
+ '@eslint/plugin-kit': 0.2.3
+ '@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@nodelib/fs.walk': 1.2.8
+ '@humanwhocodes/retry': 0.4.1
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4(supports-color@9.4.0)
- doctrine: 3.0.0
+ cross-spawn: 7.0.5
+ debug: 4.3.7(supports-color@9.4.0)
escape-string-regexp: 4.0.0
- eslint-scope: 7.1.1
- eslint-visitor-keys: 3.4.0
- espree: 9.5.1
- esquery: 1.4.2
+ eslint-scope: 8.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
+ file-entry-cache: 8.0.0
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.20.0
- grapheme-splitter: 1.0.4
- ignore: 5.2.4
- import-fresh: 3.3.0
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
- is-path-inside: 3.0.3
- js-sdsl: 4.3.0
- js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.1
- strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
- text-table: 0.2.0
+ optionator: 0.9.4
transitivePeerDependencies:
- supports-color
- espree@9.5.1:
+ espree@10.3.0:
+ dependencies:
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ eslint-visitor-keys: 4.2.0
+
+ espree@9.6.1:
dependencies:
- acorn: 8.8.2
- acorn-jsx: 5.3.2(acorn@8.8.2)
- eslint-visitor-keys: 3.4.0
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
- esquery@1.4.2:
+ esquery@1.6.0:
dependencies:
estraverse: 5.3.0
@@ -8784,50 +8666,52 @@ snapshots:
eventemitter3@4.0.7: {}
+ eventemitter3@5.0.1: {}
+
events@1.1.1: {}
events@3.3.0: {}
- execa@6.1.0:
+ execa@7.2.0:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.5
get-stream: 6.0.1
- human-signals: 3.0.1
+ human-signals: 4.3.1
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.1.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 3.0.7
strip-final-newline: 3.0.0
- express@4.18.2:
+ express@4.21.1:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.1
+ body-parser: 1.20.3
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.5.0
+ cookie: 0.7.1
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.2.0
+ finalhandler: 1.3.1
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.10
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.13.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.0
+ serve-static: 1.16.2
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -8838,15 +8722,7 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-equals@4.0.3: {}
-
- fast-glob@3.2.12:
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.5
+ fast-equals@5.0.1: {}
fast-glob@3.3.2:
dependencies:
@@ -8854,17 +8730,13 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
fast-levenshtein@2.0.6: {}
- fast-xml-parser@4.1.2:
- dependencies:
- strnum: 1.0.5
-
- fast-xml-parser@4.2.5:
+ fast-xml-parser@4.4.1:
dependencies:
strnum: 1.0.5
@@ -8874,18 +8746,22 @@ snapshots:
file-entry-cache@6.0.1:
dependencies:
- flat-cache: 3.0.4
+ flat-cache: 3.2.0
+
+ file-entry-cache@8.0.0:
+ dependencies:
+ flat-cache: 4.0.1
file-saver@2.0.5: {}
- fill-range@7.0.1:
+ fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.2.0:
+ finalhandler@1.3.1:
dependencies:
debug: 2.6.9
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
@@ -8901,12 +8777,18 @@ snapshots:
locate-path: 6.0.0
path-exists: 4.0.0
- flat-cache@3.0.4:
+ flat-cache@3.2.0:
dependencies:
- flatted: 3.2.7
+ flatted: 3.3.1
+ keyv: 4.5.4
rimraf: 3.0.2
- flatted@3.2.7: {}
+ flat-cache@4.0.1:
+ dependencies:
+ flatted: 3.3.1
+ keyv: 4.5.4
+
+ flatted@3.3.1: {}
for-each@0.3.3:
dependencies:
@@ -8927,13 +8809,16 @@ snapshots:
fsevents@2.3.2:
optional: true
- function-bind@1.1.1: {}
+ fsevents@2.3.3:
+ optional: true
+
+ function-bind@1.1.2: {}
- function.prototype.name@1.1.5:
+ function.prototype.name@1.1.6:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
functions-have-names: 1.2.3
functions-have-names@1.2.3: {}
@@ -8944,22 +8829,25 @@ snapshots:
get-caller-file@2.0.5: {}
- get-func-name@2.0.0: {}
+ get-func-name@2.0.2: {}
- get-intrinsic@1.2.0:
+ get-intrinsic@1.2.4:
dependencies:
- function-bind: 1.1.1
- has: 1.0.3
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ has-proto: 1.0.3
has-symbols: 1.0.3
+ hasown: 2.0.2
get-stream@6.0.1: {}
- get-symbol-description@1.0.0:
+ get-symbol-description@1.0.2:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
- get-tsconfig@4.6.2:
+ get-tsconfig@4.8.1:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -8986,30 +8874,33 @@ snapshots:
globals@11.12.0: {}
- globals@13.20.0:
+ globals@13.24.0:
dependencies:
type-fest: 0.20.2
- globalthis@1.0.3:
+ globals@14.0.0: {}
+
+ globalthis@1.0.4:
dependencies:
- define-properties: 1.2.0
+ define-properties: 1.2.1
+ gopd: 1.0.1
globby@11.1.0:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.12
- ignore: 5.2.4
+ fast-glob: 3.3.2
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
gopd@1.0.1:
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.2.4
graceful-fs@4.2.10: {}
- grapheme-splitter@1.0.4: {}
+ graphemer@1.4.0: {}
has-bigints@1.0.2: {}
@@ -9017,11 +8908,11 @@ snapshots:
has-flag@4.0.0: {}
- has-property-descriptors@1.0.0:
+ has-property-descriptors@1.0.2:
dependencies:
- get-intrinsic: 1.2.0
+ es-define-property: 1.0.0
- has-proto@1.0.1: {}
+ has-proto@1.0.3: {}
has-symbols@1.0.3: {}
@@ -9029,9 +8920,13 @@ snapshots:
dependencies:
has-symbols: 1.0.3
- has@1.0.3:
+ has-tostringtag@1.0.2:
+ dependencies:
+ has-symbols: 1.0.3
+
+ hasown@2.0.2:
dependencies:
- function-bind: 1.1.1
+ function-bind: 1.1.2
hoist-non-react-statics@3.3.2:
dependencies:
@@ -9058,25 +8953,25 @@ snapshots:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.4(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.5(supports-color@9.4.0):
dependencies:
agent-base: 7.1.1(supports-color@9.4.0)
- debug: 4.3.4(supports-color@9.4.0)
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- human-signals@3.0.1: {}
+ human-signals@4.3.1: {}
husky@8.0.3: {}
@@ -9090,10 +8985,11 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- ics@3.1.0:
+ ics@3.8.1:
dependencies:
nanoid: 3.3.4
- yup: 0.32.11
+ runes2: 1.1.4
+ yup: 1.4.0
ieee754@1.1.13: {}
@@ -9101,7 +8997,7 @@ snapshots:
ignore-by-default@1.0.1: {}
- ignore@5.2.4: {}
+ ignore@5.3.2: {}
import-fresh@3.3.0:
dependencies:
@@ -9110,8 +9006,6 @@ snapshots:
imurmurhash@0.1.4: {}
- indent-string@4.0.0: {}
-
index-to-position@0.1.2: {}
inflight@1.0.6:
@@ -9121,11 +9015,11 @@ snapshots:
inherits@2.0.4: {}
- internal-slot@1.0.5:
+ internal-slot@1.0.7:
dependencies:
- get-intrinsic: 1.2.0
- has: 1.0.3
- side-channel: 1.0.4
+ es-errors: 1.3.0
+ hasown: 2.0.2
+ side-channel: 1.0.6
internmap@2.0.3: {}
@@ -9133,23 +9027,24 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- ip@2.0.0: {}
-
ipaddr.js@1.9.1: {}
is-arguments@1.1.1:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
has-tostringtag: 1.0.0
- is-array-buffer@3.0.1:
+ is-array-buffer@3.0.4:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- is-typed-array: 1.1.10
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-arrayish@0.2.1: {}
+ is-async-function@2.0.0:
+ dependencies:
+ has-tostringtag: 1.0.2
+
is-bigint@1.0.4:
dependencies:
has-bigints: 1.0.2
@@ -9160,21 +9055,33 @@ snapshots:
is-boolean-object@1.1.2:
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
+
+ is-bun-module@1.2.1:
+ dependencies:
+ semver: 7.6.3
is-callable@1.2.7: {}
- is-core-module@2.11.0:
+ is-core-module@2.15.1:
dependencies:
- has: 1.0.3
+ hasown: 2.0.2
+
+ is-data-view@1.0.1:
+ dependencies:
+ is-typed-array: 1.1.13
is-date-object@1.0.5:
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
is-extglob@2.1.1: {}
+ is-finalizationregistry@1.0.2:
+ dependencies:
+ call-bind: 1.0.7
+
is-fullwidth-code-point@3.0.0: {}
is-fullwidth-code-point@4.0.0: {}
@@ -9189,13 +9096,13 @@ snapshots:
is-in-browser@1.1.3: {}
- is-map@2.0.2: {}
+ is-map@2.0.3: {}
- is-negative-zero@2.0.2: {}
+ is-negative-zero@2.0.3: {}
is-number-object@1.0.7:
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -9205,20 +9112,20 @@ snapshots:
is-regex@1.1.4:
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
- is-set@2.0.2: {}
+ is-set@2.0.3: {}
- is-shared-array-buffer@1.0.2:
+ is-shared-array-buffer@1.0.3:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-stream@3.0.0: {}
is-string@1.0.7:
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
is-symbol@1.0.4:
dependencies:
@@ -9227,21 +9134,25 @@ snapshots:
is-typed-array@1.1.10:
dependencies:
available-typed-arrays: 1.0.5
- call-bind: 1.0.2
+ call-bind: 1.0.7
for-each: 0.3.3
gopd: 1.0.1
has-tostringtag: 1.0.0
- is-weakmap@2.0.1: {}
+ is-typed-array@1.1.13:
+ dependencies:
+ which-typed-array: 1.1.15
+
+ is-weakmap@2.0.2: {}
is-weakref@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
- is-weakset@2.0.2:
+ is-weakset@2.0.3:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-what@4.1.15: {}
@@ -9251,12 +9162,18 @@ snapshots:
isexe@2.0.0: {}
+ iterator.prototype@1.1.3:
+ dependencies:
+ define-properties: 1.2.1
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ reflect.getprototypeof: 1.0.6
+ set-function-name: 2.0.2
+
jmespath@0.16.0: {}
js-levenshtein@1.1.6: {}
- js-sdsl@4.3.0: {}
-
js-tokens@4.0.0: {}
js-yaml@3.14.1:
@@ -9280,25 +9197,27 @@ snapshots:
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.7
+ nwsapi: 2.2.13
parse5: 7.1.2
rrweb-cssom: 0.6.0
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.1.3
+ tough-cookie: 4.1.4
w3c-xmlserializer: 4.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 12.0.1
- ws: 8.14.1
+ ws: 8.18.0
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- jsesc@2.5.2: {}
+ jsesc@3.0.2: {}
+
+ json-buffer@3.0.1: {}
json-parse-even-better-errors@2.3.1: {}
@@ -9314,66 +9233,73 @@ snapshots:
json5@2.2.3: {}
- jsonc-parser@3.2.0: {}
-
jss-plugin-camel-case@10.10.0:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
hyphenate-style-name: 1.0.4
jss: 10.10.0
jss-plugin-default-unit@10.10.0:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
jss: 10.10.0
jss-plugin-global@10.10.0:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
jss: 10.10.0
jss-plugin-nested@10.10.0:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
jss: 10.10.0
tiny-warning: 1.0.3
jss-plugin-props-sort@10.10.0:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
jss: 10.10.0
jss-plugin-rule-value-function@10.10.0:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
jss: 10.10.0
tiny-warning: 1.0.3
jss-plugin-vendor-prefixer@10.10.0:
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
css-vendor: 2.0.8
jss: 10.10.0
jss@10.10.0:
dependencies:
- '@babel/runtime': 7.22.11
- csstype: 3.1.1
+ '@babel/runtime': 7.26.0
+ csstype: 3.1.3
is-in-browser: 1.1.3
tiny-warning: 1.0.3
jsx-ast-utils@3.3.3:
dependencies:
- array-includes: 3.1.6
+ array-includes: 3.1.8
object.assign: 4.1.4
- kareem@2.5.1: {}
+ jsx-ast-utils@3.3.5:
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.flat: 1.3.2
+ object.assign: 4.1.5
+ object.values: 1.2.0
+
+ keyv@4.5.4:
+ dependencies:
+ json-buffer: 3.0.1
- language-subtag-registry@0.3.22: {}
+ language-subtag-registry@0.3.23: {}
- language-tags@1.0.5:
+ language-tags@1.0.9:
dependencies:
- language-subtag-registry: 0.3.22
+ language-subtag-registry: 0.3.23
leaflet-routing-machine@3.2.12:
dependencies:
@@ -9383,46 +9309,41 @@ snapshots:
leaflet.locatecontrol@0.79.0: {}
- leaflet@1.9.3: {}
+ leaflet@1.9.4: {}
levn@0.4.1:
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
- lilconfig@2.0.6: {}
+ lilconfig@2.1.0: {}
lines-and-columns@1.2.4: {}
- lint-staged@13.1.2:
+ lint-staged@13.3.0:
dependencies:
- cli-truncate: 3.1.0
- colorette: 2.0.19
- commander: 9.5.0
- debug: 4.3.4(supports-color@9.4.0)
- execa: 6.1.0
- lilconfig: 2.0.6
- listr2: 5.0.7
+ chalk: 5.3.0
+ commander: 11.0.0
+ debug: 4.3.4
+ execa: 7.2.0
+ lilconfig: 2.1.0
+ listr2: 6.6.1
micromatch: 4.0.5
- normalize-path: 3.0.0
- object-inspect: 1.12.3
pidtree: 0.6.0
- string-argv: 0.3.1
- yaml: 2.2.1
+ string-argv: 0.3.2
+ yaml: 2.3.1
transitivePeerDependencies:
- enquirer
- supports-color
- listr2@5.0.7:
+ listr2@6.6.1:
dependencies:
- cli-truncate: 2.1.0
- colorette: 2.0.19
- log-update: 4.0.0
- p-map: 4.0.0
- rfdc: 1.3.0
- rxjs: 7.8.0
- through: 2.3.8
- wrap-ansi: 7.0.0
+ cli-truncate: 3.1.0
+ colorette: 2.0.20
+ eventemitter3: 5.0.1
+ log-update: 5.0.1
+ rfdc: 1.4.1
+ wrap-ansi: 8.1.0
local-pkg@0.4.3: {}
@@ -9438,60 +9359,51 @@ snapshots:
lodash@4.17.21: {}
- log-update@4.0.0:
+ log-update@5.0.1:
dependencies:
- ansi-escapes: 4.3.2
- cli-cursor: 3.1.0
- slice-ansi: 4.0.0
- wrap-ansi: 6.2.0
+ ansi-escapes: 5.0.0
+ cli-cursor: 4.0.0
+ slice-ansi: 5.0.0
+ strip-ansi: 7.1.0
+ wrap-ansi: 8.1.0
loose-envify@1.4.0:
dependencies:
js-tokens: 4.0.0
- loupe@2.3.6:
+ loupe@2.3.7:
dependencies:
- get-func-name: 2.0.0
+ get-func-name: 2.0.2
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
- lru-cache@6.0.0:
- dependencies:
- yallist: 4.0.0
-
luxon@3.2.1: {}
lz-string@1.5.0: {}
- magic-string@0.30.2:
+ magic-string@0.30.12:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
material-colors@1.2.6: {}
- material-ui-popup-state@5.0.4(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ material-ui-popup-state@5.3.1(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.20.13
- '@mui/material': 5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- classnames: 2.3.2
+ '@babel/runtime': 7.26.0
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@types/prop-types': 15.7.13
+ '@types/react': 18.3.12
+ classnames: 2.5.1
prop-types: 15.8.1
- react: 18.2.0
- transitivePeerDependencies:
- - '@emotion/react'
- - '@emotion/styled'
- - '@types/react'
- - react-dom
+ react: 18.3.1
media-typer@0.3.0: {}
memoize-one@6.0.0: {}
- memory-pager@1.5.0:
- optional: true
-
- merge-descriptors@1.0.1: {}
+ merge-descriptors@1.0.3: {}
merge-stream@2.0.0: {}
@@ -9501,7 +9413,12 @@ snapshots:
micromatch@4.0.5:
dependencies:
- braces: 3.0.2
+ braces: 3.0.3
+ picomatch: 2.3.1
+
+ micromatch@4.0.8:
+ dependencies:
+ braces: 3.0.3
picomatch: 2.3.1
mime-db@1.52.0: {}
@@ -9526,66 +9443,22 @@ snapshots:
minimist@1.2.8: {}
- mlly@1.4.0:
+ mlly@1.7.3:
dependencies:
- acorn: 8.10.0
- pathe: 1.1.1
- pkg-types: 1.0.3
- ufo: 1.2.0
+ acorn: 8.14.0
+ pathe: 1.1.2
+ pkg-types: 1.2.1
+ ufo: 1.5.4
mnemonist@0.38.3:
dependencies:
obliterator: 1.6.1
- moment-timezone@0.5.43:
- dependencies:
- moment: 2.29.4
-
- moment@2.29.4: {}
-
- mongodb-connection-string-url@2.6.0:
- dependencies:
- '@types/whatwg-url': 8.2.2
- whatwg-url: 11.0.0
-
- mongodb@5.0.1:
- dependencies:
- bson: 5.3.0
- mongodb-connection-string-url: 2.6.0
- socks: 2.7.1
- optionalDependencies:
- saslprep: 1.0.3
-
- mongodb@5.3.0:
- dependencies:
- bson: 5.3.0
- mongodb-connection-string-url: 2.6.0
- socks: 2.7.1
- optionalDependencies:
- saslprep: 1.0.3
-
- mongoose@7.1.0:
+ moment-timezone@0.5.46:
dependencies:
- bson: 5.3.0
- kareem: 2.5.1
- mongodb: 5.3.0
- mpath: 0.9.0
- mquery: 5.0.0
- ms: 2.1.3
- sift: 16.0.1
- transitivePeerDependencies:
- - '@aws-sdk/credential-providers'
- - mongodb-client-encryption
- - snappy
- - supports-color
+ moment: 2.30.1
- mpath@0.9.0: {}
-
- mquery@5.0.0:
- dependencies:
- debug: 4.3.4(supports-color@9.4.0)
- transitivePeerDependencies:
- - supports-color
+ moment@2.30.1: {}
ms@2.0.0: {}
@@ -9593,11 +9466,9 @@ snapshots:
ms@2.1.3: {}
- nanoclone@0.2.1: {}
-
nanoid@3.3.4: {}
- nanoid@3.3.6: {}
+ nanoid@3.3.7: {}
natural-compare-lite@1.4.0: {}
@@ -9609,9 +9480,7 @@ snapshots:
dependencies:
whatwg-url: 5.0.0
- node-releases@2.0.10: {}
-
- node-releases@2.0.13: {}
+ node-releases@2.0.18: {}
nodemon@2.0.22:
dependencies:
@@ -9620,7 +9489,7 @@ snapshots:
ignore-by-default: 1.0.1
minimatch: 3.1.2
pstree.remy: 1.1.8
- semver: 5.7.1
+ semver: 5.7.2
simple-update-notifier: 1.1.0
supports-color: 5.5.0
touch: 3.1.0
@@ -9632,63 +9501,72 @@ snapshots:
normalize-path@3.0.0: {}
- notistack@2.0.8(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@mui/material@5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ notistack@2.0.8(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@mui/material': 5.11.10(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
clsx: 1.2.1
hoist-non-react-statics: 3.3.2
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0)
- '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0))(@types/react@18.0.28)(react@18.2.0)
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
- npm-run-path@5.1.0:
+ npm-run-path@5.3.0:
dependencies:
path-key: 4.0.0
- nwsapi@2.2.7: {}
+ nwsapi@2.2.13: {}
object-assign@4.1.1: {}
- object-inspect@1.12.3: {}
+ object-inspect@1.13.3: {}
- object-is@1.1.5:
+ object-is@1.1.6:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
+ call-bind: 1.0.7
+ define-properties: 1.2.1
object-keys@1.1.1: {}
object.assign@4.1.4:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ has-symbols: 1.0.3
+ object-keys: 1.1.1
+
+ object.assign@4.1.5:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
- object.entries@1.1.6:
+ object.entries@1.1.8:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
- object.fromentries@2.0.6:
+ object.fromentries@2.0.8:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-object-atoms: 1.0.0
- object.hasown@1.1.2:
+ object.groupby@1.0.3:
dependencies:
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
- object.values@1.1.6:
+ object.values@1.2.0:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
obliterator@1.6.1: {}
@@ -9710,7 +9588,7 @@ snapshots:
openapi-typescript@7.4.3(typescript@5.6.3):
dependencies:
- '@redocly/openapi-core': 1.25.11(supports-color@9.4.0)
+ '@redocly/openapi-core': 1.25.13(supports-color@9.4.0)
ansi-colors: 4.1.3
change-case: 5.4.4
parse-json: 8.1.0
@@ -9720,14 +9598,14 @@ snapshots:
transitivePeerDependencies:
- encoding
- optionator@0.9.1:
+ optionator@0.9.4:
dependencies:
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
- word-wrap: 1.2.3
+ word-wrap: 1.2.5
osrm-text-instructions@0.13.4: {}
@@ -9737,36 +9615,32 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@5.0.0:
dependencies:
p-limit: 3.1.0
- p-map@4.0.0:
- dependencies:
- aggregate-error: 3.1.0
-
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.18.6
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-json@8.1.0:
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.26.2
index-to-position: 0.1.2
- type-fest: 4.26.1
+ type-fest: 4.27.0
parse5@7.1.2:
dependencies:
- entities: 4.4.0
+ entities: 4.5.0
parseurl@1.3.3: {}
@@ -9780,43 +9654,47 @@ snapshots:
path-parse@1.0.7: {}
- path-to-regexp@0.1.7: {}
+ path-to-regexp@0.1.10: {}
path-type@4.0.0: {}
- pathe@1.1.1: {}
+ pathe@1.1.2: {}
pathval@1.1.1: {}
- picocolors@1.0.0: {}
+ picocolors@1.1.1: {}
picomatch@2.3.1: {}
+ picomatch@4.0.2: {}
+
pidtree@0.6.0: {}
- pkg-types@1.0.3:
+ pkg-types@1.2.1:
dependencies:
- jsonc-parser: 3.2.0
- mlly: 1.4.0
- pathe: 1.1.1
+ confbox: 0.1.8
+ mlly: 1.7.3
+ pathe: 1.1.2
pluralize@8.0.0: {}
popper.js@1.16.1-lts: {}
- postcss-value-parser@3.3.1: {}
+ possible-typed-array-names@1.0.0: {}
- postcss@8.4.29:
+ postcss@8.4.49:
dependencies:
- nanoid: 3.3.6
- picocolors: 1.0.0
- source-map-js: 1.0.2
+ nanoid: 3.3.7
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ postgres@3.4.5: {}
prelude-ls@1.2.1: {}
- prettier@2.8.4: {}
+ prettier@2.8.8: {}
- prettier@3.1.0: {}
+ prettier@3.3.3: {}
pretty-format@27.5.1:
dependencies:
@@ -9824,11 +9702,11 @@ snapshots:
ansi-styles: 5.2.0
react-is: 17.0.2
- pretty-format@29.6.2:
+ pretty-format@29.7.0:
dependencies:
- '@jest/schemas': 29.6.0
+ '@jest/schemas': 29.6.3
ansi-styles: 5.2.0
- react-is: 18.2.0
+ react-is: 18.3.1
prop-types@15.8.1:
dependencies:
@@ -9836,24 +9714,26 @@ snapshots:
object-assign: 4.1.1
react-is: 16.13.1
- property-expr@2.0.5: {}
+ property-expr@2.0.6: {}
proxy-addr@2.0.7:
dependencies:
forwarded: 0.2.0
ipaddr.js: 1.9.1
- psl@1.9.0: {}
+ psl@1.10.0:
+ dependencies:
+ punycode: 2.3.1
pstree.remy@1.1.8: {}
punycode@1.3.2: {}
- punycode@2.3.0: {}
+ punycode@2.3.1: {}
- qs@6.11.0:
+ qs@6.13.0:
dependencies:
- side-channel: 1.0.4
+ side-channel: 1.0.6
querystring@0.2.0: {}
@@ -9863,19 +9743,19 @@ snapshots:
range-parser@1.2.1: {}
- raw-body@2.5.1:
+ raw-body@2.5.2:
dependencies:
bytes: 3.1.2
http-errors: 2.0.0
iconv-lite: 0.4.24
unpipe: 1.0.0
- react-big-calendar@1.6.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-big-calendar@1.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.26.0
clsx: 1.2.1
date-arithmetic: 4.1.0
- dayjs: 1.11.7
+ dayjs: 1.11.13
dom-helpers: 5.2.1
globalize: 0.1.1
invariant: 2.2.4
@@ -9883,138 +9763,123 @@ snapshots:
lodash-es: 4.17.21
luxon: 3.2.1
memoize-one: 6.0.0
- moment: 2.29.4
- moment-timezone: 0.5.43
+ moment: 2.30.1
+ moment-timezone: 0.5.46
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-overlays: 5.2.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- uncontrollable: 7.2.1(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-overlays: 5.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ uncontrollable: 7.2.1(react@18.3.1)
- react-chartjs-2@5.2.0(chart.js@4.2.1)(react@18.2.0):
+ react-chartjs-2@5.2.0(chart.js@4.4.6)(react@18.3.1):
dependencies:
- chart.js: 4.2.1
- react: 18.2.0
+ chart.js: 4.4.6
+ react: 18.3.1
- react-color@2.19.3(react@18.2.0):
+ react-color@2.19.3(react@18.3.1):
dependencies:
- '@icons/material': 0.2.4(react@18.2.0)
+ '@icons/material': 0.2.4(react@18.3.1)
lodash: 4.17.21
lodash-es: 4.17.21
material-colors: 1.2.6
prop-types: 15.8.1
- react: 18.2.0
- reactcss: 1.2.3(react@18.2.0)
+ react: 18.3.1
+ reactcss: 1.2.3(react@18.3.1)
tinycolor2: 1.6.0
- react-dom@18.2.0(react@18.2.0):
+ react-dom@18.3.1(react@18.3.1):
dependencies:
loose-envify: 1.4.0
- react: 18.2.0
- scheduler: 0.23.0
+ react: 18.3.1
+ scheduler: 0.23.2
- react-ga4@2.0.0: {}
+ react-ga4@2.1.0: {}
- react-input-mask@2.0.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-input-mask@2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
invariant: 2.2.4
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
warning: 4.0.3
react-is@16.13.1: {}
react-is@17.0.2: {}
- react-is@18.2.0: {}
+ react-is@18.3.1: {}
- react-lazyload@3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-lazyload@3.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- react-leaflet@4.2.1(leaflet@1.9.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-leaflet@4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@react-leaflet/core': 2.1.0(leaflet@1.9.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- leaflet: 1.9.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@react-leaflet/core': 2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ leaflet: 1.9.4
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
react-lifecycles-compat@3.0.4: {}
- react-overlays@5.2.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-overlays@5.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
'@popperjs/core': 2.11.6
- '@restart/hooks': 0.4.9(react@18.2.0)
+ '@restart/hooks': 0.4.9(react@18.3.1)
'@types/warning': 3.0.0
dom-helpers: 5.2.1
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- uncontrollable: 7.2.1(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ uncontrollable: 7.2.1(react@18.3.1)
warning: 4.0.3
- react-refresh@0.14.0: {}
-
- react-resize-detector@7.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
- dependencies:
- lodash: 4.17.21
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react-refresh@0.14.2: {}
- react-router-dom@6.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@remix-run/router': 1.3.2
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-router: 6.8.1(react@18.2.0)
+ '@remix-run/router': 1.21.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-router: 6.28.0(react@18.3.1)
- react-router@6.8.1(react@18.2.0):
+ react-router@6.28.0(react@18.3.1):
dependencies:
- '@remix-run/router': 1.3.2
- react: 18.2.0
+ '@remix-run/router': 1.21.0
+ react: 18.3.1
- react-smooth@2.0.2(prop-types@15.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-smooth@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- fast-equals: 4.0.3
+ fast-equals: 5.0.1
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-transition-group: 2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-split@2.0.14(react@18.2.0):
+ react-split@2.0.14(react@18.3.1):
dependencies:
prop-types: 15.8.1
- react: 18.2.0
+ react: 18.3.1
split.js: 1.6.5
- react-transition-group@2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
- dependencies:
- dom-helpers: 3.4.0
- loose-envify: 1.4.0
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-lifecycles-compat: 3.0.4
-
- react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.26.0
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- react@18.2.0:
+ react@18.3.1:
dependencies:
loose-envify: 1.4.0
- reactcss@1.2.3(react@18.2.0):
+ reactcss@1.2.3(react@18.3.1):
dependencies:
lodash: 4.17.21
- react: 18.2.0
+ react: 18.3.1
readdirp@3.6.0:
dependencies:
@@ -10024,35 +9889,37 @@ snapshots:
dependencies:
decimal.js-light: 2.5.1
- recharts@2.4.3(prop-types@15.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ recharts@2.13.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- classnames: 2.3.2
+ clsx: 2.1.1
eventemitter3: 4.0.7
lodash: 4.17.21
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-is: 16.13.1
- react-resize-detector: 7.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react-smooth: 2.0.2(prop-types@15.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-is: 18.3.1
+ react-smooth: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
recharts-scale: 0.4.5
- reduce-css-calc: 2.1.8
+ tiny-invariant: 1.3.3
victory-vendor: 36.6.8
- reduce-css-calc@2.1.8:
+ reflect.getprototypeof@1.0.6:
dependencies:
- css-unit-converter: 1.1.2
- postcss-value-parser: 3.3.1
-
- regenerator-runtime@0.13.11: {}
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ globalthis: 1.0.4
+ which-builtin-type: 1.1.4
- regenerator-runtime@0.14.0: {}
+ regenerator-runtime@0.14.1: {}
- regexp.prototype.flags@1.4.3:
+ regexp.prototype.flags@1.5.3:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- functions-have-names: 1.2.3
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-errors: 1.3.0
+ set-function-name: 2.0.2
require-directory@2.1.1: {}
@@ -10066,39 +9933,64 @@ snapshots:
resolve-pkg-maps@1.0.0: {}
- resolve@1.22.1:
+ resolve@1.22.8:
dependencies:
- is-core-module: 2.11.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- resolve@2.0.0-next.4:
+ resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.11.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- restore-cursor@3.1.0:
+ restore-cursor@4.0.0:
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
reusify@1.0.4: {}
- rfdc@1.3.0: {}
+ rfdc@1.4.1: {}
- rifm@0.7.0(react@18.2.0):
+ rifm@0.7.0(react@18.3.1):
dependencies:
- '@babel/runtime': 7.22.11
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
rimraf@3.0.2:
dependencies:
glob: 7.2.3
- rollup@3.29.1:
+ rollup@3.29.5:
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
+
+ rollup@4.27.2:
+ dependencies:
+ '@types/estree': 1.0.6
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.27.2
+ '@rollup/rollup-android-arm64': 4.27.2
+ '@rollup/rollup-darwin-arm64': 4.27.2
+ '@rollup/rollup-darwin-x64': 4.27.2
+ '@rollup/rollup-freebsd-arm64': 4.27.2
+ '@rollup/rollup-freebsd-x64': 4.27.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.27.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.27.2
+ '@rollup/rollup-linux-arm64-gnu': 4.27.2
+ '@rollup/rollup-linux-arm64-musl': 4.27.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.27.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.27.2
+ '@rollup/rollup-linux-s390x-gnu': 4.27.2
+ '@rollup/rollup-linux-x64-gnu': 4.27.2
+ '@rollup/rollup-linux-x64-musl': 4.27.2
+ '@rollup/rollup-win32-arm64-msvc': 4.27.2
+ '@rollup/rollup-win32-ia32-msvc': 4.27.2
+ '@rollup/rollup-win32-x64-msvc': 4.27.2
+ fsevents: 2.3.3
+ optional: true
rrweb-cssom@0.6.0: {}
@@ -10106,48 +9998,48 @@ snapshots:
dependencies:
queue-microtask: 1.2.3
- rxjs@7.8.0:
+ runes2@1.1.4: {}
+
+ rxjs@7.8.1:
dependencies:
- tslib: 2.5.0
+ tslib: 2.8.1
+
+ safe-array-concat@1.1.2:
+ dependencies:
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ isarray: 2.0.5
safe-buffer@5.2.1: {}
- safe-regex-test@1.0.0:
+ safe-regex-test@1.0.3:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ call-bind: 1.0.7
+ es-errors: 1.3.0
is-regex: 1.1.4
safer-buffer@2.1.2: {}
- saslprep@1.0.3:
- dependencies:
- sparse-bitfield: 3.0.3
- optional: true
-
sax@1.2.1: {}
saxes@6.0.0:
dependencies:
xmlchars: 2.2.0
- scheduler@0.23.0:
+ scheduler@0.23.2:
dependencies:
loose-envify: 1.4.0
- semver@5.7.1: {}
-
- semver@6.3.0: {}
+ semver@5.7.2: {}
semver@6.3.1: {}
semver@7.0.0: {}
- semver@7.3.8:
- dependencies:
- lru-cache: 6.0.0
+ semver@7.6.3: {}
- send@0.18.0:
+ send@0.19.0:
dependencies:
debug: 2.6.9
depd: 2.0.0
@@ -10165,15 +10057,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serve-static@1.15.0:
+ serve-static@1.16.2:
dependencies:
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0
+ send: 0.19.0
transitivePeerDependencies:
- supports-color
+ set-function-length@1.2.2:
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+
+ set-function-name@2.0.2:
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ functions-have-names: 1.2.3
+ has-property-descriptors: 1.0.2
+
setprototypeof@1.2.0: {}
shebang-command@2.0.0:
@@ -10184,13 +10092,12 @@ snapshots:
shell-quote@1.8.1: {}
- side-channel@1.0.4:
+ side-channel@1.0.6:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- object-inspect: 1.12.3
-
- sift@16.0.1: {}
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ object-inspect: 1.13.3
siginfo@2.0.0: {}
@@ -10202,31 +10109,12 @@ snapshots:
slash@3.0.0: {}
- slice-ansi@3.0.0:
- dependencies:
- ansi-styles: 4.3.0
- astral-regex: 2.0.0
- is-fullwidth-code-point: 3.0.0
-
- slice-ansi@4.0.0:
- dependencies:
- ansi-styles: 4.3.0
- astral-regex: 2.0.0
- is-fullwidth-code-point: 3.0.0
-
slice-ansi@5.0.0:
dependencies:
ansi-styles: 6.2.1
is-fullwidth-code-point: 4.0.0
- smart-buffer@4.2.0: {}
-
- socks@2.7.1:
- dependencies:
- ip: 2.0.0
- smart-buffer: 4.2.0
-
- source-map-js@1.0.2: {}
+ source-map-js@1.2.1: {}
source-map-support@0.5.21:
dependencies:
@@ -10237,12 +10125,7 @@ snapshots:
source-map@0.6.1: {}
- sparse-bitfield@3.0.3:
- dependencies:
- memory-pager: 1.5.0
- optional: true
-
- spawn-command@0.0.2-1: {}
+ spawn-command@0.0.2: {}
split.js@1.6.5: {}
@@ -10252,13 +10135,13 @@ snapshots:
statuses@2.0.1: {}
- std-env@3.4.0: {}
+ std-env@3.8.0: {}
stop-iteration-iterator@1.0.0:
dependencies:
- internal-slot: 1.0.5
+ internal-slot: 1.0.7
- string-argv@0.3.1: {}
+ string-argv@0.3.2: {}
string-width@4.2.3:
dependencies:
@@ -10270,38 +10153,60 @@ snapshots:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.0.1
+ strip-ansi: 7.1.0
+
+ string.prototype.includes@2.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
- string.prototype.matchall@4.0.8:
+ string.prototype.matchall@4.0.11:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
- get-intrinsic: 1.2.0
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
has-symbols: 1.0.3
- internal-slot: 1.0.5
- regexp.prototype.flags: 1.4.3
- side-channel: 1.0.4
+ internal-slot: 1.0.7
+ regexp.prototype.flags: 1.5.3
+ set-function-name: 2.0.2
+ side-channel: 1.0.6
- string.prototype.trimend@1.0.6:
+ string.prototype.repeat@1.0.0:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
- string.prototype.trimstart@1.0.6:
+ string.prototype.trim@1.2.9:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.5
+ es-object-atoms: 1.0.0
+
+ string.prototype.trimend@1.0.8:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+
+ string.prototype.trimstart@1.0.8:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
strip-ansi@6.0.1:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.0.1:
+ strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom@3.0.0: {}
@@ -10311,13 +10216,13 @@ snapshots:
strip-literal@1.3.0:
dependencies:
- acorn: 8.10.0
+ acorn: 8.14.0
strnum@1.0.5: {}
- stylis@4.1.3: {}
+ stylis@4.2.0: {}
- superjson@1.12.3:
+ superjson@1.13.3:
dependencies:
copy-anything: 3.0.5
@@ -10349,19 +10254,19 @@ snapshots:
text-table@0.2.0: {}
- through@2.3.8: {}
+ tiny-case@1.0.3: {}
+
+ tiny-invariant@1.3.3: {}
tiny-warning@1.0.3: {}
- tinybench@2.5.0: {}
+ tinybench@2.9.0: {}
tinycolor2@1.6.0: {}
tinypool@0.7.0: {}
- tinyspy@2.1.1: {}
-
- to-fast-properties@2.0.0: {}
+ tinyspy@2.2.1: {}
to-regex-range@5.0.1:
dependencies:
@@ -10375,26 +10280,22 @@ snapshots:
dependencies:
nopt: 1.0.10
- tough-cookie@4.1.3:
+ tough-cookie@4.1.4:
dependencies:
- psl: 1.9.0
- punycode: 2.3.0
+ psl: 1.10.0
+ punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
tr46@0.0.3: {}
- tr46@3.0.0:
- dependencies:
- punycode: 2.3.0
-
tr46@4.1.1:
dependencies:
- punycode: 2.3.0
+ punycode: 2.3.1
tree-kill@1.2.2: {}
- tsconfig-paths@3.14.1:
+ tsconfig-paths@3.15.0:
dependencies:
'@types/json5': 0.0.29
json5: 1.0.2
@@ -10407,96 +10308,128 @@ snapshots:
tslib@2.5.0: {}
+ tslib@2.8.1: {}
+
tsutils@3.21.0(typescript@5.6.3):
dependencies:
tslib: 1.14.1
typescript: 5.6.3
- tsx@3.12.7:
+ tsx@3.14.0:
dependencies:
- '@esbuild-kit/cjs-loader': 2.4.2
- '@esbuild-kit/core-utils': 3.1.0
- '@esbuild-kit/esm-loader': 2.5.5
+ esbuild: 0.18.20
+ get-tsconfig: 4.8.1
+ source-map-support: 0.5.21
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
tunnel@0.0.6: {}
- turbo-darwin-64@1.10.13:
+ turbo-darwin-64@2.3.3:
optional: true
- turbo-darwin-arm64@1.10.13:
+ turbo-darwin-arm64@2.3.3:
optional: true
- turbo-linux-64@1.10.13:
+ turbo-linux-64@2.3.3:
optional: true
- turbo-linux-arm64@1.10.13:
+ turbo-linux-arm64@2.3.3:
optional: true
- turbo-windows-64@1.10.13:
+ turbo-windows-64@2.3.3:
optional: true
- turbo-windows-arm64@1.10.13:
+ turbo-windows-arm64@2.3.3:
optional: true
- turbo@1.10.13:
+ turbo@2.3.3:
optionalDependencies:
- turbo-darwin-64: 1.10.13
- turbo-darwin-arm64: 1.10.13
- turbo-linux-64: 1.10.13
- turbo-linux-arm64: 1.10.13
- turbo-windows-64: 1.10.13
- turbo-windows-arm64: 1.10.13
+ turbo-darwin-64: 2.3.3
+ turbo-darwin-arm64: 2.3.3
+ turbo-linux-64: 2.3.3
+ turbo-linux-arm64: 2.3.3
+ turbo-windows-64: 2.3.3
+ turbo-windows-arm64: 2.3.3
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
- type-detect@4.0.8: {}
+ type-detect@4.1.0: {}
type-fest@0.20.2: {}
- type-fest@0.21.3: {}
+ type-fest@1.4.0: {}
- type-fest@4.26.1: {}
+ type-fest@2.19.0: {}
+
+ type-fest@4.27.0: {}
type-is@1.6.18:
dependencies:
media-typer: 0.3.0
mime-types: 2.1.35
- typed-array-length@1.0.4:
+ typed-array-buffer@1.0.2:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-typed-array: 1.1.13
+
+ typed-array-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
for-each: 0.3.3
- is-typed-array: 1.1.10
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+
+ typed-array-byte-offset@1.0.2:
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+
+ typed-array-length@1.0.6:
+ dependencies:
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ possible-typed-array-names: 1.0.0
typescript@5.6.3: {}
- ua-parser-js@1.0.37: {}
+ ua-parser-js@1.0.39: {}
- ufo@1.2.0: {}
+ ufo@1.5.4: {}
unbox-primitive@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
- uncontrollable@7.2.1(react@18.2.0):
+ uncontrollable@7.2.1(react@18.3.1):
dependencies:
- '@babel/runtime': 7.22.11
- '@types/react': 18.0.28
+ '@babel/runtime': 7.26.0
+ '@types/react': 18.3.12
invariant: 2.2.4
- react: 18.2.0
+ react: 18.3.1
react-lifecycles-compat: 3.0.4
undefsafe@2.0.5: {}
undici-types@5.26.5: {}
+ undici-types@6.19.8: {}
+
undici@5.28.2:
dependencies:
'@fastify/busboy': 2.1.0
@@ -10507,23 +10440,17 @@ snapshots:
unpipe@1.0.0: {}
- update-browserslist-db@1.0.10(browserslist@4.21.5):
- dependencies:
- browserslist: 4.21.5
- escalade: 3.1.1
- picocolors: 1.0.0
-
- update-browserslist-db@1.0.11(browserslist@4.21.10):
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
- browserslist: 4.21.10
- escalade: 3.1.1
- picocolors: 1.0.0
+ browserslist: 4.24.2
+ escalade: 3.2.0
+ picocolors: 1.1.1
uri-js-replace@1.0.1: {}
uri-js@4.4.1:
dependencies:
- punycode: 2.3.0
+ punycode: 2.3.1
url-parse@1.5.10:
dependencies:
@@ -10535,9 +10462,9 @@ snapshots:
punycode: 1.3.2
querystring: 0.2.0
- use-sync-external-store@1.2.0(react@18.2.0):
+ use-sync-external-store@1.2.2(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
util@0.12.5:
dependencies:
@@ -10555,7 +10482,7 @@ snapshots:
uuid@8.0.0: {}
- uuid@8.3.2: {}
+ uuid@9.0.1: {}
vary@1.1.2: {}
@@ -10576,14 +10503,14 @@ snapshots:
d3-time: 3.1.0
d3-timer: 3.0.1
- vite-node@0.34.4(@types/node@20.11.6):
+ vite-node@0.34.6(@types/node@20.17.6):
dependencies:
cac: 6.7.14
- debug: 4.3.4(supports-color@9.4.0)
- mlly: 1.4.0
- pathe: 1.1.1
- picocolors: 1.0.0
- vite: 4.4.9(@types/node@20.11.6)
+ debug: 4.3.7(supports-color@9.4.0)
+ mlly: 1.7.3
+ pathe: 1.1.2
+ picocolors: 1.1.1
+ vite: 4.5.5(@types/node@20.17.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -10594,59 +10521,59 @@ snapshots:
- supports-color
- terser
- vite-plugin-svgr@2.4.0(rollup@3.29.1)(vite@4.4.9(@types/node@18.13.0)):
+ vite-plugin-svgr@2.4.0(rollup@4.27.2)(vite@4.5.5(@types/node@18.19.64)):
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.29.1)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
'@svgr/core': 6.5.1
- vite: 4.4.9(@types/node@18.13.0)
+ vite: 4.5.5(@types/node@18.19.64)
transitivePeerDependencies:
- rollup
- supports-color
- vite@4.4.9(@types/node@18.13.0):
+ vite@4.5.5(@types/node@18.19.64):
dependencies:
esbuild: 0.18.20
- postcss: 8.4.29
- rollup: 3.29.1
+ postcss: 8.4.49
+ rollup: 3.29.5
optionalDependencies:
- '@types/node': 18.13.0
- fsevents: 2.3.2
+ '@types/node': 18.19.64
+ fsevents: 2.3.3
- vite@4.4.9(@types/node@20.11.6):
+ vite@4.5.5(@types/node@20.17.6):
dependencies:
esbuild: 0.18.20
- postcss: 8.4.29
- rollup: 3.29.1
+ postcss: 8.4.49
+ rollup: 3.29.5
optionalDependencies:
- '@types/node': 20.11.6
- fsevents: 2.3.2
-
- vitest@0.34.4(jsdom@22.1.0):
- dependencies:
- '@types/chai': 4.3.5
- '@types/chai-subset': 1.3.3
- '@types/node': 20.11.6
- '@vitest/expect': 0.34.4
- '@vitest/runner': 0.34.4
- '@vitest/snapshot': 0.34.4
- '@vitest/spy': 0.34.4
- '@vitest/utils': 0.34.4
- acorn: 8.10.0
- acorn-walk: 8.2.0
+ '@types/node': 20.17.6
+ fsevents: 2.3.3
+
+ vitest@0.34.6(jsdom@22.1.0):
+ dependencies:
+ '@types/chai': 4.3.20
+ '@types/chai-subset': 1.3.5
+ '@types/node': 20.17.6
+ '@vitest/expect': 0.34.6
+ '@vitest/runner': 0.34.6
+ '@vitest/snapshot': 0.34.6
+ '@vitest/spy': 0.34.6
+ '@vitest/utils': 0.34.6
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
cac: 6.7.14
- chai: 4.3.7
- debug: 4.3.4(supports-color@9.4.0)
+ chai: 4.5.0
+ debug: 4.3.7(supports-color@9.4.0)
local-pkg: 0.4.3
- magic-string: 0.30.2
- pathe: 1.1.1
- picocolors: 1.0.0
- std-env: 3.4.0
+ magic-string: 0.30.12
+ pathe: 1.1.2
+ picocolors: 1.1.1
+ std-env: 3.8.0
strip-literal: 1.3.0
- tinybench: 2.5.0
+ tinybench: 2.9.0
tinypool: 0.7.0
- vite: 4.4.9(@types/node@20.11.6)
- vite-node: 0.34.4(@types/node@20.11.6)
- why-is-node-running: 2.2.2
+ vite: 4.5.5(@types/node@20.17.6)
+ vite-node: 0.34.6(@types/node@20.17.6)
+ why-is-node-running: 2.3.0
optionalDependencies:
jsdom: 22.1.0
transitivePeerDependencies:
@@ -10681,11 +10608,6 @@ snapshots:
whatwg-mimetype@3.0.0: {}
- whatwg-url@11.0.0:
- dependencies:
- tr46: 3.0.0
- webidl-conversions: 7.0.0
-
whatwg-url@12.0.1:
dependencies:
tr46: 4.1.1
@@ -10704,17 +10626,40 @@ snapshots:
is-string: 1.0.7
is-symbol: 1.0.4
- which-collection@1.0.1:
+ which-builtin-type@1.1.4:
+ dependencies:
+ function.prototype.name: 1.1.6
+ has-tostringtag: 1.0.2
+ is-async-function: 2.0.0
+ is-date-object: 1.0.5
+ is-finalizationregistry: 1.0.2
+ is-generator-function: 1.0.10
+ is-regex: 1.1.4
+ is-weakref: 1.0.2
+ isarray: 2.0.5
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.2
+ which-typed-array: 1.1.15
+
+ which-collection@1.0.2:
+ dependencies:
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-weakmap: 2.0.2
+ is-weakset: 2.0.3
+
+ which-typed-array@1.1.15:
dependencies:
- is-map: 2.0.2
- is-set: 2.0.2
- is-weakmap: 2.0.1
- is-weakset: 2.0.2
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.2
which-typed-array@1.1.9:
dependencies:
available-typed-arrays: 1.0.5
- call-bind: 1.0.2
+ call-bind: 1.0.7
for-each: 0.3.3
gopd: 1.0.1
has-tostringtag: 1.0.0
@@ -10724,28 +10669,28 @@ snapshots:
dependencies:
isexe: 2.0.0
- why-is-node-running@2.2.2:
+ why-is-node-running@2.3.0:
dependencies:
siginfo: 2.0.0
stackback: 0.0.2
- word-wrap@1.2.3: {}
+ word-wrap@1.2.5: {}
- wrap-ansi@6.2.0:
+ wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- wrap-ansi@7.0.0:
+ wrap-ansi@8.1.0:
dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
+ ansi-styles: 6.2.1
+ string-width: 5.1.2
+ strip-ansi: 7.1.0
wrappy@1.0.2: {}
- ws@8.14.1: {}
+ ws@8.18.0: {}
xml-name-validator@4.0.0: {}
@@ -10769,20 +10714,18 @@ snapshots:
yallist@3.1.1: {}
- yallist@4.0.0: {}
-
yaml-ast-parser@0.0.43: {}
yaml@1.10.2: {}
- yaml@2.2.1: {}
+ yaml@2.3.1: {}
yargs-parser@21.1.1: {}
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.1
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -10791,22 +10734,20 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
- yup@0.32.11:
+ yup@1.4.0:
dependencies:
- '@babel/runtime': 7.22.11
- '@types/lodash': 4.14.191
- lodash: 4.17.21
- lodash-es: 4.17.21
- nanoclone: 0.2.1
- property-expr: 2.0.5
+ property-expr: 2.0.6
+ tiny-case: 1.0.3
toposort: 2.0.2
+ type-fest: 2.19.0
zod@3.23.8: {}
- zustand@4.3.3(react@18.2.0):
+ zustand@4.5.5(@types/react@18.3.12)(react@18.3.1):
dependencies:
- use-sync-external-store: 1.2.0(react@18.2.0)
+ use-sync-external-store: 1.2.2(react@18.3.1)
optionalDependencies:
- react: 18.2.0
+ '@types/react': 18.3.12
+ react: 18.3.1
diff --git a/turbo.json b/turbo.json
index bc4810d57..72c68b9ee 100644
--- a/turbo.json
+++ b/turbo.json
@@ -1,6 +1,6 @@
{
"$schema": "https://turbo.build/schema.json",
- "pipeline": {
+ "tasks": {
"start": {
"cache": false
},