diff --git a/.gitignore b/.gitignore
index eac6aedb..862c9e2c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
.env
+.env.dev
+.env.prod
data
# compiled output
/dist
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 00000000..2bdf0e03
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "apps/server/src/ee"]
+ path = apps/server/src/ee
+ url = https://github.com/docmost/ee
diff --git a/Dockerfile b/Dockerfile
index d6c740a6..02a35ffc 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM node:21-alpine AS base
+FROM node:22-alpine AS base
LABEL org.opencontainers.image.source="https://github.com/docmost/docmost"
FROM base AS builder
@@ -7,7 +7,7 @@ WORKDIR /app
COPY . .
-RUN npm install -g pnpm
+RUN npm install -g pnpm@10.4.0
RUN pnpm install --frozen-lockfile
RUN pnpm build
@@ -33,7 +33,7 @@ COPY --from=builder /app/pnpm*.yaml /app/
# Copy patches
COPY --from=builder /app/patches /app/patches
-RUN npm install -g pnpm
+RUN npm install -g pnpm@10.4.0
RUN chown -R node:node /app
diff --git a/README.md b/README.md
index 3fca15a8..0f1b647a 100644
--- a/README.md
+++ b/README.md
@@ -13,9 +13,11 @@
> Docmost is currently in **beta**. We value your feedback as we progress towards a stable release.
## Getting started
+
To get started with Docmost, please refer to our [documentation](https://docmost.com/docs).
## Features
+
- Real-time collaboration
- Diagrams (Draw.io, Excalidraw and Mermaid)
- Spaces
@@ -24,13 +26,26 @@ To get started with Docmost, please refer to our [documentation](https://docmost
- Comments
- Page history
- Search
-- File attachment
+- File attachments
+- Embeds (Airtable, Loom, Miro and more)
+- Translations (10+ languages)
+
+### Screenshots
-#### Screenshots
-### Contributing
+### License
+Docmost core is licensed under the open-source AGPL 3.0 license.
+Enterprise features are available under an enterprise license (Enterprise Edition).
+
+All files in the following directories are licensed under the Docmost Enterprise license defined in `packages/ee/License`.
+ - apps/server/src/ee
+ - apps/client/src/ee
+ - packages/ee
+
+### Contributing
+
See the [development documentation](https://docmost.com/docs/self-hosting/development)
diff --git a/apps/client/package.json b/apps/client/package.json
index cd1248c7..2a0ec761 100644
--- a/apps/client/package.json
+++ b/apps/client/package.json
@@ -16,12 +16,12 @@
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@excalidraw/excalidraw": "^0.17.6",
- "@mantine/core": "^7.14.2",
- "@mantine/form": "^7.14.2",
- "@mantine/hooks": "^7.14.2",
- "@mantine/modals": "^7.14.2",
- "@mantine/notifications": "^7.14.2",
- "@mantine/spotlight": "^7.14.2",
+ "@mantine/core": "^7.17.0",
+ "@mantine/form": "^7.17.0",
+ "@mantine/hooks": "^7.17.0",
+ "@mantine/modals": "^7.17.0",
+ "@mantine/notifications": "^7.17.0",
+ "@mantine/spotlight": "^7.17.0",
"@tabler/icons-react": "^3.22.0",
"@tanstack/react-query": "^5.61.4",
"axios": "^1.7.9",
@@ -30,7 +30,7 @@
"file-saver": "^2.0.5",
"i18next": "^23.14.0",
"i18next-http-backend": "^2.6.1",
- "jotai": "^2.10.3",
+ "jotai": "^2.12.1",
"jotai-optics": "^0.4.0",
"js-cookie": "^3.0.5",
"katex": "0.16.21",
diff --git a/apps/client/src/App.tsx b/apps/client/src/App.tsx
index 95389e06..c806f852 100644
--- a/apps/client/src/App.tsx
+++ b/apps/client/src/App.tsx
@@ -18,10 +18,18 @@ import { ErrorBoundary } from "react-error-boundary";
import InviteSignup from "@/pages/auth/invite-signup.tsx";
import ForgotPassword from "@/pages/auth/forgot-password.tsx";
import PasswordReset from "./pages/auth/password-reset";
+import Billing from "@/ee/billing/pages/billing.tsx";
+import CloudLogin from "@/ee/pages/cloud-login.tsx";
+import CreateWorkspace from "@/ee/pages/create-workspace.tsx";
+import { isCloud } from "@/lib/config.ts";
import { useTranslation } from "react-i18next";
+import Security from "@/ee/security/pages/security.tsx";
+import License from "@/ee/licence/pages/license.tsx";
+import { useRedirectToCloudSelect } from "@/ee/hooks/use-redirect-to-cloud-select.tsx";
export default function App() {
const { t } = useTranslation();
+ useRedirectToCloudSelect();
return (
<>
@@ -29,15 +37,24 @@ export default function App() {
} />
} />
} />
- } />
} />
} />
+ {!isCloud() && (
+ } />
+ )}
+
+ {isCloud() && (
+ <>
+ } />
+ } />
+ >
+ )}
+
} />
}>
} />
-
} />
} />
} />
} />
+ } />
+ {!isCloud() && } />}
+ {isCloud() && } />}
diff --git a/apps/client/src/components/common/copy.tsx b/apps/client/src/components/common/copy.tsx
new file mode 100644
index 00000000..efae5750
--- /dev/null
+++ b/apps/client/src/components/common/copy.tsx
@@ -0,0 +1,31 @@
+import { ActionIcon, CopyButton, Tooltip } from "@mantine/core";
+import { IconCheck, IconCopy } from "@tabler/icons-react";
+import React from "react";
+import { useTranslation } from "react-i18next";
+
+interface CopyProps {
+ text: string;
+}
+export default function CopyTextButton({ text }: CopyProps) {
+ const { t } = useTranslation();
+
+ return (
+
+ {({ copied, copy }) => (
+
+
+ {copied ? : }
+
+
+ )}
+
+ );
+}
diff --git a/apps/client/src/components/icons/google-icon.tsx b/apps/client/src/components/icons/google-icon.tsx
new file mode 100644
index 00000000..e30be880
--- /dev/null
+++ b/apps/client/src/components/icons/google-icon.tsx
@@ -0,0 +1,33 @@
+import { rem } from "@mantine/core";
+
+interface Props {
+ size?: number | string;
+}
+
+export function GoogleIcon({ size }: Props) {
+ return (
+
+ );
+}
diff --git a/apps/client/src/components/icons/openid-icon.tsx b/apps/client/src/components/icons/openid-icon.tsx
new file mode 100644
index 00000000..3252d47c
--- /dev/null
+++ b/apps/client/src/components/icons/openid-icon.tsx
@@ -0,0 +1,20 @@
+import { rem } from "@mantine/core";
+
+interface Props {
+ size?: number | string;
+}
+
+export function OpenIdIcon({ size }: Props) {
+ return (
+
+ );
+}
diff --git a/apps/client/src/components/layouts/global/app-header.tsx b/apps/client/src/components/layouts/global/app-header.tsx
index 04b2b09d..30d03b53 100644
--- a/apps/client/src/components/layouts/global/app-header.tsx
+++ b/apps/client/src/components/layouts/global/app-header.tsx
@@ -1,19 +1,21 @@
-import {Group, Text, Tooltip} from "@mantine/core";
+import { Badge, Group, Text, Tooltip } from "@mantine/core";
import classes from "./app-header.module.css";
import React from "react";
import TopMenu from "@/components/layouts/global/top-menu.tsx";
-import {Link} from "react-router-dom";
+import { Link } from "react-router-dom";
import APP_ROUTE from "@/lib/app-route.ts";
-import {useAtom} from "jotai/index";
+import { useAtom } from "jotai";
import {
desktopSidebarAtom,
mobileSidebarAtom,
} from "@/components/layouts/global/hooks/atoms/sidebar-atom.ts";
-import {useToggleSidebar} from "@/components/layouts/global/hooks/hooks/use-toggle-sidebar.ts";
+import { useToggleSidebar } from "@/components/layouts/global/hooks/hooks/use-toggle-sidebar.ts";
import SidebarToggle from "@/components/ui/sidebar-toggle-button.tsx";
import { useTranslation } from "react-i18next";
+import useTrial from "@/ee/hooks/use-trial.tsx";
+import { isCloud } from "@/lib/config.ts";
-const links = [{link: APP_ROUTE.HOME, label: "Home"}];
+const links = [{ link: APP_ROUTE.HOME, label: "Home" }];
export function AppHeader() {
const { t } = useTranslation();
@@ -22,6 +24,7 @@ export function AppHeader() {
const [desktopOpened] = useAtom(desktopSidebarAtom);
const toggleDesktop = useToggleSidebar(desktopSidebarAtom);
+ const { isTrial, trialDaysLeft } = useTrial();
const isHomeRoute = location.pathname.startsWith("/home");
@@ -38,7 +41,6 @@ export function AppHeader() {
{!isHomeRoute && (
<>
-
@@ -75,8 +77,21 @@ export function AppHeader() {
-
-
+
+ {isCloud() && isTrial && trialDaysLeft !== 0 && (
+
+ {trialDaysLeft === 1
+ ? "1 day left"
+ : `${trialDaysLeft} days left`}
+
+ )}
+
>
diff --git a/apps/client/src/components/layouts/global/global-app-shell.tsx b/apps/client/src/components/layouts/global/global-app-shell.tsx
index e5fe224b..4b5c0269 100644
--- a/apps/client/src/components/layouts/global/global-app-shell.tsx
+++ b/apps/client/src/components/layouts/global/global-app-shell.tsx
@@ -1,23 +1,26 @@
import { AppShell, Container } from "@mantine/core";
-import React, { useCallback, useEffect, useRef, useState } from "react";
+import React, { useEffect, useRef, useState } from "react";
import { useLocation } from "react-router-dom";
import SettingsSidebar from "@/components/settings/settings-sidebar.tsx";
import { useAtom } from "jotai";
import {
asideStateAtom,
desktopSidebarAtom,
- mobileSidebarAtom, sidebarWidthAtom,
+ mobileSidebarAtom,
+ sidebarWidthAtom,
} from "@/components/layouts/global/hooks/atoms/sidebar-atom.ts";
import { SpaceSidebar } from "@/features/space/components/sidebar/space-sidebar.tsx";
import { AppHeader } from "@/components/layouts/global/app-header.tsx";
import Aside from "@/components/layouts/global/aside.tsx";
import classes from "./app-shell.module.css";
+import { useTrialEndAction } from "@/ee/hooks/use-trial-end-action.tsx";
export default function GlobalAppShell({
children,
}: {
children: React.ReactNode;
}) {
+ useTrialEndAction();
const [mobileOpened] = useAtom(mobileSidebarAtom);
const [desktopOpened] = useAtom(desktopSidebarAtom);
const [{ isAsideOpen }] = useAtom(asideStateAtom);
@@ -37,7 +40,9 @@ export default function GlobalAppShell({
const resize = React.useCallback(
(mouseMoveEvent) => {
if (isResizing) {
- const newWidth = mouseMoveEvent.clientX - sidebarRef.current.getBoundingClientRect().left;
+ const newWidth =
+ mouseMoveEvent.clientX -
+ sidebarRef.current.getBoundingClientRect().left;
if (newWidth < 220) {
setSidebarWidth(220);
return;
@@ -49,7 +54,7 @@ export default function GlobalAppShell({
setSidebarWidth(newWidth);
}
},
- [isResizing]
+ [isResizing],
);
useEffect(() => {
@@ -94,7 +99,11 @@ export default function GlobalAppShell({
{!isHomeRoute && (
-
+
{isSpaceRoute && }
{isSettingsRoute && }
diff --git a/apps/client/src/components/layouts/global/top-menu.tsx b/apps/client/src/components/layouts/global/top-menu.tsx
index 28c64660..52cabb5a 100644
--- a/apps/client/src/components/layouts/global/top-menu.tsx
+++ b/apps/client/src/components/layouts/global/top-menu.tsx
@@ -33,13 +33,13 @@ export default function TopMenu() {
- {workspace.name}
+ {workspace?.name}
diff --git a/apps/client/src/components/settings/settings-queries.tsx b/apps/client/src/components/settings/settings-queries.tsx
new file mode 100644
index 00000000..a37ecd8b
--- /dev/null
+++ b/apps/client/src/components/settings/settings-queries.tsx
@@ -0,0 +1,51 @@
+import { queryClient } from "@/main.tsx";
+import {
+ getBilling,
+ getBillingPlans,
+} from "@/ee/billing/services/billing-service.ts";
+import { getSpaces } from "@/features/space/services/space-service.ts";
+import { getGroups } from "@/features/group/services/group-service.ts";
+import { QueryParams } from "@/lib/types.ts";
+import { getWorkspaceMembers } from "@/features/workspace/services/workspace-service.ts";
+import { getLicenseInfo } from "@/ee/licence/services/license-service.ts";
+
+export const prefetchWorkspaceMembers = () => {
+ const params = { limit: 100, page: 1, query: "" } as QueryParams;
+ queryClient.prefetchQuery({
+ queryKey: ["workspaceMembers", params],
+ queryFn: () => getWorkspaceMembers(params),
+ });
+};
+
+export const prefetchSpaces = () => {
+ queryClient.prefetchQuery({
+ queryKey: ["spaces", { page: 1 }],
+ queryFn: () => getSpaces({ page: 1 }),
+ });
+};
+
+export const prefetchGroups = () => {
+ queryClient.prefetchQuery({
+ queryKey: ["groups", { page: 1 }],
+ queryFn: () => getGroups({ page: 1 }),
+ });
+};
+
+export const prefetchBilling = () => {
+ queryClient.prefetchQuery({
+ queryKey: ["billing"],
+ queryFn: () => getBilling(),
+ });
+
+ queryClient.prefetchQuery({
+ queryKey: ["billing-plans"],
+ queryFn: () => getBillingPlans(),
+ });
+};
+
+export const prefetchLicense = () => {
+ queryClient.prefetchQuery({
+ queryKey: ["license"],
+ queryFn: () => getLicenseInfo(),
+ });
+};
diff --git a/apps/client/src/components/settings/settings-sidebar.tsx b/apps/client/src/components/settings/settings-sidebar.tsx
index 8ffb7c4a..7c3b57dd 100644
--- a/apps/client/src/components/settings/settings-sidebar.tsx
+++ b/apps/client/src/components/settings/settings-sidebar.tsx
@@ -1,5 +1,5 @@
import React, { useEffect, useState } from "react";
-import { Group, Text, ScrollArea, ActionIcon, rem } from "@mantine/core";
+import { Group, Text, ScrollArea, ActionIcon } from "@mantine/core";
import {
IconUser,
IconSettings,
@@ -8,15 +8,33 @@ import {
IconUsersGroup,
IconSpaces,
IconBrush,
+ IconCoin,
+ IconLock,
+ IconKey,
} from "@tabler/icons-react";
import { Link, useLocation, useNavigate } from "react-router-dom";
import classes from "./settings.module.css";
import { useTranslation } from "react-i18next";
+import { isCloud } from "@/lib/config.ts";
+import useUserRole from "@/hooks/use-user-role.tsx";
+import { useAtom } from "jotai/index";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
+import {
+ prefetchBilling,
+ prefetchGroups,
+ prefetchLicense,
+ prefetchSpaces,
+ prefetchWorkspaceMembers,
+} from "@/components/settings/settings-queries.tsx";
interface DataItem {
label: string;
icon: React.ElementType;
path: string;
+ isCloud?: boolean;
+ isEnterprise?: boolean;
+ isAdmin?: boolean;
+ isSelfhosted?: boolean;
}
interface DataGroup {
@@ -45,10 +63,35 @@ const groupedData: DataGroup[] = [
icon: IconUsers,
path: "/settings/members",
},
+ {
+ label: "Billing",
+ icon: IconCoin,
+ path: "/settings/billing",
+ isCloud: true,
+ isAdmin: true,
+ },
+ {
+ label: "Security & SSO",
+ icon: IconLock,
+ path: "/settings/security",
+ isCloud: true,
+ isEnterprise: true,
+ isAdmin: true,
+ },
{ label: "Groups", icon: IconUsersGroup, path: "/settings/groups" },
{ label: "Spaces", icon: IconSpaces, path: "/settings/spaces" },
],
},
+ {
+ heading: "System",
+ items: [
+ {
+ label: "License & Edition",
+ icon: IconKey,
+ path: "/settings/license",
+ },
+ ],
+ },
];
export default function SettingsSidebar() {
@@ -56,29 +99,92 @@ export default function SettingsSidebar() {
const location = useLocation();
const [active, setActive] = useState(location.pathname);
const navigate = useNavigate();
+ const { isAdmin } = useUserRole();
+ const [workspace] = useAtom(workspaceAtom);
useEffect(() => {
setActive(location.pathname);
}, [location.pathname]);
- const menuItems = groupedData.map((group) => (
-
-
- {t(group.heading)}
-
- {group.items.map((item) => (
-
-
- {t(item.label)}
-
- ))}
-
- ));
+ const canShowItem = (item: DataItem) => {
+ if (item.isCloud && item.isEnterprise) {
+ if (!(isCloud() || workspace?.hasLicenseKey)) return false;
+ return item.isAdmin ? isAdmin : true;
+ }
+
+ if (item.isCloud) {
+ return isCloud() ? (item.isAdmin ? isAdmin : true) : false;
+ }
+
+ if (item.isSelfhosted) {
+ return !isCloud() ? (item.isAdmin ? isAdmin : true) : false;
+ }
+
+ if (item.isEnterprise) {
+ return workspace?.hasLicenseKey ? (item.isAdmin ? isAdmin : true) : false;
+ }
+
+ if (item.isAdmin) {
+ return isAdmin;
+ }
+
+ return true;
+ };
+
+ const menuItems = groupedData.map((group) => {
+ if (group.heading === "System" && (!isAdmin || isCloud())) {
+ return null;
+ }
+
+ return (
+
+
+ {t(group.heading)}
+
+ {group.items.map((item) => {
+ if (!canShowItem(item)) {
+ return null;
+ }
+
+ let prefetchHandler: any;
+ switch (item.label) {
+ case "Members":
+ prefetchHandler = prefetchWorkspaceMembers;
+ break;
+ case "Spaces":
+ prefetchHandler = prefetchSpaces;
+ break;
+ case "Groups":
+ prefetchHandler = prefetchGroups;
+ break;
+ case "Billing":
+ prefetchHandler = prefetchBilling;
+ break;
+ case "License & Edition":
+ if (workspace?.hasLicenseKey) {
+ prefetchHandler = prefetchLicense;
+ }
+ break;
+ default:
+ break;
+ }
+
+ return (
+
+
+ {t(item.label)}
+
+ );
+ })}
+
+ );
+ });
return (
@@ -95,18 +201,32 @@ export default function SettingsSidebar() {
{menuItems}
-
-
- v{APP_VERSION}
-
-
+ {!isCloud() && (
+
+
+ v{APP_VERSION}
+
+
+ )}
+
+ {isCloud() && (
+
+
+ help@docmost.com
+
+
+ )}
);
}
diff --git a/apps/client/src/components/settings/settings.module.css b/apps/client/src/components/settings/settings.module.css
index 546ff351..48de4c79 100644
--- a/apps/client/src/components/settings/settings.module.css
+++ b/apps/client/src/components/settings/settings.module.css
@@ -58,7 +58,7 @@
align-items: center;
}
-.version {
+.text {
padding-left: var(--mantine-spacing-xs) ;
padding-top: 10px;
}
diff --git a/apps/client/src/ee/LICENSE b/apps/client/src/ee/LICENSE
new file mode 100644
index 00000000..db59ed95
--- /dev/null
+++ b/apps/client/src/ee/LICENSE
@@ -0,0 +1 @@
+Files in this directory are subject to the Docmost Enterprise Edition license.
\ No newline at end of file
diff --git a/apps/client/src/ee/billing/components/billing-details.tsx b/apps/client/src/ee/billing/components/billing-details.tsx
new file mode 100644
index 00000000..9ecd1558
--- /dev/null
+++ b/apps/client/src/ee/billing/components/billing-details.tsx
@@ -0,0 +1,130 @@
+import {
+ useBillingPlans,
+ useBillingQuery,
+} from "@/ee/billing/queries/billing-query.ts";
+import { Group, Text, SimpleGrid, Paper } from "@mantine/core";
+import classes from "./billing.module.css";
+import { format } from "date-fns";
+import { formatInterval } from "@/ee/billing/utils.ts";
+
+export default function BillingDetails() {
+ const { data: billing } = useBillingQuery();
+ const { data: plans } = useBillingPlans();
+
+ if (!billing || !plans) {
+ return null;
+ }
+
+ return (
+
+
+
+
+
+
+ Plan
+
+
+ {
+ plans.find(
+ (plan) => plan.productId === billing.stripeProductId,
+ )?.name
+ }
+
+
+
+
+
+
+
+
+
+ Billing Period
+
+
+ {formatInterval(billing.interval)}
+
+
+
+
+
+
+
+
+
+ {billing.cancelAtPeriodEnd
+ ? "Cancellation date"
+ : "Renewal date"}
+
+
+ {format(billing.periodEndAt, "dd MMM, yyyy")}
+
+
+
+
+
+
+
+
+
+
+
+ Seat count
+
+
+ {billing.quantity}
+
+
+
+
+
+
+
+
+
+ Total
+
+
+ {(billing.amount / 100) * billing.quantity}{" "}
+ {billing.currency.toUpperCase()}
+
+
+ ${billing.amount / 100} /user/{billing.interval}
+
+
+
+
+
+
+ );
+}
diff --git a/apps/client/src/ee/billing/components/billing-incomplete.tsx b/apps/client/src/ee/billing/components/billing-incomplete.tsx
new file mode 100644
index 00000000..d2e6b42f
--- /dev/null
+++ b/apps/client/src/ee/billing/components/billing-incomplete.tsx
@@ -0,0 +1,13 @@
+import { Alert } from "@mantine/core";
+import React from "react";
+
+export default function BillingIncomplete() {
+ return (
+ <>
+
+ Your subscription is in an incomplete state. Please refresh this page if
+ you recently made your payment.
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/billing/components/billing-plans.tsx b/apps/client/src/ee/billing/components/billing-plans.tsx
new file mode 100644
index 00000000..3ff655d6
--- /dev/null
+++ b/apps/client/src/ee/billing/components/billing-plans.tsx
@@ -0,0 +1,115 @@
+import {
+ Button,
+ Card,
+ List,
+ SegmentedControl,
+ ThemeIcon,
+ Title,
+ Text,
+ Group,
+} from "@mantine/core";
+import { useState } from "react";
+import { IconCheck } from "@tabler/icons-react";
+import { useBillingPlans } from "@/ee/billing/queries/billing-query.ts";
+import { getCheckoutLink } from "@/ee/billing/services/billing-service.ts";
+
+export default function BillingPlans() {
+ const { data: plans } = useBillingPlans();
+ const [interval, setInterval] = useState("yearly");
+
+ if (!plans) {
+ return null;
+ }
+
+ const handleCheckout = async (priceId: string) => {
+ try {
+ const checkoutLink = await getCheckoutLink({
+ priceId: priceId,
+ });
+ window.location.href = checkoutLink.url;
+ } catch (err) {
+ console.error("Failed to get checkout link", err);
+ }
+ };
+
+ return (
+
+ {plans.map((plan) => {
+ const price =
+ interval === "monthly" ? plan.price.monthly : plan.price.yearly;
+ const priceId = interval === "monthly" ? plan.monthlyId : plan.yearlyId;
+ const yearlyMonthPrice = parseInt(plan.price.yearly) / 12;
+
+ return (
+
+
+
+
+ {plan.name}
+
+
+ {interval === "monthly" && (
+ <>
+ ${price}{" "}
+
+ /user/month
+
+ >
+ )}
+ {interval === "yearly" && (
+ <>
+ ${yearlyMonthPrice}{" "}
+
+ /user/month
+
+ >
+ )}
+
+
+ billed {interval}
+
+
+
+
+
+
+
+
+
+
+
+ }
+ >
+ {plan.features.map((feature, index) => (
+ {feature}
+ ))}
+
+
+
+ );
+ })}
+
+ );
+}
diff --git a/apps/client/src/ee/billing/components/billing-trial.tsx b/apps/client/src/ee/billing/components/billing-trial.tsx
new file mode 100644
index 00000000..4628ae00
--- /dev/null
+++ b/apps/client/src/ee/billing/components/billing-trial.tsx
@@ -0,0 +1,32 @@
+import { Alert } from "@mantine/core";
+import { useBillingQuery } from "@/ee/billing/queries/billing-query.ts";
+import useTrial from "@/ee/hooks/use-trial.tsx";
+
+export default function BillingTrial() {
+ const { data: billing, isLoading } = useBillingQuery();
+ const { trialDaysLeft } = useTrial();
+
+ if (isLoading) {
+ return null;
+ }
+
+ return (
+ <>
+ {trialDaysLeft > 0 && !billing && (
+
+ You have {trialDaysLeft} {trialDaysLeft === 1 ? "day" : "days"} left
+ in your 14-day trial. Please subscribe to a plan before your trial
+ ends.
+
+ )}
+
+ {trialDaysLeft === 0 ||
+ (trialDaysLeft === null && !billing && (
+
+ Your 14-day trial has come to an end. Please subscribe to a plan to
+ continue using this service.
+
+ ))}
+ >
+ );
+}
diff --git a/apps/client/src/ee/billing/components/billing.module.css b/apps/client/src/ee/billing/components/billing.module.css
new file mode 100644
index 00000000..50398f33
--- /dev/null
+++ b/apps/client/src/ee/billing/components/billing.module.css
@@ -0,0 +1,10 @@
+.root {
+ padding-top: var(--mantine-spacing-xs);
+ padding-bottom: var(--mantine-spacing-xs);
+}
+
+.label {
+ font-family:
+ Greycliff CF,
+ var(--mantine-font-family);
+}
\ No newline at end of file
diff --git a/apps/client/src/ee/billing/components/manage-billing.tsx b/apps/client/src/ee/billing/components/manage-billing.tsx
new file mode 100644
index 00000000..2424d1e6
--- /dev/null
+++ b/apps/client/src/ee/billing/components/manage-billing.tsx
@@ -0,0 +1,34 @@
+import { Button, Group, Text } from "@mantine/core";
+import React from "react";
+import { getBillingPortalLink } from "@/ee/billing/services/billing-service.ts";
+
+export default function ManageBilling() {
+ const handleBillingPortal = async () => {
+ try {
+ const portalLink = await getBillingPortalLink();
+ window.location.href = portalLink.url;
+ } catch (err) {
+ console.error("Failed to get billing portal link", err);
+ }
+ };
+
+ return (
+ <>
+
+
+
+ Manage subscription
+
+
+ Manage your your subscription, invoices, update payment details, and
+ more.
+
+
+
+
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/billing/pages/billing.tsx b/apps/client/src/ee/billing/pages/billing.tsx
new file mode 100644
index 00000000..a389a1e5
--- /dev/null
+++ b/apps/client/src/ee/billing/pages/billing.tsx
@@ -0,0 +1,41 @@
+import { Helmet } from "react-helmet-async";
+import { getAppName } from "@/lib/config.ts";
+import SettingsTitle from "@/components/settings/settings-title.tsx";
+import BillingPlans from "@/ee/billing/components/billing-plans.tsx";
+import BillingTrial from "@/ee/billing/components/billing-trial.tsx";
+import ManageBilling from "@/ee/billing/components/manage-billing.tsx";
+import { Divider } from "@mantine/core";
+import React from "react";
+import BillingDetails from "@/ee/billing/components/billing-details.tsx";
+import { useBillingQuery } from "@/ee/billing/queries/billing-query.ts";
+import useUserRole from "@/hooks/use-user-role.tsx";
+
+export default function Billing() {
+ const { data: billing, isError: isBillingError } = useBillingQuery();
+ const { isAdmin } = useUserRole();
+
+ if (!isAdmin) {
+ return null;
+ }
+
+ return (
+ <>
+
+ Billing - {getAppName()}
+
+
+
+
+
+
+ {isBillingError && }
+
+ {billing && (
+ <>
+
+
+ >
+ )}
+ >
+ );
+}
diff --git a/apps/client/src/ee/billing/queries/billing-query.ts b/apps/client/src/ee/billing/queries/billing-query.ts
new file mode 100644
index 00000000..261102f5
--- /dev/null
+++ b/apps/client/src/ee/billing/queries/billing-query.ts
@@ -0,0 +1,20 @@
+import { useQuery, UseQueryResult } from "@tanstack/react-query";
+import {
+ getBilling,
+ getBillingPlans,
+} from "@/ee/billing/services/billing-service.ts";
+import { IBilling, IBillingPlan } from "@/ee/billing/types/billing.types.ts";
+
+export function useBillingQuery(): UseQueryResult {
+ return useQuery({
+ queryKey: ["billing"],
+ queryFn: () => getBilling(),
+ });
+}
+
+export function useBillingPlans(): UseQueryResult {
+ return useQuery({
+ queryKey: ["billing-plans"],
+ queryFn: () => getBillingPlans(),
+ });
+}
diff --git a/apps/client/src/ee/billing/services/billing-service.ts b/apps/client/src/ee/billing/services/billing-service.ts
new file mode 100644
index 00000000..c76f4ea5
--- /dev/null
+++ b/apps/client/src/ee/billing/services/billing-service.ts
@@ -0,0 +1,29 @@
+import api from "@/lib/api-client.ts";
+import {
+ IBilling,
+ IBillingPlan,
+ IBillingPortal,
+ ICheckoutLink,
+} from "@/ee/billing/types/billing.types.ts";
+
+export async function getBilling(): Promise {
+ const req = await api.post("/billing/info");
+ return req.data;
+}
+
+export async function getBillingPlans(): Promise {
+ const req = await api.post("/billing/plans");
+ return req.data;
+}
+
+export async function getCheckoutLink(data: {
+ priceId: string;
+}): Promise {
+ const req = await api.post("/billing/checkout", data);
+ return req.data;
+}
+
+export async function getBillingPortalLink(): Promise {
+ const req = await api.post("/billing/portal");
+ return req.data;
+}
diff --git a/apps/client/src/ee/billing/types/billing.types.ts b/apps/client/src/ee/billing/types/billing.types.ts
new file mode 100644
index 00000000..89d936f0
--- /dev/null
+++ b/apps/client/src/ee/billing/types/billing.types.ts
@@ -0,0 +1,49 @@
+export enum BillingPlan {
+ STANDARD = "standard",
+}
+
+export interface IBilling {
+ id: string;
+ stripeSubscriptionId: string;
+ stripeCustomerId: string;
+ status: string;
+ quantity: number;
+ amount: number;
+ interval: string;
+ currency: string;
+ metadata: Record;
+ stripePriceId: string;
+ stripeItemId: string;
+ stripeProductId: string;
+ periodStartAt: Date;
+ periodEndAt: Date;
+ cancelAtPeriodEnd: boolean;
+ cancelAt: Date;
+ canceledAt: Date;
+ workspaceId: string;
+ createdAt: Date;
+ updatedAt: Date;
+ deletedAt: Date;
+}
+
+export interface ICheckoutLink {
+ url: string;
+}
+
+export interface IBillingPortal {
+ url: string;
+}
+
+export interface IBillingPlan {
+ name: string;
+ description: string;
+ productId: string;
+ monthlyId: string;
+ yearlyId: string;
+ currency: string;
+ price: {
+ monthly: string;
+ yearly: string;
+ };
+ features: string[];
+}
diff --git a/apps/client/src/ee/billing/utils.ts b/apps/client/src/ee/billing/utils.ts
new file mode 100644
index 00000000..bf41dff7
--- /dev/null
+++ b/apps/client/src/ee/billing/utils.ts
@@ -0,0 +1,17 @@
+import { differenceInCalendarDays } from "date-fns";
+
+export function formatInterval(interval: string): string {
+ if (interval === "month") {
+ return "monthly";
+ }
+ if (interval === "year") {
+ return "yearly";
+ }
+}
+
+export function getTrialDaysLeft(trialEndAt: Date) {
+ if (!trialEndAt) return null;
+
+ const daysLeft = differenceInCalendarDays(trialEndAt, new Date());
+ return daysLeft > 0 ? daysLeft : 0;
+}
diff --git a/apps/client/src/ee/cloud/query/cloud-query.ts b/apps/client/src/ee/cloud/query/cloud-query.ts
new file mode 100644
index 00000000..367d89e3
--- /dev/null
+++ b/apps/client/src/ee/cloud/query/cloud-query.ts
@@ -0,0 +1,13 @@
+import { useQuery, UseQueryResult } from "@tanstack/react-query";
+import { IWorkspace } from "@/features/workspace/types/workspace.types.ts";
+import { getJoinedWorkspaces } from "@/ee/cloud/service/cloud-service.ts";
+
+export function useJoinedWorkspacesQuery(): UseQueryResult<
+ Partial,
+ Error
+> {
+ return useQuery({
+ queryKey: ["joined-workspaces"],
+ queryFn: () => getJoinedWorkspaces(),
+ });
+}
diff --git a/apps/client/src/ee/cloud/service/cloud-service.ts b/apps/client/src/ee/cloud/service/cloud-service.ts
new file mode 100644
index 00000000..e544733e
--- /dev/null
+++ b/apps/client/src/ee/cloud/service/cloud-service.ts
@@ -0,0 +1,7 @@
+import { IWorkspace } from "@/features/workspace/types/workspace.types.ts";
+import api from "@/lib/api-client.ts";
+
+export async function getJoinedWorkspaces(): Promise> {
+ const req = await api.post>("/workspace/joined");
+ return req.data;
+}
diff --git a/apps/client/src/ee/components/cloud-login-form.tsx b/apps/client/src/ee/components/cloud-login-form.tsx
new file mode 100644
index 00000000..cb1af8a7
--- /dev/null
+++ b/apps/client/src/ee/components/cloud-login-form.tsx
@@ -0,0 +1,96 @@
+import * as z from "zod";
+import { useForm, zodResolver } from "@mantine/form";
+import {
+ Container,
+ Title,
+ TextInput,
+ Button,
+ Box,
+ Text,
+ Anchor,
+ Divider,
+} from "@mantine/core";
+import classes from "../../features/auth/components/auth.module.css";
+import { getCheckHostname } from "@/features/workspace/services/workspace-service.ts";
+import { useState } from "react";
+import { getSubdomainHost } from "@/lib/config.ts";
+import { Link } from "react-router-dom";
+import APP_ROUTE from "@/lib/app-route.ts";
+import { useTranslation } from "react-i18next";
+import JoinedWorkspaces from "@/ee/components/joined-workspaces.tsx";
+import { useJoinedWorkspacesQuery } from "@/ee/cloud/query/cloud-query.ts";
+
+const formSchema = z.object({
+ hostname: z.string().min(1, { message: "subdomain is required" }),
+});
+
+export function CloudLoginForm() {
+ const { t } = useTranslation();
+ const [isLoading, setIsLoading] = useState(false);
+ const { data: joinedWorkspaces } = useJoinedWorkspacesQuery();
+
+ const form = useForm({
+ validate: zodResolver(formSchema),
+ initialValues: {
+ hostname: "",
+ },
+ });
+
+ async function onSubmit(data: { hostname: string }) {
+ setIsLoading(true);
+
+ try {
+ const checkHostname = await getCheckHostname(data.hostname);
+ window.location.href = checkHostname.hostname;
+ } catch (err) {
+ if (err?.status === 404) {
+ form.setFieldError("hostname", "We could not find this workspace");
+ } else {
+ form.setFieldError("hostname", "An error occurred");
+ }
+ }
+
+ setIsLoading(false);
+ }
+
+ return (
+
+
+
+
+ {t("Login")}
+
+
+
+
+ {joinedWorkspaces?.length > 0 && (
+
+ )}
+
+
+
+
+
+
+ {t("Don't have a workspace?")}{" "}
+
+ {t("Create new workspace")}
+
+
+
+ );
+}
diff --git a/apps/client/src/ee/components/joined-workspaces.module.css b/apps/client/src/ee/components/joined-workspaces.module.css
new file mode 100644
index 00000000..74871e66
--- /dev/null
+++ b/apps/client/src/ee/components/joined-workspaces.module.css
@@ -0,0 +1,13 @@
+.workspace {
+ display: block;
+ width: 100%;
+ padding: var(--mantine-spacing-xs);
+ margin-bottom: var(--mantine-spacing-xs);
+ color: light-dark(var(--mantine-color-black), var(--mantine-color-dark-0));
+ border: 1px solid light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-5));
+ border-radius: var(--mantine-spacing-xs);
+
+ @mixin hover {
+ background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-8));
+ }
+}
\ No newline at end of file
diff --git a/apps/client/src/ee/components/joined-workspaces.tsx b/apps/client/src/ee/components/joined-workspaces.tsx
new file mode 100644
index 00000000..7129aa00
--- /dev/null
+++ b/apps/client/src/ee/components/joined-workspaces.tsx
@@ -0,0 +1,49 @@
+import { Group, Text, UnstyledButton } from "@mantine/core";
+import { useJoinedWorkspacesQuery } from "../cloud/query/cloud-query";
+import { CustomAvatar } from "@/components/ui/custom-avatar.tsx";
+import classes from "./joined-workspaces.module.css";
+import { IconChevronRight } from "@tabler/icons-react";
+import { getHostnameUrl } from "@/ee/utils.ts";
+import { Link } from "react-router-dom";
+import { IWorkspace } from "@/features/workspace/types/workspace.types.ts";
+
+export default function JoinedWorkspaces() {
+ const { data, isLoading } = useJoinedWorkspacesQuery();
+ if (isLoading || !data || data?.length === 0) {
+ return null;
+ }
+
+ return (
+ <>
+ {data.map((workspace: Partial, index) => (
+
+
+
+
+
+
+ {workspace?.name}
+
+
+
+ {getHostnameUrl(workspace?.hostname)?.split("//")[1]}
+
+
+
+
+
+
+ ))}
+ >
+ );
+}
diff --git a/apps/client/src/ee/components/manage-hostname.tsx b/apps/client/src/ee/components/manage-hostname.tsx
new file mode 100644
index 00000000..c7a595ff
--- /dev/null
+++ b/apps/client/src/ee/components/manage-hostname.tsx
@@ -0,0 +1,119 @@
+import { Button, Group, Text, Modal, TextInput } from "@mantine/core";
+import * as z from "zod";
+import { useState } from "react";
+import { useDisclosure } from "@mantine/hooks";
+import * as React from "react";
+import { useForm, zodResolver } from "@mantine/form";
+import { notifications } from "@mantine/notifications";
+import { useTranslation } from "react-i18next";
+import { getSubdomainHost } from "@/lib/config.ts";
+import { IWorkspace } from "@/features/workspace/types/workspace.types.ts";
+import { updateWorkspace } from "@/features/workspace/services/workspace-service.ts";
+import { getHostnameUrl } from "@/ee/utils.ts";
+import { useAtom } from "jotai/index";
+import {
+ currentUserAtom,
+ workspaceAtom,
+} from "@/features/user/atoms/current-user-atom.ts";
+import useUserRole from "@/hooks/use-user-role.tsx";
+import { RESET } from "jotai/utils";
+
+export default function ManageHostname() {
+ const { t } = useTranslation();
+ const [opened, { open, close }] = useDisclosure(false);
+ const [workspace] = useAtom(workspaceAtom);
+ const { isAdmin } = useUserRole();
+
+ return (
+
+
+ {t("Hostname")}
+
+ {workspace?.hostname}.{getSubdomainHost()}
+
+
+
+ {isAdmin && (
+
+ )}
+
+
+
+
+
+ );
+}
+
+const formSchema = z.object({
+ hostname: z.string().min(4),
+});
+
+type FormValues = z.infer;
+
+interface ChangeHostnameFormProps {
+ onClose?: () => void;
+}
+function ChangeHostnameForm({ onClose }: ChangeHostnameFormProps) {
+ const { t } = useTranslation();
+ const [isLoading, setIsLoading] = useState(false);
+ const [currentUser, setCurrentUser] = useAtom(currentUserAtom);
+
+ const form = useForm({
+ validate: zodResolver(formSchema),
+ initialValues: {
+ hostname: currentUser?.workspace?.hostname,
+ },
+ });
+
+ async function handleSubmit(data: Partial) {
+ setIsLoading(true);
+
+ if (data.hostname === currentUser?.workspace?.hostname) {
+ onClose();
+ return;
+ }
+
+ try {
+ await updateWorkspace({
+ hostname: data.hostname,
+ });
+ setCurrentUser(RESET);
+ window.location.href = getHostnameUrl(data.hostname.toLowerCase());
+ } catch (err) {
+ notifications.show({
+ message: err?.response?.data?.message,
+ color: "red",
+ });
+ }
+ setIsLoading(false);
+ }
+
+ return (
+
+ );
+}
diff --git a/apps/client/src/ee/components/sso-cloud-signup.tsx b/apps/client/src/ee/components/sso-cloud-signup.tsx
new file mode 100644
index 00000000..c8657955
--- /dev/null
+++ b/apps/client/src/ee/components/sso-cloud-signup.tsx
@@ -0,0 +1,25 @@
+import { Button, Divider, Stack } from "@mantine/core";
+import { getGoogleSignupUrl } from "@/ee/security/sso.utils.ts";
+import { GoogleIcon } from "@/components/icons/google-icon.tsx";
+
+export default function SsoCloudSignup() {
+ const handleSsoLogin = () => {
+ window.location.href = getGoogleSignupUrl();
+ };
+
+ return (
+ <>
+
+ }
+ variant="default"
+ fullWidth
+ >
+ Signup with Google
+
+
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/components/sso-login.tsx b/apps/client/src/ee/components/sso-login.tsx
new file mode 100644
index 00000000..8de93c29
--- /dev/null
+++ b/apps/client/src/ee/components/sso-login.tsx
@@ -0,0 +1,57 @@
+import { useWorkspacePublicDataQuery } from "@/features/workspace/queries/workspace-query.ts";
+import { Button, Divider, Stack } from "@mantine/core";
+import { IconLock } from "@tabler/icons-react";
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+import { buildSsoLoginUrl } from "@/ee/security/sso.utils.ts";
+import { SSO_PROVIDER } from "@/ee/security/contants.ts";
+import { GoogleIcon } from "@/components/icons/google-icon.tsx";
+import { isCloud } from "@/lib/config.ts";
+
+export default function SsoLogin() {
+ const { data, isLoading } = useWorkspacePublicDataQuery();
+
+ if (!data?.authProviders || data?.authProviders?.length === 0) {
+ return null;
+ }
+
+ const handleSsoLogin = (provider: IAuthProvider) => {
+ window.location.href = buildSsoLoginUrl({
+ providerId: provider.id,
+ type: provider.type,
+ workspaceId: data.id,
+ });
+ };
+
+ return (
+ <>
+ {(isCloud() || data.hasLicenseKey) && (
+ <>
+
+ {data.authProviders.map((provider) => (
+
+
+
+ ))}
+
+
+ {!data.enforceSso && (
+
+ )}
+ >
+ )}
+ >
+ );
+}
diff --git a/apps/client/src/ee/hooks/use-license.tsx b/apps/client/src/ee/hooks/use-license.tsx
new file mode 100644
index 00000000..e3f72d82
--- /dev/null
+++ b/apps/client/src/ee/hooks/use-license.tsx
@@ -0,0 +1,9 @@
+import { useAtom } from "jotai";
+import { currentUserAtom } from "@/features/user/atoms/current-user-atom.ts";
+
+export const useLicense = () => {
+ const [currentUser] = useAtom(currentUserAtom);
+ return { hasLicenseKey: currentUser?.workspace?.hasLicenseKey };
+};
+
+export default useLicense;
diff --git a/apps/client/src/ee/hooks/use-plan.tsx b/apps/client/src/ee/hooks/use-plan.tsx
new file mode 100644
index 00000000..52790178
--- /dev/null
+++ b/apps/client/src/ee/hooks/use-plan.tsx
@@ -0,0 +1,15 @@
+import { useAtom } from "jotai";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
+import { BillingPlan } from "@/ee/billing/types/billing.types.ts";
+
+export const usePlan = () => {
+ const [workspace] = useAtom(workspaceAtom);
+
+ const isStandard =
+ typeof workspace?.plan === "string" &&
+ workspace?.plan.toLowerCase() === BillingPlan.STANDARD.toLowerCase();
+
+ return { isStandard };
+};
+
+export default usePlan;
diff --git a/apps/client/src/ee/hooks/use-redirect-to-cloud-select.tsx b/apps/client/src/ee/hooks/use-redirect-to-cloud-select.tsx
new file mode 100644
index 00000000..a7d78047
--- /dev/null
+++ b/apps/client/src/ee/hooks/use-redirect-to-cloud-select.tsx
@@ -0,0 +1,20 @@
+import { useEffect } from "react";
+import { useLocation, useNavigate } from "react-router-dom";
+import { getAppUrl, getServerAppUrl, isCloud } from "@/lib/config.ts";
+import APP_ROUTE from "@/lib/app-route.ts";
+
+export const useRedirectToCloudSelect = () => {
+ const navigate = useNavigate();
+ const pathname = useLocation().pathname;
+
+ useEffect(() => {
+ const pathsToRedirect = ["/login", "/home"];
+ if (isCloud() && pathsToRedirect.includes(pathname)) {
+ const frontendUrl = getAppUrl();
+ const serverUrl = getServerAppUrl();
+ if (frontendUrl === serverUrl) {
+ navigate(APP_ROUTE.AUTH.SELECT_WORKSPACE);
+ }
+ }
+ }, [navigate]);
+};
diff --git a/apps/client/src/ee/hooks/use-trial-end-action.tsx b/apps/client/src/ee/hooks/use-trial-end-action.tsx
new file mode 100644
index 00000000..5ca08dbf
--- /dev/null
+++ b/apps/client/src/ee/hooks/use-trial-end-action.tsx
@@ -0,0 +1,36 @@
+import { useEffect } from "react";
+import { useLocation, useNavigate } from "react-router-dom";
+import { isCloud } from "@/lib/config.ts";
+import APP_ROUTE from "@/lib/app-route.ts";
+import useUserRole from "@/hooks/use-user-role.tsx";
+import { notifications } from "@mantine/notifications";
+import useTrial from "@/ee/hooks/use-trial.tsx";
+
+export const useTrialEndAction = () => {
+ const navigate = useNavigate();
+ const pathname = useLocation().pathname;
+ const { isAdmin } = useUserRole();
+ const { trialDaysLeft } = useTrial();
+
+ useEffect(() => {
+ if (isCloud() && trialDaysLeft === 0) {
+ if (!pathname.startsWith("/settings")) {
+ notifications.show({
+ position: "top-right",
+ color: "red",
+ title: "Your 14-day trial has ended",
+ message:
+ "Please upgrade to a paid plan or contact your workspace admin.",
+ autoClose: false,
+ });
+
+ // only admins can access the billing page
+ if (isAdmin) {
+ navigate(APP_ROUTE.SETTINGS.WORKSPACE.BILLING);
+ } else {
+ navigate(APP_ROUTE.SETTINGS.ACCOUNT.PROFILE);
+ }
+ }
+ }
+ }, [navigate]);
+};
diff --git a/apps/client/src/ee/hooks/use-trial.tsx b/apps/client/src/ee/hooks/use-trial.tsx
new file mode 100644
index 00000000..2ae68af2
--- /dev/null
+++ b/apps/client/src/ee/hooks/use-trial.tsx
@@ -0,0 +1,16 @@
+import { useAtom } from "jotai";
+import { currentUserAtom } from "@/features/user/atoms/current-user-atom.ts";
+import { getTrialDaysLeft } from "@/ee/billing/utils.ts";
+import { ICurrentUser } from "@/features/user/types/user.types.ts";
+
+export const useTrial = () => {
+ const [currentUser] = useAtom(currentUserAtom);
+ const workspace = currentUser?.workspace;
+
+ const trialDaysLeft = getTrialDaysLeft(workspace?.trialEndAt);
+ const isTrial = !!workspace?.trialEndAt && trialDaysLeft !== null;
+
+ return { isTrial: isTrial, trialDaysLeft: trialDaysLeft };
+};
+
+export default useTrial;
diff --git a/apps/client/src/ee/licence/components/activate-license-modal.tsx b/apps/client/src/ee/licence/components/activate-license-modal.tsx
new file mode 100644
index 00000000..9d81f29e
--- /dev/null
+++ b/apps/client/src/ee/licence/components/activate-license-modal.tsx
@@ -0,0 +1,89 @@
+import * as z from "zod";
+import React from "react";
+import { Button, Group, Modal, Textarea } from "@mantine/core";
+import { useForm, zodResolver } from "@mantine/form";
+import { useTranslation } from "react-i18next";
+import { useActivateMutation } from "@/ee/licence/queries/license-query.ts";
+import { useDisclosure } from "@mantine/hooks";
+import { useAtom } from "jotai";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
+import RemoveLicense from "@/ee/licence/components/remove-license.tsx";
+
+export default function ActivateLicense() {
+ const { t } = useTranslation();
+ const [opened, { open, close }] = useDisclosure(false);
+ const [workspace] = useAtom(workspaceAtom);
+
+ return (
+
+
+
+ {workspace?.hasLicenseKey && }
+
+
+
+
+
+ );
+}
+
+const formSchema = z.object({
+ licenseKey: z.string().min(1),
+});
+
+type FormValues = z.infer;
+
+interface ActivateLicenseFormProps {
+ onClose?: () => void;
+}
+export function ActivateLicenseForm({ onClose }: ActivateLicenseFormProps) {
+ const { t } = useTranslation();
+ const activateLicenseMutation = useActivateMutation();
+
+ const form = useForm({
+ validate: zodResolver(formSchema),
+ initialValues: {
+ licenseKey: "",
+ },
+ });
+
+ async function handleSubmit(data: { licenseKey: string }) {
+ await activateLicenseMutation.mutateAsync(data.licenseKey);
+ form.reset();
+ onClose();
+ }
+
+ return (
+
+ );
+}
diff --git a/apps/client/src/ee/licence/components/installation-details.tsx b/apps/client/src/ee/licence/components/installation-details.tsx
new file mode 100644
index 00000000..a9d63024
--- /dev/null
+++ b/apps/client/src/ee/licence/components/installation-details.tsx
@@ -0,0 +1,71 @@
+import React from "react";
+import useUserRole from "@/hooks/use-user-role.tsx";
+import classes from "@/ee/billing/components/billing.module.css";
+import {
+ Group,
+ Paper,
+ SimpleGrid,
+ Text,
+ TextInput,
+} from "@mantine/core";
+import { useAtom } from "jotai";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
+import CopyTextButton from "@/components/common/copy.tsx";
+
+export default function InstallationDetails() {
+ const { isAdmin } = useUserRole();
+ const [workspace] = useAtom(workspaceAtom);
+
+ if (!isAdmin) {
+ return null;
+ }
+
+ return (
+ <>
+
+
+
+
+
+ Workspace ID
+
+ }
+ />
+
+
+
+
+
+
+
+
+ Member count
+
+
+ {workspace?.memberCount}
+
+
+
+
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/licence/components/license-details.tsx b/apps/client/src/ee/licence/components/license-details.tsx
new file mode 100644
index 00000000..323b72d3
--- /dev/null
+++ b/apps/client/src/ee/licence/components/license-details.tsx
@@ -0,0 +1,81 @@
+import { Badge, Table } from "@mantine/core";
+import { format } from "date-fns";
+import { useLicenseInfo } from "@/ee/licence/queries/license-query.ts";
+import { isLicenseExpired } from "@/ee/licence/license.utils.ts";
+import { useAtom } from "jotai";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
+
+export default function LicenseDetails() {
+ const { data: license, isError } = useLicenseInfo();
+ const [workspace] = useAtom(workspaceAtom);
+
+ if (!license) {
+ return null;
+ }
+ if (isError) {
+ return null;
+ }
+
+ return (
+
+
+
+ Contact sales@docmost.com for support and enquiries.
+
+
+
+ Edition
+
+ Enterprise {license.trial && Trial}
+
+
+
+
+ Licensed to
+ {license.customerName}
+
+
+
+ Seat count
+
+ {license.seatCount} ({workspace?.memberCount} used)
+
+
+
+
+ Issued at
+ {format(license.issuedAt, "dd MMMM, yyyy")}
+
+
+
+ Expires at
+ {format(license.expiresAt, "dd MMMM, yyyy")}
+
+
+ License ID
+ {license.id}
+
+
+ Status
+
+ {isLicenseExpired(license) ? (
+
+ Expired
+
+ ) : (
+
+ Valid
+
+ )}
+
+
+
+
+
+ );
+}
diff --git a/apps/client/src/ee/licence/components/license-message.tsx b/apps/client/src/ee/licence/components/license-message.tsx
new file mode 100644
index 00000000..e6bbedb0
--- /dev/null
+++ b/apps/client/src/ee/licence/components/license-message.tsx
@@ -0,0 +1,3 @@
+export default function LicenseMessage() {
+ return <>To unlock enterprise features, please contact sales@docmost.com to purchase a license.>;
+}
diff --git a/apps/client/src/ee/licence/components/oss-details.tsx b/apps/client/src/ee/licence/components/oss-details.tsx
new file mode 100644
index 00000000..4dbd84a7
--- /dev/null
+++ b/apps/client/src/ee/licence/components/oss-details.tsx
@@ -0,0 +1,39 @@
+import { Group, Table, ThemeIcon } from "@mantine/core";
+import { IconCheck } from "@tabler/icons-react";
+
+export default function OssDetails() {
+ return (
+
+
+
+ To unlock enterprise features like SSO, contact sales@docmost.com.
+
+
+
+ Edition
+
+
+ Open Source
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/apps/client/src/ee/licence/components/remove-license.tsx b/apps/client/src/ee/licence/components/remove-license.tsx
new file mode 100644
index 00000000..a17c9e3c
--- /dev/null
+++ b/apps/client/src/ee/licence/components/remove-license.tsx
@@ -0,0 +1,33 @@
+import { useTranslation } from "react-i18next";
+import { useRemoveLicenseMutation } from "@/ee/licence/queries/license-query.ts";
+import { Button, Group, Text } from "@mantine/core";
+import { modals } from "@mantine/modals";
+import React from "react";
+
+export default function RemoveLicense() {
+ const { t } = useTranslation();
+ const removeLicenseMutation = useRemoveLicenseMutation();
+
+ const openDeleteModal = () =>
+ modals.openConfirmModal({
+ title: t("Remove license key"),
+ centered: true,
+ children: (
+
+ {t(
+ "Are you sure you want to remove your license key? Your workspace will be downgraded to the non-enterprise version.",
+ )}
+
+ ),
+ labels: { confirm: t("Remove"), cancel: t("Don't") },
+ confirmProps: { color: "red" },
+ onConfirm: () => removeLicenseMutation.mutate(),
+ });
+
+ return (
+
+
+
+ );
+}
+
diff --git a/apps/client/src/ee/licence/license.utils.ts b/apps/client/src/ee/licence/license.utils.ts
new file mode 100644
index 00000000..022c6b1d
--- /dev/null
+++ b/apps/client/src/ee/licence/license.utils.ts
@@ -0,0 +1,26 @@
+import { ILicenseInfo } from "@/ee/licence/types/license.types.ts";
+import { differenceInDays, isAfter } from "date-fns";
+
+export const GRACE_PERIOD_DAYS = 10;
+
+export function isLicenseExpired(license: ILicenseInfo): boolean {
+ return isAfter(new Date(), license.expiresAt);
+}
+
+export function daysToExpire(license: ILicenseInfo): number {
+ const days = differenceInDays(license.expiresAt, new Date());
+ return days > 0 ? days : 0;
+}
+
+export function isTrial(license: ILicenseInfo): boolean {
+ return license.trial;
+}
+
+export function isValid(license: ILicenseInfo): boolean {
+ return !isLicenseExpired(license);
+}
+
+export function hasExpiredGracePeriod(license: ILicenseInfo): boolean {
+ if (!isLicenseExpired(license)) return false;
+ return differenceInDays(new Date(), license.expiresAt) > GRACE_PERIOD_DAYS;
+}
diff --git a/apps/client/src/ee/licence/pages/license.tsx b/apps/client/src/ee/licence/pages/license.tsx
new file mode 100644
index 00000000..f8d685c1
--- /dev/null
+++ b/apps/client/src/ee/licence/pages/license.tsx
@@ -0,0 +1,35 @@
+import { Helmet } from "react-helmet-async";
+import { getAppName } from "@/lib/config.ts";
+import SettingsTitle from "@/components/settings/settings-title.tsx";
+import React from "react";
+import useUserRole from "@/hooks/use-user-role.tsx";
+import LicenseDetails from "@/ee/licence/components/license-details.tsx";
+import ActivateLicenseForm from "@/ee/licence/components/activate-license-modal.tsx";
+import InstallationDetails from "@/ee/licence/components/installation-details.tsx";
+import OssDetails from "@/ee/licence/components/oss-details.tsx";
+import { useAtom } from "jotai/index";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
+
+export default function License() {
+ const [workspace] = useAtom(workspaceAtom);
+ const { isAdmin } = useUserRole();
+
+ if (!isAdmin) {
+ return null;
+ }
+
+ return (
+ <>
+
+ License - {getAppName()}
+
+
+
+
+
+
+
+ {workspace?.hasLicenseKey ? : }
+ >
+ );
+}
diff --git a/apps/client/src/ee/licence/queries/license-query.ts b/apps/client/src/ee/licence/queries/license-query.ts
new file mode 100644
index 00000000..90e74304
--- /dev/null
+++ b/apps/client/src/ee/licence/queries/license-query.ts
@@ -0,0 +1,52 @@
+import {
+ useMutation,
+ useQuery,
+ useQueryClient,
+ UseQueryResult,
+} from "@tanstack/react-query";
+import {
+ activateLicense,
+ removeLicense,
+ getLicenseInfo,
+} from "@/ee/licence/services/license-service.ts";
+import { ILicenseInfo } from "@/ee/licence/types/license.types.ts";
+import { notifications } from "@mantine/notifications";
+
+export function useLicenseInfo(): UseQueryResult {
+ return useQuery({
+ queryKey: ["license"],
+ queryFn: () => getLicenseInfo(),
+ staleTime: 5 * 60 * 1000,
+ });
+}
+
+export function useActivateMutation() {
+ const queryClient = useQueryClient();
+
+ return useMutation({
+ mutationFn: (licenseKey) => activateLicense(licenseKey),
+ onSuccess: () => {
+ notifications.show({ message: "License activated successfully" });
+ queryClient.refetchQueries({
+ queryKey: ["license"],
+ });
+ queryClient.refetchQueries({ queryKey: ["currentUser"] });
+ },
+ onError: (error) => {
+ const errorMessage = error["response"]?.data?.message;
+ notifications.show({ message: errorMessage, color: "red" });
+ },
+ });
+}
+
+export function useRemoveLicenseMutation() {
+ const queryClient = useQueryClient();
+
+ return useMutation({
+ mutationFn: () => removeLicense(),
+ onSuccess: () => {
+ queryClient.refetchQueries({ queryKey: ["license"] });
+ queryClient.refetchQueries({ queryKey: ["currentUser"] });
+ },
+ });
+}
diff --git a/apps/client/src/ee/licence/services/license-service.ts b/apps/client/src/ee/licence/services/license-service.ts
new file mode 100644
index 00000000..5472a38a
--- /dev/null
+++ b/apps/client/src/ee/licence/services/license-service.ts
@@ -0,0 +1,18 @@
+import api from "@/lib/api-client.ts";
+import { ILicenseInfo } from "@/ee/licence/types/license.types.ts";
+
+export async function getLicenseInfo(): Promise {
+ const req = await api.post("/license/info");
+ return req.data;
+}
+
+export async function activateLicense(
+ licenseKey: string,
+): Promise {
+ const req = await api.post("/license/activate", { licenseKey });
+ return req.data;
+}
+
+export async function removeLicense(): Promise {
+ await api.post("/license/remove");
+}
diff --git a/apps/client/src/ee/licence/types/license.types.ts b/apps/client/src/ee/licence/types/license.types.ts
new file mode 100644
index 00000000..e0493a64
--- /dev/null
+++ b/apps/client/src/ee/licence/types/license.types.ts
@@ -0,0 +1,8 @@
+export interface ILicenseInfo {
+ id: string;
+ customerName: string;
+ seatCount: number;
+ issuedAt: Date;
+ expiresAt: Date;
+ trial: boolean;
+}
\ No newline at end of file
diff --git a/apps/client/src/ee/pages/cloud-login.tsx b/apps/client/src/ee/pages/cloud-login.tsx
new file mode 100644
index 00000000..c0a40a0d
--- /dev/null
+++ b/apps/client/src/ee/pages/cloud-login.tsx
@@ -0,0 +1,20 @@
+import { Helmet } from "react-helmet-async";
+import { getAppName } from "@/lib/config.ts";
+import { CloudLoginForm } from "@/ee/components/cloud-login-form.tsx";
+import { useTranslation } from "react-i18next";
+
+export default function CloudLogin() {
+ const { t } = useTranslation();
+
+ return (
+ <>
+
+
+ {t("Login")} - {getAppName()}
+
+
+
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/pages/create-workspace.tsx b/apps/client/src/ee/pages/create-workspace.tsx
new file mode 100644
index 00000000..fb335d66
--- /dev/null
+++ b/apps/client/src/ee/pages/create-workspace.tsx
@@ -0,0 +1,15 @@
+import { SetupWorkspaceForm } from "@/features/auth/components/setup-workspace-form.tsx";
+import { Helmet } from "react-helmet-async";
+import React from "react";
+import { getAppName } from "@/lib/config.ts";
+
+export default function CreateWorkspace() {
+ return (
+ <>
+
+ Create Workspace - {getAppName()}
+
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/security/components/allowed-domains.tsx b/apps/client/src/ee/security/components/allowed-domains.tsx
new file mode 100644
index 00000000..c50825fe
--- /dev/null
+++ b/apps/client/src/ee/security/components/allowed-domains.tsx
@@ -0,0 +1,88 @@
+import { useAtom } from "jotai";
+import * as z from "zod";
+import { useForm, zodResolver } from "@mantine/form";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
+import React, { useState } from "react";
+import { Button, Text, TagsInput } from "@mantine/core";
+import { notifications } from "@mantine/notifications";
+import { useTranslation } from "react-i18next";
+import { updateWorkspace } from "@/features/workspace/services/workspace-service.ts";
+import { IWorkspace } from "@/features/workspace/types/workspace.types.ts";
+
+const formSchema = z.object({
+ emailDomains: z.array(z.string()),
+});
+
+type FormValues = z.infer;
+export default function AllowedDomains() {
+ const { t } = useTranslation();
+ const [isLoading, setIsLoading] = useState(false);
+ const [workspace, setWorkspace] = useAtom(workspaceAtom);
+ const [, setDomains] = useState([]);
+
+ const form = useForm({
+ validate: zodResolver(formSchema),
+ initialValues: {
+ emailDomains: workspace?.emailDomains || [],
+ },
+ });
+
+ async function handleSubmit(data: Partial) {
+ setIsLoading(true);
+ try {
+ const updatedWorkspace = await updateWorkspace({
+ emailDomains: data.emailDomains,
+ });
+ setWorkspace(updatedWorkspace);
+
+ notifications.show({
+ message: t("Updated successfully"),
+ });
+ } catch (err) {
+ console.log(err);
+ notifications.show({
+ message: err.response.data.message,
+ color: "red",
+ });
+ }
+
+ form.resetDirty();
+
+ setIsLoading(false);
+ }
+
+ return (
+ <>
+
+ Allowed email domains
+
+ Only users with email addresses from these domains can signup via SSO.
+
+
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/security/components/create-sso-provider.tsx b/apps/client/src/ee/security/components/create-sso-provider.tsx
new file mode 100644
index 00000000..8a6162e9
--- /dev/null
+++ b/apps/client/src/ee/security/components/create-sso-provider.tsx
@@ -0,0 +1,79 @@
+import React, { useState } from "react";
+import { useDisclosure } from "@mantine/hooks";
+import { Button, Menu, Group } from "@mantine/core";
+import { IconChevronDown, IconLock } from "@tabler/icons-react";
+import { useCreateSsoProviderMutation } from "@/ee/security/queries/security-query.ts";
+import { SSO_PROVIDER } from "@/ee/security/contants.ts";
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+import SsoProviderModal from "@/ee/security/components/sso-provider-modal.tsx";
+import { OpenIdIcon } from "@/components/icons/openid-icon.tsx";
+
+export default function CreateSsoProvider() {
+ const [opened, { open, close }] = useDisclosure(false);
+ const [provider, setProvider] = useState(null);
+
+ const createSsoProviderMutation = useCreateSsoProviderMutation();
+
+ const handleCreateSAML = async () => {
+ try {
+ const newProvider = await createSsoProviderMutation.mutateAsync({
+ type: SSO_PROVIDER.SAML,
+ name: "SAML",
+ });
+ setProvider(newProvider);
+ open();
+ } catch (error) {
+ console.error("Failed to create SAML provider", error);
+ }
+ };
+
+ const handleCreateOIDC = async () => {
+ try {
+ const newProvider = await createSsoProviderMutation.mutateAsync({
+ type: SSO_PROVIDER.OIDC,
+ name: "OIDC",
+ });
+ setProvider(newProvider);
+ open();
+ } catch (error) {
+ console.error("Failed to create OIDC provider", error);
+ }
+ };
+
+ return (
+ <>
+
+
+
+
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/security/components/enforce-sso.tsx b/apps/client/src/ee/security/components/enforce-sso.tsx
new file mode 100644
index 00000000..4cbbc7ac
--- /dev/null
+++ b/apps/client/src/ee/security/components/enforce-sso.tsx
@@ -0,0 +1,61 @@
+import { Group, Text, Switch, MantineSize } from "@mantine/core";
+import { useAtom } from "jotai";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
+import React, { useState } from "react";
+import { useTranslation } from "react-i18next";
+import { updateWorkspace } from "@/features/workspace/services/workspace-service.ts";
+import { notifications } from "@mantine/notifications";
+
+export default function EnforceSso() {
+ const { t } = useTranslation();
+
+ return (
+
+
+ {t("Enforce SSO")}
+
+ {t(
+ "Once enforced, members will not able able to login with email and password.",
+ )}
+
+
+
+
+
+ );
+}
+
+interface EnforceSsoToggleProps {
+ size?: MantineSize;
+ label?: string;
+}
+export function EnforceSsoToggle({ size, label }: EnforceSsoToggleProps) {
+ const { t } = useTranslation();
+ const [workspace, setWorkspace] = useAtom(workspaceAtom);
+ const [checked, setChecked] = useState(workspace?.enforceSso);
+
+ const handleChange = async (event: React.ChangeEvent) => {
+ const value = event.currentTarget.checked;
+ try {
+ const updatedWorkspace = await updateWorkspace({ enforceSso: value });
+ setChecked(value);
+ setWorkspace(updatedWorkspace);
+ } catch (err) {
+ notifications.show({
+ message: err?.response?.data?.message,
+ color: "red",
+ });
+ }
+ };
+
+ return (
+
+ );
+}
diff --git a/apps/client/src/ee/security/components/sso-google-form.tsx b/apps/client/src/ee/security/components/sso-google-form.tsx
new file mode 100644
index 00000000..97a39a3b
--- /dev/null
+++ b/apps/client/src/ee/security/components/sso-google-form.tsx
@@ -0,0 +1,91 @@
+import React from "react";
+import { z } from "zod";
+import { useForm, zodResolver } from "@mantine/form";
+import { Box, Button, Group, Stack, Switch, TextInput } from "@mantine/core";
+import classes from "@/ee/security/components/sso.module.css";
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+import { useTranslation } from "react-i18next";
+import { useUpdateSsoProviderMutation } from "@/ee/security/queries/security-query.ts";
+
+const ssoSchema = z.object({
+ name: z.string().min(1, "Provider name is required"),
+ isEnabled: z.boolean(),
+ allowSignup: z.boolean(),
+});
+
+type SSOFormValues = z.infer;
+
+interface SsoFormProps {
+ provider: IAuthProvider;
+ onClose?: () => void;
+}
+export function SsoGoogleForm({ provider, onClose }: SsoFormProps) {
+ const { t } = useTranslation();
+ const updateSsoProviderMutation = useUpdateSsoProviderMutation();
+
+ const form = useForm({
+ initialValues: {
+ name: provider.name || "",
+ isEnabled: provider.isEnabled,
+ allowSignup: provider.allowSignup,
+ },
+ validate: zodResolver(ssoSchema),
+ });
+
+ const handleSubmit = async (values: SSOFormValues) => {
+ const ssoData: Partial = {
+ providerId: provider.id,
+ };
+ if (form.isDirty("name")) {
+ ssoData.name = values.name;
+ }
+ if (form.isDirty("isEnabled")) {
+ ssoData.isEnabled = values.isEnabled;
+ }
+ if (form.isDirty("allowSignup")) {
+ ssoData.allowSignup = values.allowSignup;
+ }
+
+ await updateSsoProviderMutation.mutateAsync(ssoData);
+ form.resetDirty();
+ onClose();
+ };
+
+ return (
+
+
+
+ );
+}
diff --git a/apps/client/src/ee/security/components/sso-oidc-form.tsx b/apps/client/src/ee/security/components/sso-oidc-form.tsx
new file mode 100644
index 00000000..28b1ac47
--- /dev/null
+++ b/apps/client/src/ee/security/components/sso-oidc-form.tsx
@@ -0,0 +1,140 @@
+import React from "react";
+import { z } from "zod";
+import { useForm, zodResolver } from "@mantine/form";
+import { Box, Button, Group, Stack, Switch, TextInput } from "@mantine/core";
+import { buildCallbackUrl } from "@/ee/security/sso.utils.ts";
+import classes from "@/ee/security/components/sso.module.css";
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+import CopyTextButton from "@/components/common/copy.tsx";
+import { useTranslation } from "react-i18next";
+import { useUpdateSsoProviderMutation } from "@/ee/security/queries/security-query.ts";
+
+const ssoSchema = z.object({
+ name: z.string().min(1, "Display name is required"),
+ oidcIssuer: z.string().url(),
+ oidcClientId: z.string().min(1, "Client id is required"),
+ oidcClientSecret: z.string().min(1, "Client secret is required"),
+ isEnabled: z.boolean(),
+ allowSignup: z.boolean(),
+});
+
+type SSOFormValues = z.infer;
+
+interface SsoFormProps {
+ provider: IAuthProvider;
+ onClose?: () => void;
+}
+export function SsoOIDCForm({ provider, onClose }: SsoFormProps) {
+ const { t } = useTranslation();
+ const updateSsoProviderMutation = useUpdateSsoProviderMutation();
+
+ const form = useForm({
+ initialValues: {
+ name: provider.name || "",
+ oidcIssuer: provider.oidcIssuer || "",
+ oidcClientId: provider.oidcClientId || "",
+ oidcClientSecret: provider.oidcClientSecret || "",
+ isEnabled: provider.isEnabled,
+ allowSignup: provider.allowSignup,
+ },
+ validate: zodResolver(ssoSchema),
+ });
+
+ const callbackUrl = buildCallbackUrl({
+ providerId: provider.id,
+ type: provider.type,
+ });
+
+ const handleSubmit = async (values: SSOFormValues) => {
+ const ssoData: Partial = {
+ providerId: provider.id,
+ };
+ if (form.isDirty("name")) {
+ ssoData.name = values.name;
+ }
+ if (form.isDirty("oidcIssuer")) {
+ ssoData.oidcIssuer = values.oidcIssuer;
+ }
+ if (form.isDirty("oidcClientId")) {
+ ssoData.oidcClientId = values.oidcClientId;
+ }
+ if (form.isDirty("oidcClientSecret")) {
+ ssoData.oidcClientSecret = values.oidcClientSecret;
+ }
+ if (form.isDirty("isEnabled")) {
+ ssoData.isEnabled = values.isEnabled;
+ }
+ if (form.isDirty("allowSignup")) {
+ ssoData.allowSignup = values.allowSignup;
+ }
+
+ await updateSsoProviderMutation.mutateAsync(ssoData);
+ form.resetDirty();
+ onClose();
+ };
+
+ return (
+
+
+
+ );
+}
diff --git a/apps/client/src/ee/security/components/sso-provider-list.tsx b/apps/client/src/ee/security/components/sso-provider-list.tsx
new file mode 100644
index 00000000..bde78b5a
--- /dev/null
+++ b/apps/client/src/ee/security/components/sso-provider-list.tsx
@@ -0,0 +1,186 @@
+import React, { useState } from "react";
+import {
+ useDeleteSsoProviderMutation,
+ useGetSsoProviders,
+} from "@/ee/security/queries/security-query.ts";
+import {
+ ActionIcon,
+ Badge,
+ Card,
+ Group,
+ Menu,
+ Table,
+ Text,
+ ThemeIcon,
+} from "@mantine/core";
+import {
+ IconCheck,
+ IconDots,
+ IconLock,
+ IconPencil,
+ IconTrash,
+ IconX,
+} from "@tabler/icons-react";
+import { useDisclosure } from "@mantine/hooks";
+import { modals } from "@mantine/modals";
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+import { useTranslation } from "react-i18next";
+import SsoProviderModal from "@/ee/security/components/sso-provider-modal.tsx";
+import { SSO_PROVIDER } from "@/ee/security/contants.ts";
+import { GoogleIcon } from "@/components/icons/google-icon.tsx";
+import { CustomAvatar } from "@/components/ui/custom-avatar.tsx";
+import RoleSelectMenu from "@/components/ui/role-select-menu.tsx";
+import { getUserRoleLabel } from "@/features/workspace/types/user-role-data.ts";
+
+export default function SsoProviderList() {
+ const { t } = useTranslation();
+ const { data, isLoading } = useGetSsoProviders();
+ const [opened, { open, close }] = useDisclosure(false);
+ const deleteSsoProviderMutation = useDeleteSsoProviderMutation();
+ const [editProvider, setEditProvider] = useState(null);
+
+ if (isLoading || !data) {
+ return null;
+ }
+
+ if (data?.length === 0) {
+ return {t("No SSO providers found.")};
+ }
+
+ const handleEdit = (provider: IAuthProvider) => {
+ setEditProvider(provider);
+ open();
+ };
+
+ const openDeleteModal = (providerId: string) =>
+ modals.openConfirmModal({
+ title: t("Delete SSO provider"),
+ centered: true,
+ children: (
+
+ {t("Are you sure you want to delete this SSO provider?")}
+
+ ),
+ labels: { confirm: t("Delete"), cancel: t("Don't") },
+ confirmProps: { color: "red" },
+ onConfirm: () => deleteSsoProviderMutation.mutateAsync(providerId),
+ });
+
+ return (
+ <>
+
+
+
+
+
+ {t("Name")}
+ {t("Type")}
+ {t("Status")}
+ {t("Allow signup")}
+ {t("Action")}
+
+
+
+ {data
+ .sort((a, b) => {
+ const enabledDiff = Number(b.isEnabled) - Number(a.isEnabled);
+ if (enabledDiff !== 0) return enabledDiff;
+ return a.name.localeCompare(b.name);
+ })
+ .map((provider: IAuthProvider, index) => (
+
+
+
+ {provider.type === SSO_PROVIDER.GOOGLE ? (
+
+ ) : (
+
+ )}
+
+
+ {provider.name}
+
+
+
+
+
+
+ {provider.type.toUpperCase()}
+
+
+
+
+ {provider.isEnabled ? "Active" : "InActive"}
+
+
+
+ {provider.allowSignup ? (
+
+
+
+ ) : (
+
+
+
+ )}
+
+
+ handleEdit(provider)}
+ >
+
+
+
+
+
+ ))}
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/security/components/sso-provider-modal.tsx b/apps/client/src/ee/security/components/sso-provider-modal.tsx
new file mode 100644
index 00000000..2a04cb5c
--- /dev/null
+++ b/apps/client/src/ee/security/components/sso-provider-modal.tsx
@@ -0,0 +1,43 @@
+import React from "react";
+import { Modal } from "@mantine/core";
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+import { SsoSamlForm } from "@/ee/security/components/sso-saml-form.tsx";
+import { SSO_PROVIDER } from "@/ee/security/contants.ts";
+import { SsoOIDCForm } from "@/ee/security/components/sso-oidc-form.tsx";
+import { SsoGoogleForm } from "@/ee/security/components/sso-google-form.tsx";
+
+interface SsoModalProps {
+ opened: boolean;
+ onClose: () => void;
+ provider: IAuthProvider | null;
+}
+
+export default function SsoProviderModal({
+ opened,
+ onClose,
+ provider,
+}: SsoModalProps) {
+ if (!provider) {
+ return null;
+ }
+
+ return (
+
+ {provider.type === SSO_PROVIDER.SAML && (
+
+ )}
+
+ {provider.type === SSO_PROVIDER.OIDC && (
+
+ )}
+
+ {provider.type === SSO_PROVIDER.GOOGLE && (
+
+ )}
+
+ );
+}
diff --git a/apps/client/src/ee/security/components/sso-saml-form.tsx b/apps/client/src/ee/security/components/sso-saml-form.tsx
new file mode 100644
index 00000000..76ea3d51
--- /dev/null
+++ b/apps/client/src/ee/security/components/sso-saml-form.tsx
@@ -0,0 +1,153 @@
+import React from "react";
+import { z } from "zod";
+import { useForm, zodResolver } from "@mantine/form";
+import {
+ Box,
+ Button,
+ Group,
+ Stack,
+ Switch,
+ Textarea,
+ TextInput,
+} from "@mantine/core";
+import {
+ buildCallbackUrl,
+ buildSamlEntityId,
+} from "@/ee/security/sso.utils.ts";
+import classes from "@/ee/security/components/sso.module.css";
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+import CopyTextButton from "@/components/common/copy.tsx";
+import { useTranslation } from "react-i18next";
+import { useUpdateSsoProviderMutation } from "@/ee/security/queries/security-query.ts";
+
+const ssoSchema = z.object({
+ name: z.string().min(1, "Display name is required"),
+ samlUrl: z.string().url(),
+ samlCertificate: z.string().min(1, "SAML Idp Certificate is required"),
+ isEnabled: z.boolean(),
+ allowSignup: z.boolean(),
+});
+
+type SSOFormValues = z.infer;
+
+interface SsoFormProps {
+ provider: IAuthProvider;
+ onClose?: () => void;
+}
+export function SsoSamlForm({ provider, onClose }: SsoFormProps) {
+ const { t } = useTranslation();
+ const updateSsoProviderMutation = useUpdateSsoProviderMutation();
+
+ const form = useForm({
+ initialValues: {
+ name: provider.name || "",
+ samlUrl: provider.samlUrl || "",
+ samlCertificate: provider.samlCertificate || "",
+ isEnabled: provider.isEnabled,
+ allowSignup: provider.allowSignup,
+ },
+ validate: zodResolver(ssoSchema),
+ });
+
+ const callbackUrl = buildCallbackUrl({
+ providerId: provider.id,
+ type: provider.type,
+ });
+
+ const samlEntityId = buildSamlEntityId(provider.id);
+
+ const handleSubmit = async (values: SSOFormValues) => {
+ const ssoData: Partial = {
+ providerId: provider.id,
+ };
+ if (form.isDirty("name")) {
+ ssoData.name = values.name;
+ }
+ if (form.isDirty("samlUrl")) {
+ ssoData.samlUrl = values.samlUrl;
+ }
+ if (form.isDirty("samlCertificate")) {
+ ssoData.samlCertificate = values.samlCertificate;
+ }
+ if (form.isDirty("isEnabled")) {
+ ssoData.isEnabled = values.isEnabled;
+ }
+ if (form.isDirty("allowSignup")) {
+ ssoData.allowSignup = values.allowSignup;
+ }
+
+ await updateSsoProviderMutation.mutateAsync(ssoData);
+ form.resetDirty();
+ onClose();
+ };
+
+ return (
+
+
+
+ );
+}
diff --git a/apps/client/src/ee/security/components/sso.module.css b/apps/client/src/ee/security/components/sso.module.css
new file mode 100644
index 00000000..63731181
--- /dev/null
+++ b/apps/client/src/ee/security/components/sso.module.css
@@ -0,0 +1,14 @@
+.item {
+ & + & {
+ padding-top: var(--mantine-spacing-sm);
+ margin-top: var(--mantine-spacing-sm);
+ border-top: 1px solid
+ light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-4));
+ }
+}
+
+.switch {
+ & * {
+ cursor: pointer;
+ }
+}
diff --git a/apps/client/src/ee/security/contants.ts b/apps/client/src/ee/security/contants.ts
new file mode 100644
index 00000000..f423d4d3
--- /dev/null
+++ b/apps/client/src/ee/security/contants.ts
@@ -0,0 +1,5 @@
+export enum SSO_PROVIDER {
+ OIDC = 'oidc',
+ SAML = 'saml',
+ GOOGLE = 'google',
+}
\ No newline at end of file
diff --git a/apps/client/src/ee/security/pages/security.tsx b/apps/client/src/ee/security/pages/security.tsx
new file mode 100644
index 00000000..5399acfb
--- /dev/null
+++ b/apps/client/src/ee/security/pages/security.tsx
@@ -0,0 +1,53 @@
+import { Helmet } from "react-helmet-async";
+import { getAppName, isCloud } from "@/lib/config.ts";
+import SettingsTitle from "@/components/settings/settings-title.tsx";
+import { Divider, Title } from "@mantine/core";
+import React from "react";
+import useUserRole from "@/hooks/use-user-role.tsx";
+import SsoProviderList from "@/ee/security/components/sso-provider-list.tsx";
+import CreateSsoProvider from "@/ee/security/components/create-sso-provider.tsx";
+import EnforceSso from "@/ee/security/components/enforce-sso.tsx";
+import AllowedDomains from "@/ee/security/components/allowed-domains.tsx";
+import { useTranslation } from "react-i18next";
+import useLicense from "@/ee/hooks/use-license.tsx";
+
+export default function Security() {
+ const { t } = useTranslation();
+ const { isAdmin } = useUserRole();
+ const { hasLicenseKey } = useLicense();
+
+ if (!isAdmin) {
+ return null;
+ }
+
+ return (
+ <>
+
+ Security - {getAppName()}
+
+
+
+
+
+
+
+
+ Single sign-on (SSO)
+
+
+
+
+
+
+ {!isCloud() && hasLicenseKey ? : ""}
+
+ {/*TODO: revisit when we add a second plan
+
+ */}
+
+
+
+
+ >
+ );
+}
diff --git a/apps/client/src/ee/security/queries/security-query.ts b/apps/client/src/ee/security/queries/security-query.ts
new file mode 100644
index 00000000..a8d88299
--- /dev/null
+++ b/apps/client/src/ee/security/queries/security-query.ts
@@ -0,0 +1,88 @@
+import {
+ useMutation,
+ useQuery,
+ useQueryClient,
+ UseQueryResult,
+} from "@tanstack/react-query";
+import {
+ createSsoProvider,
+ deleteSsoProvider,
+ getSsoProviderById,
+ getSsoProviders,
+ updateSsoProvider,
+} from "@/ee/security/services/security-service.ts";
+import { notifications } from "@mantine/notifications";
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+
+export function useGetSsoProviders(): UseQueryResult {
+ return useQuery({
+ queryKey: ["sso-providers"],
+ queryFn: () => getSsoProviders(),
+ staleTime: 5 * 60 * 1000,
+ });
+}
+
+export function useSsoProvider(
+ providerId: string,
+): UseQueryResult {
+ return useQuery({
+ queryKey: ["sso-provider", providerId],
+ queryFn: () => getSsoProviderById({ providerId }),
+ enabled: !!providerId,
+ staleTime: 5 * 60 * 1000,
+ });
+}
+
+export function useCreateSsoProviderMutation() {
+ const queryClient = useQueryClient();
+
+ return useMutation>({
+ mutationFn: (data: Partial) => createSsoProvider(data),
+ onSuccess: () => {
+ queryClient.invalidateQueries({
+ queryKey: ["sso-providers"],
+ });
+ },
+ onError: (error) => {
+ const errorMessage = error["response"]?.data?.message;
+ notifications.show({ message: errorMessage, color: "red" });
+ },
+ });
+}
+
+export function useUpdateSsoProviderMutation() {
+ const queryClient = useQueryClient();
+
+ return useMutation>({
+ mutationFn: (data: Partial) => updateSsoProvider(data),
+ onSuccess: (data, variables) => {
+ notifications.show({ message: "Updated successfully" });
+ queryClient.invalidateQueries({
+ queryKey: ["sso-providers"],
+ });
+ },
+ onError: (error) => {
+ const errorMessage = error["response"]?.data?.message;
+ notifications.show({ message: errorMessage, color: "red" });
+ },
+ });
+}
+
+export function useDeleteSsoProviderMutation() {
+ const queryClient = useQueryClient();
+
+ return useMutation({
+ mutationFn: (providerId: string) => deleteSsoProvider({ providerId }),
+ onSuccess: (data, variables) => {
+ notifications.show({ message: "Deleted successfully" });
+
+ queryClient.invalidateQueries({
+ queryKey: ["sso-providers"],
+ });
+ },
+ onError: (error) => {
+ const errorMessage = error["response"]?.data?.message;
+ notifications.show({ message: errorMessage, color: "red" });
+ },
+ });
+}
diff --git a/apps/client/src/ee/security/services/security-service.ts b/apps/client/src/ee/security/services/security-service.ts
new file mode 100644
index 00000000..21e59892
--- /dev/null
+++ b/apps/client/src/ee/security/services/security-service.ts
@@ -0,0 +1,32 @@
+import api from "@/lib/api-client.ts";
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+
+export async function getSsoProviderById(data: {
+ providerId: string;
+}): Promise {
+ const req = await api.post("/sso/info");
+ return req.data;
+}
+
+export async function getSsoProviders(): Promise {
+ const req = await api.post("/sso/providers");
+ return req.data;
+}
+
+export async function createSsoProvider(data: any): Promise {
+ const req = await api.post("/sso/create", data);
+ return req.data;
+}
+
+export async function deleteSsoProvider(data: {
+ providerId: string;
+}): Promise {
+ await api.post("/sso/delete", data);
+}
+
+export async function updateSsoProvider(
+ data: Partial,
+): Promise {
+ const req = await api.post("/sso/update", data);
+ return req.data;
+}
diff --git a/apps/client/src/ee/security/sso.utils.ts b/apps/client/src/ee/security/sso.utils.ts
new file mode 100644
index 00000000..4a4665c1
--- /dev/null
+++ b/apps/client/src/ee/security/sso.utils.ts
@@ -0,0 +1,39 @@
+import { SSO_PROVIDER } from "@/ee/security/contants.ts";
+import { getAppUrl, getServerAppUrl } from "@/lib/config.ts";
+
+export function buildCallbackUrl(opts: {
+ providerId: string;
+ type: SSO_PROVIDER;
+}): string {
+ const { providerId, type } = opts;
+ const domain = getAppUrl();
+
+ if (type === SSO_PROVIDER.GOOGLE) {
+ return `${domain}/api/sso/${type}/callback`;
+ }
+ return `${domain}/api/sso/${type}/${providerId}/callback`;
+}
+
+export function buildSsoLoginUrl(opts: {
+ providerId: string;
+ type: SSO_PROVIDER;
+ workspaceId?: string;
+}): string {
+ const { providerId, type, workspaceId } = opts;
+ const domain = getAppUrl();
+
+ if (type === SSO_PROVIDER.GOOGLE) {
+ return `${getServerAppUrl()}/api/sso/${type}/login?workspaceId=${workspaceId}`;
+ }
+ return `${domain}/api/sso/${type}/${providerId}/login`;
+}
+
+export function getGoogleSignupUrl(): string {
+ // Google login is instance-wide. Use the env APP_URL instead
+ return `${getServerAppUrl()}/api/sso/${SSO_PROVIDER.GOOGLE}/signup`;
+}
+
+export function buildSamlEntityId(providerId: string): string {
+ const domain = getAppUrl();
+ return `${domain}/api/sso/${SSO_PROVIDER.SAML}/${providerId}/login`;
+}
diff --git a/apps/client/src/ee/security/types/security.types.ts b/apps/client/src/ee/security/types/security.types.ts
new file mode 100644
index 00000000..c0f6d05d
--- /dev/null
+++ b/apps/client/src/ee/security/types/security.types.ts
@@ -0,0 +1,20 @@
+import { SSO_PROVIDER } from "@/ee/security/contants.ts";
+
+export interface IAuthProvider {
+ id: string;
+ name: string;
+ type: SSO_PROVIDER;
+ samlUrl: string;
+ samlCertificate: string;
+ oidcIssuer: string;
+ oidcClientId: string;
+ oidcClientSecret: string;
+ allowSignup: boolean;
+ isEnabled: boolean;
+ creatorId: string;
+ workspaceId: string;
+ createdAt: Date;
+ updatedAt: Date;
+ deletedAt: Date;
+ providerId: string;
+}
diff --git a/apps/client/src/ee/utils.ts b/apps/client/src/ee/utils.ts
new file mode 100644
index 00000000..cac112d9
--- /dev/null
+++ b/apps/client/src/ee/utils.ts
@@ -0,0 +1,16 @@
+import { getServerAppUrl, getSubdomainHost } from "@/lib/config.ts";
+
+export function getHostnameUrl(hostname: string): string {
+ const url = new URL(getServerAppUrl());
+ const isHttps = url.protocol === "https:";
+
+ const protocol = isHttps ? "https" : "http";
+ return `${protocol}://${hostname}.${getSubdomainHost()}`;
+}
+
+export function exchangeTokenRedirectUrl(
+ hostname: string,
+ exchangeToken: string,
+) {
+ return getHostnameUrl(hostname) + "/api/auth/exchange?token=" + exchangeToken;
+}
diff --git a/apps/client/src/features/auth/components/auth.module.css b/apps/client/src/features/auth/components/auth.module.css
index 958dccf2..1e7d09d6 100644
--- a/apps/client/src/features/auth/components/auth.module.css
+++ b/apps/client/src/features/auth/components/auth.module.css
@@ -2,4 +2,17 @@
box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 45px 4px;
border-radius: 4px;
background: light-dark(var(--mantine-color-body), rgba(0, 0, 0, 0.1));
+ margin-top: 150px;
+ margin-bottom: 20px;
+
+ @media (max-width: $mantine-breakpoint-sm) {
+ margin-top: 50px;
+ margin-bottom: 20px;
+ }
}
+
+.containerBox {
+ margin-top: 40px;
+}
+
+
diff --git a/apps/client/src/features/auth/components/forgot-password-form.tsx b/apps/client/src/features/auth/components/forgot-password-form.tsx
index f42f2e0b..2860242e 100644
--- a/apps/client/src/features/auth/components/forgot-password-form.tsx
+++ b/apps/client/src/features/auth/components/forgot-password-form.tsx
@@ -35,8 +35,8 @@ export function ForgotPasswordForm() {
}
return (
-
-
+
+
{t("Forgot password")}
diff --git a/apps/client/src/features/auth/components/invite-sign-up-form.tsx b/apps/client/src/features/auth/components/invite-sign-up-form.tsx
index a135c60c..7e4d241d 100644
--- a/apps/client/src/features/auth/components/invite-sign-up-form.tsx
+++ b/apps/client/src/features/auth/components/invite-sign-up-form.tsx
@@ -65,8 +65,8 @@ export function InviteSignUpForm() {
}
return (
-
-
+
+
{t("Join the workspace")}
diff --git a/apps/client/src/features/auth/components/login-form.tsx b/apps/client/src/features/auth/components/login-form.tsx
index 794bf46e..e182bb32 100644
--- a/apps/client/src/features/auth/components/login-form.tsx
+++ b/apps/client/src/features/auth/components/login-form.tsx
@@ -10,12 +10,17 @@ import {
PasswordInput,
Box,
Anchor,
+ Group,
} from "@mantine/core";
import classes from "./auth.module.css";
import { useRedirectIfAuthenticated } from "@/features/auth/hooks/use-redirect-if-authenticated.ts";
-import { Link, useNavigate } from "react-router-dom";
+import { Link } from "react-router-dom";
import APP_ROUTE from "@/lib/app-route.ts";
import { useTranslation } from "react-i18next";
+import SsoLogin from "@/ee/components/sso-login.tsx";
+import { useWorkspacePublicDataQuery } from "@/features/workspace/queries/workspace-query.ts";
+import { Error404 } from "@/components/ui/error-404.tsx";
+import React from "react";
const formSchema = z.object({
email: z
@@ -29,6 +34,12 @@ export function LoginForm() {
const { t } = useTranslation();
const { signIn, isLoading } = useAuth();
useRedirectIfAuthenticated();
+ const {
+ data,
+ isLoading: isDataLoading,
+ isError,
+ error,
+ } = useWorkspacePublicDataQuery();
const form = useForm({
validate: zodResolver(formSchema),
@@ -42,44 +53,60 @@ export function LoginForm() {
await signIn(data);
}
+ if (isDataLoading) {
+ return null;
+ }
+
+ if (isError && error?.["response"]?.status === 404) {
+ return ;
+ }
+
return (
-
-
+
+
{t("Login")}
-
+
-
- {t("Forgot your password?")}
-
+
+
+ {t("Forgot your password?")}
+
+
+
+
+
+ >
+ )}
);
diff --git a/apps/client/src/features/auth/components/password-reset-form.tsx b/apps/client/src/features/auth/components/password-reset-form.tsx
index 392fdcb7..351dcb61 100644
--- a/apps/client/src/features/auth/components/password-reset-form.tsx
+++ b/apps/client/src/features/auth/components/password-reset-form.tsx
@@ -37,8 +37,8 @@ export function PasswordResetForm({ resetToken }: PasswordResetFormProps) {
}
return (
-
-
+
+
{t("Password reset")}
diff --git a/apps/client/src/features/auth/components/setup-workspace-form.tsx b/apps/client/src/features/auth/components/setup-workspace-form.tsx
index 7bff2518..fe70782d 100644
--- a/apps/client/src/features/auth/components/setup-workspace-form.tsx
+++ b/apps/client/src/features/auth/components/setup-workspace-form.tsx
@@ -1,6 +1,5 @@
import * as React from "react";
import * as z from "zod";
-
import { useForm, zodResolver } from "@mantine/form";
import {
Container,
@@ -9,11 +8,17 @@ import {
Button,
PasswordInput,
Box,
+ Anchor,
+ Text,
} from "@mantine/core";
import { ISetupWorkspace } from "@/features/auth/types/auth.types";
import useAuth from "@/features/auth/hooks/use-auth";
import classes from "@/features/auth/components/auth.module.css";
import { useTranslation } from "react-i18next";
+import SsoCloudSignup from "@/ee/components/sso-cloud-signup.tsx";
+import { isCloud } from "@/lib/config.ts";
+import { Link } from "react-router-dom";
+import APP_ROUTE from "@/lib/app-route.ts";
const formSchema = z.object({
workspaceName: z.string().trim().min(3).max(50),
@@ -45,55 +50,71 @@ export function SetupWorkspaceForm() {
}
return (
-
-
-
- {t("Create workspace")}
-
+
+
+
+
+ {t("Create workspace")}
+
-
-
-
+
+
+
+
+
+
+
+ {isCloud() && (
+
+ {t("Already part of an existing workspace?")}{" "}
+
+ {t("Sign-in")}
+
+
+ )}
+
);
}
diff --git a/apps/client/src/features/auth/hooks/use-auth.ts b/apps/client/src/features/auth/hooks/use-auth.ts
index 40b7d2a6..2867f238 100644
--- a/apps/client/src/features/auth/hooks/use-auth.ts
+++ b/apps/client/src/features/auth/hooks/use-auth.ts
@@ -19,10 +19,15 @@ import {
} from "@/features/auth/types/auth.types";
import { notifications } from "@mantine/notifications";
import { IAcceptInvite } from "@/features/workspace/types/workspace.types.ts";
-import { acceptInvitation } from "@/features/workspace/services/workspace-service.ts";
+import {
+ acceptInvitation,
+ createWorkspace,
+} from "@/features/workspace/services/workspace-service.ts";
import APP_ROUTE from "@/lib/app-route.ts";
import { RESET } from "jotai/utils";
import { useTranslation } from "react-i18next";
+import { isCloud } from "@/lib/config.ts";
+import { exchangeTokenRedirectUrl, getHostnameUrl } from "@/ee/utils.ts";
export default function useAuth() {
const { t } = useTranslation();
@@ -67,9 +72,21 @@ export default function useAuth() {
setIsLoading(true);
try {
- const res = await setupWorkspace(data);
- setIsLoading(false);
- navigate(APP_ROUTE.HOME);
+ if (isCloud()) {
+ const res = await createWorkspace(data);
+ const hostname = res?.workspace?.hostname;
+ const exchangeToken = res?.exchangeToken;
+ if (hostname && exchangeToken) {
+ window.location.href = exchangeTokenRedirectUrl(
+ hostname,
+ exchangeToken,
+ );
+ }
+ } else {
+ const res = await setupWorkspace(data);
+ setIsLoading(false);
+ navigate(APP_ROUTE.HOME);
+ }
} catch (err) {
setIsLoading(false);
notifications.show({
diff --git a/apps/client/src/features/auth/queries/auth-query.tsx b/apps/client/src/features/auth/queries/auth-query.tsx
index a4b76838..d4a66be7 100644
--- a/apps/client/src/features/auth/queries/auth-query.tsx
+++ b/apps/client/src/features/auth/queries/auth-query.tsx
@@ -1,6 +1,7 @@
import { useQuery, UseQueryResult } from "@tanstack/react-query";
import { getCollabToken, verifyUserToken } from "../services/auth-service";
import { ICollabToken, IVerifyUserToken } from "../types/auth.types";
+import { isAxiosError } from "axios";
export function useVerifyUserTokenQuery(
verify: IVerifyUserToken,
@@ -19,7 +20,13 @@ export function useCollabToken(): UseQueryResult {
queryFn: () => getCollabToken(),
staleTime: 24 * 60 * 60 * 1000, //24hrs
refetchInterval: 20 * 60 * 60 * 1000, //20hrs
- retry: 10,
+ //@ts-ignore
+ retry: (failureCount, error) => {
+ if (isAxiosError(error) && error.response.status === 404) {
+ return false;
+ }
+ return 10;
+ },
retryDelay: (retryAttempt) => {
// Exponential backoff: 5s, 10s, 20s, etc.
return 5000 * Math.pow(2, retryAttempt - 1);
diff --git a/apps/client/src/features/auth/services/auth-service.ts b/apps/client/src/features/auth/services/auth-service.ts
index 07ece5b7..2008ecfc 100644
--- a/apps/client/src/features/auth/services/auth-service.ts
+++ b/apps/client/src/features/auth/services/auth-service.ts
@@ -8,6 +8,7 @@ import {
ISetupWorkspace,
IVerifyUserToken,
} from "@/features/auth/types/auth.types";
+import { IWorkspace } from "@/features/workspace/types/workspace.types.ts";
export async function login(data: ILogin): Promise {
await api.post("/auth/login", data);
@@ -26,8 +27,8 @@ export async function changePassword(
export async function setupWorkspace(
data: ISetupWorkspace,
-): Promise {
- const req = await api.post("/auth/setup", data);
+): Promise {
+ const req = await api.post("/auth/setup", data);
return req.data;
}
diff --git a/apps/client/src/features/editor/components/drawio/drawio-view.tsx b/apps/client/src/features/editor/components/drawio/drawio-view.tsx
index 6f7d68cc..16e6dc97 100644
--- a/apps/client/src/features/editor/components/drawio/drawio-view.tsx
+++ b/apps/client/src/features/editor/components/drawio/drawio-view.tsx
@@ -77,7 +77,7 @@ export default function DrawioView(props: NodeViewProps) {
}
updateAttributes({
- src: `/files/${attachment.id}/${attachment.fileName}?t=${new Date(attachment.updatedAt).getTime()}`,
+ src: `/api/files/${attachment.id}/${attachment.fileName}?t=${new Date(attachment.updatedAt).getTime()}`,
title: attachment.fileName,
size: attachment.fileSize,
attachmentId: attachment.id,
diff --git a/apps/client/src/features/editor/components/excalidraw/excalidraw-view.tsx b/apps/client/src/features/editor/components/excalidraw/excalidraw-view.tsx
index e145918e..bbca39ba 100644
--- a/apps/client/src/features/editor/components/excalidraw/excalidraw-view.tsx
+++ b/apps/client/src/features/editor/components/excalidraw/excalidraw-view.tsx
@@ -101,7 +101,7 @@ export default function ExcalidrawView(props: NodeViewProps) {
}
updateAttributes({
- src: `/files/${attachment.id}/${attachment.fileName}?t=${new Date(attachment.updatedAt).getTime()}`,
+ src: `/api/files/${attachment.id}/${attachment.fileName}?t=${new Date(attachment.updatedAt).getTime()}`,
title: attachment.fileName,
size: attachment.fileSize,
attachmentId: attachment.id,
diff --git a/apps/client/src/features/editor/page-editor.tsx b/apps/client/src/features/editor/page-editor.tsx
index 75a14eb0..bcad7f1f 100644
--- a/apps/client/src/features/editor/page-editor.tsx
+++ b/apps/client/src/features/editor/page-editor.tsx
@@ -41,6 +41,7 @@ import LinkMenu from "@/features/editor/components/link/link-menu.tsx";
import ExcalidrawMenu from "./components/excalidraw/excalidraw-menu";
import DrawioMenu from "./components/drawio/drawio-menu";
import { useCollabToken } from "@/features/auth/queries/auth-query.tsx";
+import { isCloud } from "@/lib/config.ts";
interface PageEditorProps {
pageId: string;
@@ -181,6 +182,7 @@ export default function PageEditor({
}, [pageId]);
useEffect(() => {
+ if (isCloud()) return;
if (editable) {
if (yjsConnectionStatus === WebSocketStatus.Connected) {
editor.setEditable(true);
diff --git a/apps/client/src/features/group/components/group-list.tsx b/apps/client/src/features/group/components/group-list.tsx
index 1d7ad768..ad07c6c9 100644
--- a/apps/client/src/features/group/components/group-list.tsx
+++ b/apps/client/src/features/group/components/group-list.tsx
@@ -7,12 +7,22 @@ import { useTranslation } from "react-i18next";
import { formatMemberCount } from "@/lib";
import { IGroup } from "@/features/group/types/group.types.ts";
import Paginate from "@/components/common/paginate.tsx";
+import { queryClient } from "@/main.tsx";
+import { getSpaces } from "@/features/space/services/space-service.ts";
+import { getGroupMembers } from "@/features/group/services/group-service.ts";
export default function GroupList() {
const { t } = useTranslation();
const [page, setPage] = useState(1);
const { data, isLoading } = useGetGroupsQuery({ page });
+ const prefetchGroupMembers = (groupId: string) => {
+ queryClient.prefetchQuery({
+ queryKey: ["groupMembers", groupId, { page: 1 }],
+ queryFn: () => getGroupMembers(groupId, { page: 1 }),
+ });
+ };
+
return (
<>
@@ -27,7 +37,7 @@ export default function GroupList() {
{data?.items.map((group: IGroup, index: number) => (
-
+ prefetchGroupMembers(group.id)}>
, Error> {
- return useQuery({
+ const query = useQuery({
queryKey: ["groups", params],
queryFn: () => getGroups(params),
placeholderData: keepPreviousData,
});
+
+ useEffect(() => {
+ if (query.data) {
+ if (query.data.items?.length > 0) {
+ query.data.items.forEach((group: IGroup) => {
+ queryClient.setQueryData(["group", group.id], group);
+ });
+ }
+ }
+ }, [query.data]);
+
+ return query;
}
export function useGroupQuery(groupId: string): UseQueryResult {
diff --git a/apps/client/src/features/space/components/space-grid.tsx b/apps/client/src/features/space/components/space-grid.tsx
index 51fa5c6c..b1f93510 100644
--- a/apps/client/src/features/space/components/space-grid.tsx
+++ b/apps/client/src/features/space/components/space-grid.tsx
@@ -1,6 +1,9 @@
import { Text, Avatar, SimpleGrid, Card, rem } from "@mantine/core";
import React from "react";
-import { useGetSpacesQuery } from "@/features/space/queries/space-query.ts";
+import {
+ prefetchSpace,
+ useGetSpacesQuery,
+} from "@/features/space/queries/space-query.ts";
import { getSpaceUrl } from "@/lib/config.ts";
import { Link } from "react-router-dom";
import classes from "./space-grid.module.css";
@@ -18,6 +21,7 @@ export default function SpaceGrid() {
radius="md"
component={Link}
to={getSpaceUrl(space.slug)}
+ onMouseEnter={() => prefetchSpace(space.slug, space.id)}
className={classes.card}
withBorder
>
diff --git a/apps/client/src/features/space/queries/space-query.ts b/apps/client/src/features/space/queries/space-query.ts
index 4a4dc8b8..28f61295 100644
--- a/apps/client/src/features/space/queries/space-query.ts
+++ b/apps/client/src/features/space/queries/space-query.ts
@@ -26,6 +26,10 @@ import {
import { notifications } from "@mantine/notifications";
import { IPagination, QueryParams } from "@/lib/types.ts";
import { useTranslation } from "react-i18next";
+import { queryClient } from "@/main.tsx";
+import { getRecentChanges } from "@/features/page/services/page-service.ts";
+import { useEffect } from "react";
+import { validate as isValidUuid } from "uuid";
export function useGetSpacesQuery(
params?: QueryParams,
@@ -38,14 +42,39 @@ export function useGetSpacesQuery(
}
export function useSpaceQuery(spaceId: string): UseQueryResult {
- return useQuery({
+ const query = useQuery({
queryKey: ["space", spaceId],
queryFn: () => getSpaceById(spaceId),
enabled: !!spaceId,
- staleTime: 5 * 60 * 1000,
});
+ useEffect(() => {
+ if (query.data) {
+ if (isValidUuid(spaceId)) {
+ queryClient.setQueryData(["space", query.data.slug], query.data);
+ } else {
+ queryClient.setQueryData(["space", query.data.id], query.data);
+ }
+ }
+ }, [query.data]);
+
+ return query;
}
+export const prefetchSpace = (spaceSlug: string, spaceId?: string) => {
+ queryClient.prefetchQuery({
+ queryKey: ["space", spaceSlug],
+ queryFn: () => getSpaceById(spaceSlug),
+ });
+
+ if (spaceId) {
+ // this endpoint only accepts uuid for now
+ queryClient.prefetchQuery({
+ queryKey: ["recent-changes", spaceId],
+ queryFn: () => getRecentChanges(spaceId),
+ });
+ }
+};
+
export function useCreateSpaceMutation() {
const queryClient = useQueryClient();
const { t } = useTranslation();
diff --git a/apps/client/src/features/user/user-provider.tsx b/apps/client/src/features/user/user-provider.tsx
index 1c6e2310..281074ac 100644
--- a/apps/client/src/features/user/user-provider.tsx
+++ b/apps/client/src/features/user/user-provider.tsx
@@ -9,16 +9,21 @@ import { SOCKET_URL } from "@/features/websocket/types";
import { useQuerySubscription } from "@/features/websocket/use-query-subscription.ts";
import { useTreeSocket } from "@/features/websocket/use-tree-socket.ts";
import { useCollabToken } from "@/features/auth/queries/auth-query.tsx";
+import { Error404 } from "@/components/ui/error-404.tsx";
export function UserProvider({ children }: React.PropsWithChildren) {
const [, setCurrentUser] = useAtom(currentUserAtom);
- const { data, isLoading, error } = useCurrentUser();
+ const { data, isLoading, error, isError } = useCurrentUser();
const { i18n } = useTranslation();
const [, setSocket] = useAtom(socketAtom);
// fetch collab token on load
const { data: collab } = useCollabToken();
useEffect(() => {
+ if (isLoading || isError) {
+ return;
+ }
+
const newSocket = io(SOCKET_URL, {
transports: ["websocket"],
withCredentials: true,
@@ -35,7 +40,7 @@ export function UserProvider({ children }: React.PropsWithChildren) {
console.log("ws disconnected");
newSocket.disconnect();
};
- }, []);
+ }, [isError, isLoading]);
useQuerySubscription();
useTreeSocket();
@@ -51,10 +56,12 @@ export function UserProvider({ children }: React.PropsWithChildren) {
if (isLoading) return <>>;
- if (!data?.user && !data?.workspace) return <>>;
+ if (isError && error?.["response"]?.status === 404) {
+ return ;
+ }
if (error) {
- return <>an error occurred>;
+ return <>>;
}
return <>{children}>;
diff --git a/apps/client/src/features/websocket/types/constants.ts b/apps/client/src/features/websocket/types/constants.ts
index 79d64f6d..6d11a3d2 100644
--- a/apps/client/src/features/websocket/types/constants.ts
+++ b/apps/client/src/features/websocket/types/constants.ts
@@ -1,4 +1 @@
-export const SOCKET_URL = import.meta.env.DEV
- ? process.env.APP_URL
- : undefined;
-
\ No newline at end of file
+export const SOCKET_URL = undefined
\ No newline at end of file
diff --git a/apps/client/src/features/workspace/components/members/components/invite-action-menu.tsx b/apps/client/src/features/workspace/components/members/components/invite-action-menu.tsx
index 1781bb7d..6fc06cf5 100644
--- a/apps/client/src/features/workspace/components/members/components/invite-action-menu.tsx
+++ b/apps/client/src/features/workspace/components/members/components/invite-action-menu.tsx
@@ -11,6 +11,7 @@ import { notifications } from "@mantine/notifications";
import { useClipboard } from "@mantine/hooks";
import { getInviteLink } from "@/features/workspace/services/workspace-service.ts";
import useUserRole from "@/hooks/use-user-role.tsx";
+import { isCloud } from "@/lib/config.ts";
interface Props {
invitationId: string;
@@ -76,13 +77,16 @@ export default function InviteActionMenu({ invitationId }: Props) {
- handleCopyLink(invitationId)}
- leftSection={}
- disabled={!isAdmin}
- >
- {t("Copy link")}
-
+ {!isCloud() && (
+ handleCopyLink(invitationId)}
+ leftSection={}
+ disabled={!isAdmin}
+ >
+ {t("Copy link")}
+
+ )}
+
}
diff --git a/apps/client/src/features/workspace/components/members/components/workspace-invite-section.tsx b/apps/client/src/features/workspace/components/members/components/workspace-invite-section.tsx
index ed55d3d7..11596d0a 100644
--- a/apps/client/src/features/workspace/components/members/components/workspace-invite-section.tsx
+++ b/apps/client/src/features/workspace/components/members/components/workspace-invite-section.tsx
@@ -9,12 +9,13 @@ export default function WorkspaceInviteSection() {
const [currentUser] = useAtom(currentUserAtom);
const [inviteLink, setInviteLink] = useState("");
+ /*
useEffect(() => {
setInviteLink(
`${window.location.origin}/invite/${currentUser.workspace.inviteCode}`,
);
}, [currentUser.workspace.inviteCode]);
-
+*/
return (
<>
diff --git a/apps/client/src/features/workspace/components/settings/components/workspace-name-form.tsx b/apps/client/src/features/workspace/components/settings/components/workspace-name-form.tsx
index 4cc041f6..d98d32ef 100644
--- a/apps/client/src/features/workspace/components/settings/components/workspace-name-form.tsx
+++ b/apps/client/src/features/workspace/components/settings/components/workspace-name-form.tsx
@@ -1,8 +1,7 @@
-import { currentUserAtom } from "@/features/user/atoms/current-user-atom.ts";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
import { useAtom } from "jotai";
import * as z from "zod";
import { useState } from "react";
-import { focusAtom } from "jotai-optics";
import { updateWorkspace } from "@/features/workspace/services/workspace-service.ts";
import { IWorkspace } from "@/features/workspace/types/workspace.types.ts";
import { TextInput, Button } from "@mantine/core";
@@ -17,21 +16,16 @@ const formSchema = z.object({
type FormValues = z.infer
;
-const workspaceAtom = focusAtom(currentUserAtom, (optic) =>
- optic.prop("workspace"),
-);
-
export default function WorkspaceNameForm() {
const { t } = useTranslation();
const [isLoading, setIsLoading] = useState(false);
- const [currentUser] = useAtom(currentUserAtom);
- const [, setWorkspace] = useAtom(workspaceAtom);
+ const [workspace, setWorkspace] = useAtom(workspaceAtom);
const { isAdmin } = useUserRole();
const form = useForm({
validate: zodResolver(formSchema),
initialValues: {
- name: currentUser?.workspace?.name,
+ name: workspace?.name,
},
});
@@ -39,7 +33,7 @@ export default function WorkspaceNameForm() {
setIsLoading(true);
try {
- const updatedWorkspace = await updateWorkspace(data);
+ const updatedWorkspace = await updateWorkspace({ name: data.name });
setWorkspace(updatedWorkspace);
notifications.show({ message: t("Updated successfully") });
} catch (err) {
diff --git a/apps/client/src/features/workspace/queries/workspace-query.ts b/apps/client/src/features/workspace/queries/workspace-query.ts
index 8d9298cf..81901381 100644
--- a/apps/client/src/features/workspace/queries/workspace-query.ts
+++ b/apps/client/src/features/workspace/queries/workspace-query.ts
@@ -21,6 +21,7 @@ import { notifications } from "@mantine/notifications";
import {
ICreateInvite,
IInvitation,
+ IPublicWorkspace,
IWorkspace,
} from "@/features/workspace/types/workspace.types.ts";
import { IUser } from "@/features/user/types/user.types.ts";
@@ -34,7 +35,7 @@ export function useWorkspaceQuery(): UseQueryResult {
}
export function useWorkspacePublicDataQuery(): UseQueryResult<
- IWorkspace,
+ IPublicWorkspace,
Error
> {
return useQuery({
diff --git a/apps/client/src/features/workspace/services/workspace-service.ts b/apps/client/src/features/workspace/services/workspace-service.ts
index dd8bf8a4..4f099750 100644
--- a/apps/client/src/features/workspace/services/workspace-service.ts
+++ b/apps/client/src/features/workspace/services/workspace-service.ts
@@ -5,17 +5,26 @@ import {
IInvitation,
IWorkspace,
IAcceptInvite,
+ IPublicWorkspace,
IInvitationLink,
} from "../types/workspace.types";
import { IPagination, QueryParams } from "@/lib/types.ts";
+import { ISetupWorkspace } from "@/features/auth/types/auth.types.ts";
export async function getWorkspace(): Promise {
const req = await api.post("/workspace/info");
return req.data;
}
-export async function getWorkspacePublicData(): Promise {
- const req = await api.post("/workspace/public");
+export async function getWorkspacePublicData(): Promise {
+ const req = await api.post("/workspace/public");
+ return req.data;
+}
+
+export async function getCheckHostname(
+ hostname: string,
+): Promise<{ hostname: string }> {
+ const req = await api.post("/workspace/check-hostname", { hostname });
return req.data;
}
@@ -81,6 +90,13 @@ export async function getInvitationById(data: {
return req.data;
}
+export async function createWorkspace(
+ data: ISetupWorkspace,
+): Promise<{ workspace: IWorkspace } & { exchangeToken: string }> {
+ const req = await api.post("/workspace/create", data);
+ return req.data;
+}
+
export async function uploadLogo(file: File) {
const formData = new FormData();
formData.append("type", "workspace-logo");
diff --git a/apps/client/src/features/workspace/types/workspace.types.ts b/apps/client/src/features/workspace/types/workspace.types.ts
index faec5590..478f2a69 100644
--- a/apps/client/src/features/workspace/types/workspace.types.ts
+++ b/apps/client/src/features/workspace/types/workspace.types.ts
@@ -1,3 +1,5 @@
+import { IAuthProvider } from "@/ee/security/types/security.types.ts";
+
export interface IWorkspace {
id: string;
name: string;
@@ -7,10 +9,17 @@ export interface IWorkspace {
defaultSpaceId: string;
customDomain: string;
enableInvite: boolean;
- inviteCode: string;
settings: any;
+ status: string;
+ enforceSso: boolean;
+ billingEmail: string;
+ trialEndAt: Date;
createdAt: Date;
updatedAt: Date;
+ emailDomains: string[];
+ memberCount?: number;
+ plan?: string;
+ hasLicenseKey?: boolean;
}
export interface ICreateInvite {
@@ -38,3 +47,13 @@ export interface IAcceptInvite {
password: string;
token: string;
}
+
+export interface IPublicWorkspace {
+ id: string;
+ name: string;
+ logo: string;
+ hostname: string;
+ enforceSso: boolean;
+ authProviders: IAuthProvider[];
+ hasLicenseKey?: boolean;
+}
diff --git a/apps/client/src/lib/api-client.ts b/apps/client/src/lib/api-client.ts
index b0c555cb..35c9bc13 100644
--- a/apps/client/src/lib/api-client.ts
+++ b/apps/client/src/lib/api-client.ts
@@ -1,5 +1,6 @@
import axios, { AxiosInstance } from "axios";
import APP_ROUTE from "@/lib/app-route.ts";
+import { isCloud } from "@/lib/config.ts";
const api: AxiosInstance = axios.create({
baseURL: "/api",
@@ -41,7 +42,10 @@ api.interceptors.response.use(
.includes("workspace not found")
) {
console.log("workspace not found");
- if (window.location.pathname != APP_ROUTE.AUTH.SETUP) {
+ if (
+ !isCloud() &&
+ window.location.pathname != APP_ROUTE.AUTH.SETUP
+ ) {
window.location.href = APP_ROUTE.AUTH.SETUP;
}
}
diff --git a/apps/client/src/lib/app-route.ts b/apps/client/src/lib/app-route.ts
index c2bc5ec4..56dac67a 100644
--- a/apps/client/src/lib/app-route.ts
+++ b/apps/client/src/lib/app-route.ts
@@ -6,6 +6,8 @@ const APP_ROUTE = {
SETUP: "/setup/register",
FORGOT_PASSWORD: "/forgot-password",
PASSWORD_RESET: "/password-reset",
+ CREATE_WORKSPACE: "/create",
+ SELECT_WORKSPACE: "/select",
},
SETTINGS: {
ACCOUNT: {
@@ -17,6 +19,8 @@ const APP_ROUTE = {
MEMBERS: "/settings/members",
GROUPS: "/settings/groups",
SPACES: "/settings/spaces",
+ BILLING: "/settings/billing",
+ SECURITY: "/settings/security",
},
},
};
diff --git a/apps/client/src/lib/config.ts b/apps/client/src/lib/config.ts
index 49712e62..9e1efc30 100644
--- a/apps/client/src/lib/config.ts
+++ b/apps/client/src/lib/config.ts
@@ -1,4 +1,5 @@
import bytes from "bytes";
+import { castToBoolean } from "@/lib/utils.tsx";
declare global {
interface Window {
@@ -14,6 +15,10 @@ export function getAppUrl(): string {
return `${window.location.protocol}//${window.location.host}`;
}
+export function getServerAppUrl(): string {
+ return getConfigValue("APP_URL");
+}
+
export function getBackendUrl(): string {
return getAppUrl() + "/api";
}
@@ -28,6 +33,14 @@ export function getCollaborationUrl(): string {
return collabUrl.toString();
}
+export function getSubdomainHost(): string {
+ return getConfigValue("SUBDOMAIN_HOST");
+}
+
+export function isCloud(): boolean {
+ return castToBoolean(getConfigValue("CLOUD"));
+}
+
export function getAvatarUrl(avatarUrl: string) {
if (!avatarUrl) return null;
if (avatarUrl?.startsWith("http")) return avatarUrl;
@@ -40,7 +53,16 @@ export function getSpaceUrl(spaceSlug: string) {
}
export function getFileUrl(src: string) {
- return src?.startsWith("/files/") ? getBackendUrl() + src : src;
+ if (!src) return src;
+ if (src.startsWith("http")) return src;
+ if (src.startsWith("/api/")) {
+ // Remove the '/api' prefix
+ return getBackendUrl() + src.substring(4);
+ }
+ if (src.startsWith("/files/")) {
+ return getBackendUrl() + src;
+ }
+ return src;
}
export function getFileUploadSizeLimit() {
diff --git a/apps/client/src/lib/utils.tsx b/apps/client/src/lib/utils.tsx
index 6914053a..e9c39267 100644
--- a/apps/client/src/lib/utils.tsx
+++ b/apps/client/src/lib/utils.tsx
@@ -93,3 +93,33 @@ export function getPageIcon(icon: string, size = 18): string | ReactNode {
)
);
}
+
+export function castToBoolean(value: unknown): boolean {
+ if (value == null) {
+ return false;
+ }
+
+ if (typeof value === "boolean") {
+ return value;
+ }
+
+ if (typeof value === "number") {
+ return value !== 0;
+ }
+
+ if (typeof value === "string") {
+ const trimmed = value.trim().toLowerCase();
+ const trueValues = ["true", "1"];
+ const falseValues = ["false", "0"];
+
+ if (trueValues.includes(trimmed)) {
+ return true;
+ }
+ if (falseValues.includes(trimmed)) {
+ return false;
+ }
+ return Boolean(trimmed);
+ }
+
+ return Boolean(value);
+}
diff --git a/apps/client/src/main.tsx b/apps/client/src/main.tsx
index 0a770949..dded807f 100644
--- a/apps/client/src/main.tsx
+++ b/apps/client/src/main.tsx
@@ -3,7 +3,7 @@ import "@mantine/spotlight/styles.css";
import "@mantine/notifications/styles.css";
import ReactDOM from "react-dom/client";
import App from "./App.tsx";
-import { theme } from "@/theme";
+import { mantineCssResolver, theme } from '@/theme';
import { MantineProvider } from "@mantine/core";
import { BrowserRouter } from "react-router-dom";
import { ModalsProvider } from "@mantine/modals";
@@ -18,6 +18,7 @@ export const queryClient = new QueryClient({
refetchOnMount: false,
refetchOnWindowFocus: false,
retry: false,
+ staleTime: 5 * 60 * 1000,
},
},
});
@@ -29,7 +30,7 @@ const root = ReactDOM.createRoot(
root.render(
-
+
diff --git a/apps/client/src/pages/auth/login.tsx b/apps/client/src/pages/auth/login.tsx
index 39624f3b..4b062c19 100644
--- a/apps/client/src/pages/auth/login.tsx
+++ b/apps/client/src/pages/auth/login.tsx
@@ -1,6 +1,6 @@
import { LoginForm } from "@/features/auth/components/login-form";
import { Helmet } from "react-helmet-async";
-import {getAppName} from "@/lib/config.ts";
+import { getAppName } from "@/lib/config.ts";
import { useTranslation } from "react-i18next";
export default function LoginPage() {
@@ -9,7 +9,9 @@ export default function LoginPage() {
return (
<>
- {t("Login")} - {getAppName()}
+
+ {t("Login")} - {getAppName()}
+
>
diff --git a/apps/client/src/pages/auth/setup-workspace.tsx b/apps/client/src/pages/auth/setup-workspace.tsx
index bce1e6c8..7fb75e2d 100644
--- a/apps/client/src/pages/auth/setup-workspace.tsx
+++ b/apps/client/src/pages/auth/setup-workspace.tsx
@@ -3,7 +3,8 @@ import { SetupWorkspaceForm } from "@/features/auth/components/setup-workspace-f
import { Helmet } from "react-helmet-async";
import React, { useEffect } from "react";
import { useNavigate } from "react-router-dom";
-import {getAppName} from "@/lib/config.ts";
+import APP_ROUTE from "@/lib/app-route.ts";
+import { getAppName } from "@/lib/config.ts";
import { useTranslation } from "react-i18next";
export default function SetupWorkspace() {
@@ -18,10 +19,10 @@ export default function SetupWorkspace() {
const navigate = useNavigate();
useEffect(() => {
- if (!isLoading && !isError && workspace) {
- navigate("/");
+ if (!isLoading && workspace) {
+ navigate(APP_ROUTE.AUTH.LOGIN);
}
- }, [isLoading, isError, workspace]);
+ }, [isLoading, workspace]);
if (isLoading) {
return ;
@@ -35,7 +36,9 @@ export default function SetupWorkspace() {
return (
<>
- {t("Setup Workspace")} - {getAppName()}
+
+ {t("Setup Workspace")} - {getAppName()}
+
>
diff --git a/apps/client/src/pages/dashboard/home.tsx b/apps/client/src/pages/dashboard/home.tsx
index 0a201efa..900afa40 100644
--- a/apps/client/src/pages/dashboard/home.tsx
+++ b/apps/client/src/pages/dashboard/home.tsx
@@ -1,22 +1,27 @@
-import {Container, Space} from "@mantine/core";
+import { Container, Space } from "@mantine/core";
import HomeTabs from "@/features/home/components/home-tabs";
import SpaceGrid from "@/features/space/components/space-grid.tsx";
-import {getAppName} from "@/lib/config.ts";
-import {Helmet} from "react-helmet-async";
+import { getAppName } from "@/lib/config.ts";
+import { Helmet } from "react-helmet-async";
+import { useTranslation } from "react-i18next";
export default function Home() {
- return (
- <>
-
- Home - {getAppName()}
-
-
-
+ const { t } = useTranslation();
-
+ return (
+ <>
+
+
+ {t("Home")} - {getAppName()}
+
+
+
+
-
-
- >
- );
+
+
+
+
+ >
+ );
}
diff --git a/apps/client/src/pages/settings/workspace/workspace-members.tsx b/apps/client/src/pages/settings/workspace/workspace-members.tsx
index 808583f9..dba853a4 100644
--- a/apps/client/src/pages/settings/workspace/workspace-members.tsx
+++ b/apps/client/src/pages/settings/workspace/workspace-members.tsx
@@ -1,69 +1,77 @@
import WorkspaceInviteModal from "@/features/workspace/components/members/components/workspace-invite-modal";
-import {Group, SegmentedControl, Space, Text} from "@mantine/core";
+import { Group, SegmentedControl, Space, Text } from "@mantine/core";
import WorkspaceMembersTable from "@/features/workspace/components/members/components/workspace-members-table";
import SettingsTitle from "@/components/settings/settings-title.tsx";
-import {useEffect, useState} from "react";
-import {useNavigate, useSearchParams} from "react-router-dom";
+import { useEffect, useState } from "react";
+import { useNavigate, useSearchParams } from "react-router-dom";
import WorkspaceInvitesTable from "@/features/workspace/components/members/components/workspace-invites-table.tsx";
import useUserRole from "@/hooks/use-user-role.tsx";
-import {getAppName} from "@/lib/config.ts";
-import {Helmet} from "react-helmet-async";
+import { getAppName } from "@/lib/config.ts";
+import { Helmet } from "react-helmet-async";
import { useTranslation } from "react-i18next";
+import { useAtom } from "jotai";
+import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
export default function WorkspaceMembers() {
- const [segmentValue, setSegmentValue] = useState("members");
- const [searchParams] = useSearchParams();
- const {isAdmin} = useUserRole();
- const navigate = useNavigate();
- const { t } = useTranslation();
+ const { t } = useTranslation();
+ const [segmentValue, setSegmentValue] = useState("members");
+ const [workspace] = useAtom(workspaceAtom);
+ const [searchParams] = useSearchParams();
+ const { isAdmin } = useUserRole();
+ const navigate = useNavigate();
- useEffect(() => {
- const currentTab = searchParams.get("tab");
- if (currentTab === "invites") {
- setSegmentValue(currentTab);
- }
- }, [searchParams.get("tab")]);
+ useEffect(() => {
+ const currentTab = searchParams.get("tab");
+ if (currentTab === "invites") {
+ setSegmentValue(currentTab);
+ }
+ }, [searchParams.get("tab")]);
- const handleSegmentChange = (value: string) => {
- setSegmentValue(value);
- if (value === "invites") {
- navigate(`?tab=${value}`);
- } else {
- navigate("");
- }
- };
+ const handleSegmentChange = (value: string) => {
+ setSegmentValue(value);
+ if (value === "invites") {
+ navigate(`?tab=${value}`);
+ } else {
+ navigate("");
+ }
+ };
- return (
- <>
-
- {t("Members")} - {getAppName()}
-
-
+ return (
+ <>
+
+
+ {t("Members")} - {getAppName()}
+
+
+
- {/* */}
- {/* */}
+ {/* */}
+ {/* */}
-
-
+
+
- {isAdmin && }
-
+ {isAdmin && }
+
-
+
- {segmentValue === "invites" ? (
-
- ) : (
-
- )}
- >
- );
+ {segmentValue === "invites" ? (
+
+ ) : (
+
+ )}
+ >
+ );
}
diff --git a/apps/client/src/pages/settings/workspace/workspace-settings.tsx b/apps/client/src/pages/settings/workspace/workspace-settings.tsx
index 971bab46..4bfede64 100644
--- a/apps/client/src/pages/settings/workspace/workspace-settings.tsx
+++ b/apps/client/src/pages/settings/workspace/workspace-settings.tsx
@@ -1,18 +1,27 @@
import SettingsTitle from "@/components/settings/settings-title.tsx";
import WorkspaceNameForm from "@/features/workspace/components/settings/components/workspace-name-form";
import { useTranslation } from "react-i18next";
-import {getAppName} from "@/lib/config.ts";
-import {Helmet} from "react-helmet-async";
+import { getAppName, isCloud } from "@/lib/config.ts";
+import { Helmet } from "react-helmet-async";
+import ManageHostname from "@/ee/components/manage-hostname.tsx";
+import { Divider } from "@mantine/core";
export default function WorkspaceSettings() {
const { t } = useTranslation();
- return (
+ return (
+ <>
+
+ Workspace Settings - {getAppName()}
+
+
+
+
+ {isCloud() && (
<>
-
- Workspace Settings - {getAppName()}
-
-
-
+
+
>
- );
+ )}
+ >
+ );
}
diff --git a/apps/client/src/theme.ts b/apps/client/src/theme.ts
index b23862fa..b02200b1 100644
--- a/apps/client/src/theme.ts
+++ b/apps/client/src/theme.ts
@@ -1,29 +1,33 @@
-import { createTheme, MantineColorsTuple } from '@mantine/core';
+import {
+ createTheme,
+ CSSVariablesResolver,
+ MantineColorsTuple,
+} from "@mantine/core";
const blue: MantineColorsTuple = [
- '#e7f3ff',
- '#d0e4ff',
- '#a1c6fa',
- '#6ea6f6',
- '#458bf2',
- '#2b7af1',
- '#0b60d8',
- '#1b72f2',
- '#0056c1',
- '#004aac',
+ "#e7f3ff",
+ "#d0e4ff",
+ "#a1c6fa",
+ "#6ea6f6",
+ "#458bf2",
+ "#2b7af1",
+ "#0b60d8",
+ "#1b72f2",
+ "#0056c1",
+ "#004aac",
];
const red: MantineColorsTuple = [
- '#ffebeb',
- '#fad7d7',
- '#eeadad',
- '#e3807f',
- '#da5a59',
- '#d54241',
- '#d43535',
- '#bc2727',
- '#a82022',
- '#93151b',
+ "#ffebeb",
+ "#fad7d7",
+ "#eeadad",
+ "#e3807f",
+ "#da5a59",
+ "#d54241",
+ "#d43535",
+ "#bc2727",
+ "#a82022",
+ "#93151b",
];
export const theme = createTheme({
@@ -32,3 +36,11 @@ export const theme = createTheme({
red,
},
});
+
+export const mantineCssResolver: CSSVariablesResolver = (theme) => ({
+ variables: {
+ "--input-error-size": theme.fontSizes.sm,
+ },
+ light: {},
+ dark: {},
+});
diff --git a/apps/client/vite.config.ts b/apps/client/vite.config.ts
index 299c42b2..2e557fe5 100644
--- a/apps/client/vite.config.ts
+++ b/apps/client/vite.config.ts
@@ -5,11 +5,14 @@ import * as path from "path";
export const envPath = path.resolve(process.cwd(), "..", "..");
export default defineConfig(({ mode }) => {
- const { APP_URL, FILE_UPLOAD_SIZE_LIMIT, DRAWIO_URL, COLLAB_URL } = loadEnv(
- mode,
- envPath,
- "",
- );
+ const {
+ APP_URL,
+ FILE_UPLOAD_SIZE_LIMIT,
+ DRAWIO_URL,
+ CLOUD,
+ SUBDOMAIN_HOST,
+ COLLAB_URL,
+ } = loadEnv(mode, envPath, "");
return {
define: {
@@ -17,6 +20,8 @@ export default defineConfig(({ mode }) => {
APP_URL,
FILE_UPLOAD_SIZE_LIMIT,
DRAWIO_URL,
+ CLOUD,
+ SUBDOMAIN_HOST,
COLLAB_URL,
},
APP_VERSION: JSON.stringify(process.env.npm_package_version),
@@ -31,7 +36,17 @@ export default defineConfig(({ mode }) => {
proxy: {
"/api": {
target: APP_URL,
- changeOrigin: true,
+ changeOrigin: false,
+ },
+ "/socket.io": {
+ target: APP_URL,
+ ws: true,
+ rewriteWsOrigin: true,
+ },
+ "/collab": {
+ target: APP_URL,
+ ws: true,
+ rewriteWsOrigin: true,
},
},
},
diff --git a/apps/server/package.json b/apps/server/package.json
index 79199ff5..2105002a 100644
--- a/apps/server/package.json
+++ b/apps/server/package.json
@@ -47,23 +47,28 @@
"@nestjs/platform-socket.io": "^11.0.10",
"@nestjs/terminus": "^11.0.0",
"@nestjs/websockets": "^11.0.10",
+ "@node-saml/passport-saml": "^5.0.0",
"@react-email/components": "0.0.28",
"@react-email/render": "1.0.2",
"@socket.io/redis-adapter": "^8.3.0",
"bcrypt": "^5.1.1",
"bullmq": "^5.41.3",
+ "cache-manager": "^6.4.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie": "^1.0.2",
"fix-esm": "^1.0.1",
"fs-extra": "^11.3.0",
"happy-dom": "^15.11.6",
+ "jsonwebtoken": "^9.0.2",
"kysely": "^0.27.5",
"kysely-migration-cli": "^0.4.2",
"mime-types": "^2.1.35",
"nanoid": "^5.1.0",
"nestjs-kysely": "^1.1.0",
"nodemailer": "^6.10.0",
+ "openid-client": "^5.7.1",
+ "passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"pg": "^8.13.3",
"pg-tsquery": "^8.4.2",
@@ -73,6 +78,7 @@
"rxjs": "^7.8.1",
"sanitize-filename-ts": "^1.0.2",
"socket.io": "^4.8.1",
+ "stripe": "^17.5.0",
"ws": "^8.18.0"
},
"devDependencies": {
@@ -87,6 +93,7 @@
"@types/mime-types": "^2.1.4",
"@types/node": "^22.13.4",
"@types/nodemailer": "^6.4.17",
+ "@types/passport-google-oauth20": "^2.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.11.11",
"@types/supertest": "^6.0.2",
diff --git a/apps/server/src/app.module.ts b/apps/server/src/app.module.ts
index f8fd1071..5aa30e60 100644
--- a/apps/server/src/app.module.ts
+++ b/apps/server/src/app.module.ts
@@ -14,6 +14,21 @@ import { EventEmitterModule } from '@nestjs/event-emitter';
import { HealthModule } from './integrations/health/health.module';
import { ExportModule } from './integrations/export/export.module';
import { ImportModule } from './integrations/import/import.module';
+import { SecurityModule } from './integrations/security/security.module';
+
+const enterpriseModules = [];
+try {
+ // eslint-disable-next-line @typescript-eslint/no-require-imports
+ if (require('./ee/ee.module')?.EeModule) {
+ // eslint-disable-next-line @typescript-eslint/no-require-imports
+ enterpriseModules.push(require('./ee/ee.module')?.EeModule);
+ }
+} catch (err) {
+ if (process.env.CLOUD === 'true') {
+ console.warn('Failed to load enterprise modules. Exiting program.\n', err);
+ process.exit(1);
+ }
+}
@Module({
imports: [
@@ -34,6 +49,8 @@ import { ImportModule } from './integrations/import/import.module';
imports: [EnvironmentModule],
}),
EventEmitterModule.forRoot(),
+ SecurityModule,
+ ...enterpriseModules,
],
controllers: [AppController],
providers: [AppService],
diff --git a/apps/server/src/collaboration/extensions/authentication.extension.ts b/apps/server/src/collaboration/extensions/authentication.extension.ts
index 4cb52c54..b7925619 100644
--- a/apps/server/src/collaboration/extensions/authentication.extension.ts
+++ b/apps/server/src/collaboration/extensions/authentication.extension.ts
@@ -32,13 +32,10 @@ export class AuthenticationExtension implements Extension {
let jwtPayload: JwtCollabPayload;
try {
- jwtPayload = await this.tokenService.verifyJwt(token);
+ jwtPayload = await this.tokenService.verifyJwt(token, JwtType.COLLAB);
} catch (error) {
throw new UnauthorizedException('Invalid collab token');
}
- if (jwtPayload.type !== JwtType.COLLAB) {
- throw new UnauthorizedException();
- }
const userId = jwtPayload.sub;
const workspaceId = jwtPayload.workspaceId;
diff --git a/apps/server/src/collaboration/server/collab-main.ts b/apps/server/src/collaboration/server/collab-main.ts
index 489ad943..d71da428 100644
--- a/apps/server/src/collaboration/server/collab-main.ts
+++ b/apps/server/src/collaboration/server/collab-main.ts
@@ -1,4 +1,4 @@
-import { NestFactory } from '@nestjs/core';
+import { NestFactory, Reflector } from '@nestjs/core';
import { CollabAppModule } from './collab-app.module';
import {
FastifyAdapter,
@@ -25,7 +25,8 @@ async function bootstrap() {
app.enableCors();
- app.useGlobalInterceptors(new TransformHttpResponseInterceptor());
+ const reflector = app.get(Reflector);
+ app.useGlobalInterceptors(new TransformHttpResponseInterceptor(reflector));
app.enableShutdownHooks();
const logger = new Logger('CollabServer');
diff --git a/apps/server/src/common/decorators/skip-transform.decorator.ts b/apps/server/src/common/decorators/skip-transform.decorator.ts
new file mode 100644
index 00000000..b3720b30
--- /dev/null
+++ b/apps/server/src/common/decorators/skip-transform.decorator.ts
@@ -0,0 +1,4 @@
+import { SetMetadata } from '@nestjs/common';
+
+export const SKIP_TRANSFORM_KEY = 'SKIP_TRANSFORM';
+export const SkipTransform = () => SetMetadata(SKIP_TRANSFORM_KEY, true);
diff --git a/apps/server/src/common/guards/jwt-auth.guard.ts b/apps/server/src/common/guards/jwt-auth.guard.ts
index 7b618c80..0508ed4e 100644
--- a/apps/server/src/common/guards/jwt-auth.guard.ts
+++ b/apps/server/src/common/guards/jwt-auth.guard.ts
@@ -6,10 +6,15 @@ import {
import { AuthGuard } from '@nestjs/passport';
import { IS_PUBLIC_KEY } from '../decorators/public.decorator';
import { Reflector } from '@nestjs/core';
+import { EnvironmentService } from '../../integrations/environment/environment.service';
+import { addDays } from 'date-fns';
@Injectable()
export class JwtAuthGuard extends AuthGuard('jwt') {
- constructor(private reflector: Reflector) {
+ constructor(
+ private reflector: Reflector,
+ private environmentService: EnvironmentService,
+ ) {
super();
}
@@ -26,10 +31,41 @@ export class JwtAuthGuard extends AuthGuard('jwt') {
return super.canActivate(context);
}
- handleRequest(err: any, user: any, info: any) {
+ handleRequest(err: any, user: any, info: any, ctx: ExecutionContext) {
if (err || !user) {
throw err || new UnauthorizedException();
}
+
+ this.setJoinedWorkspacesCookie(user, ctx);
return user;
}
+
+ setJoinedWorkspacesCookie(user: any, ctx: ExecutionContext) {
+ if (this.environmentService.isCloud()) {
+ const req = ctx.switchToHttp().getRequest();
+ const res = ctx.switchToHttp().getResponse();
+
+ const workspaceId = user?.workspace?.id;
+ let workspaceIds = [];
+ try {
+ workspaceIds = req.cookies.joinedWorkspaces
+ ? JSON.parse(req.cookies.joinedWorkspaces)
+ : [];
+ } catch (err) {
+ /* empty */
+ }
+
+ if (!workspaceIds.includes(workspaceId)) {
+ workspaceIds.push(workspaceId);
+ }
+
+ res.setCookie('joinedWorkspaces', JSON.stringify(workspaceIds), {
+ httpOnly: false,
+ domain: '.' + this.environmentService.getSubdomainHost(),
+ path: '/',
+ expires: addDays(new Date(), 365),
+ secure: this.environmentService.isHttps(),
+ });
+ }
+ }
}
diff --git a/apps/server/src/common/interceptors/http-response.interceptor.ts b/apps/server/src/common/interceptors/http-response.interceptor.ts
index 5a205011..c4f8d877 100644
--- a/apps/server/src/common/interceptors/http-response.interceptor.ts
+++ b/apps/server/src/common/interceptors/http-response.interceptor.ts
@@ -5,6 +5,8 @@ import {
NestInterceptor,
} from '@nestjs/common';
import { map, Observable } from 'rxjs';
+import { Reflector } from '@nestjs/core';
+import { SKIP_TRANSFORM_KEY } from '../decorators/skip-transform.decorator';
export interface Response {
data: T;
}
@@ -13,15 +15,18 @@ export interface Response {
export class TransformHttpResponseInterceptor
implements NestInterceptor>
{
+ constructor(private reflector: Reflector) {}
+
intercept(
context: ExecutionContext,
next: CallHandler,
): Observable | any> {
- const request = context.switchToHttp().getRequest();
- const path = request.url;
+ const skipTransform = this.reflector.get(
+ SKIP_TRANSFORM_KEY,
+ context.getHandler(),
+ );
- // Skip interceptor for the /api/health path
- if (path === '/api/health') {
+ if (skipTransform) {
return next.handle();
}
diff --git a/apps/server/src/common/middlewares/domain.middleware.ts b/apps/server/src/common/middlewares/domain.middleware.ts
index 47ea57df..1a2400b8 100644
--- a/apps/server/src/common/middlewares/domain.middleware.ts
+++ b/apps/server/src/common/middlewares/domain.middleware.ts
@@ -32,7 +32,8 @@ export class DomainMiddleware implements NestMiddleware {
const workspace = await this.workspaceRepo.findByHostname(subdomain);
if (!workspace) {
- throw new NotFoundException('Workspace not found');
+ (req as any).workspaceId = null;
+ return next();
}
(req as any).workspaceId = workspace.id;
diff --git a/apps/server/src/core/auth/auth.controller.ts b/apps/server/src/core/auth/auth.controller.ts
index b4115b74..20cc6ed5 100644
--- a/apps/server/src/core/auth/auth.controller.ts
+++ b/apps/server/src/core/auth/auth.controller.ts
@@ -1,9 +1,9 @@
import {
+ BadRequestException,
Body,
Controller,
HttpCode,
HttpStatus,
- NotFoundException,
Post,
Req,
Res,
@@ -24,6 +24,7 @@ import { PasswordResetDto } from './dto/password-reset.dto';
import { VerifyUserTokenDto } from './dto/verify-user-token.dto';
import { FastifyReply } from 'fastify';
import { addDays } from 'date-fns';
+import { validateSsoEnforcement } from './auth.util';
@Controller('auth')
export class AuthController {
@@ -35,14 +36,13 @@ export class AuthController {
@HttpCode(HttpStatus.OK)
@Post('login')
async login(
- @Req() req,
+ @AuthWorkspace() workspace: Workspace,
@Res({ passthrough: true }) res: FastifyReply,
@Body() loginInput: LoginDto,
) {
- const authToken = await this.authService.login(
- loginInput,
- req.raw.workspaceId,
- );
+ validateSsoEnforcement(workspace);
+
+ const authToken = await this.authService.login(loginInput, workspace.id);
this.setAuthCookie(res, authToken);
}
@@ -53,10 +53,11 @@ export class AuthController {
@Res({ passthrough: true }) res: FastifyReply,
@Body() createAdminUserDto: CreateAdminUserDto,
) {
- if (this.environmentService.isCloud()) throw new NotFoundException();
+ const { workspace, authToken } =
+ await this.authService.setup(createAdminUserDto);
- const authToken = await this.authService.setup(createAdminUserDto);
this.setAuthCookie(res, authToken);
+ return workspace;
}
@UseGuards(JwtAuthGuard)
@@ -76,7 +77,8 @@ export class AuthController {
@Body() forgotPasswordDto: ForgotPasswordDto,
@AuthWorkspace() workspace: Workspace,
) {
- return this.authService.forgotPassword(forgotPasswordDto, workspace.id);
+ validateSsoEnforcement(workspace);
+ return this.authService.forgotPassword(forgotPasswordDto, workspace);
}
@HttpCode(HttpStatus.OK)
diff --git a/apps/server/src/core/auth/auth.module.ts b/apps/server/src/core/auth/auth.module.ts
index eeb68f54..c440bdc2 100644
--- a/apps/server/src/core/auth/auth.module.ts
+++ b/apps/server/src/core/auth/auth.module.ts
@@ -10,5 +10,6 @@ import { TokenModule } from './token.module';
imports: [TokenModule, WorkspaceModule],
controllers: [AuthController],
providers: [AuthService, SignupService, JwtStrategy],
+ exports: [SignupService],
})
export class AuthModule {}
diff --git a/apps/server/src/core/auth/auth.util.ts b/apps/server/src/core/auth/auth.util.ts
new file mode 100644
index 00000000..ee781603
--- /dev/null
+++ b/apps/server/src/core/auth/auth.util.ts
@@ -0,0 +1,8 @@
+import { BadRequestException } from '@nestjs/common';
+import { Workspace } from '@docmost/db/types/entity.types';
+
+export function validateSsoEnforcement(workspace: Workspace) {
+ if (workspace.enforceSso) {
+ throw new BadRequestException('This workspace has enforced SSO login.');
+ }
+}
diff --git a/apps/server/src/core/auth/dto/create-user.dto.ts b/apps/server/src/core/auth/dto/create-user.dto.ts
index 359fb1c0..3362c722 100644
--- a/apps/server/src/core/auth/dto/create-user.dto.ts
+++ b/apps/server/src/core/auth/dto/create-user.dto.ts
@@ -6,7 +6,7 @@ import {
MaxLength,
MinLength,
} from 'class-validator';
-import {Transform, TransformFnParams} from "class-transformer";
+import { Transform, TransformFnParams } from 'class-transformer';
export class CreateUserDto {
@IsOptional()
@@ -22,6 +22,7 @@ export class CreateUserDto {
@IsNotEmpty()
@MinLength(8)
+ @MaxLength(70)
@IsString()
password: string;
}
diff --git a/apps/server/src/core/auth/dto/jwt-payload.ts b/apps/server/src/core/auth/dto/jwt-payload.ts
index 52a189ab..ad172b78 100644
--- a/apps/server/src/core/auth/dto/jwt-payload.ts
+++ b/apps/server/src/core/auth/dto/jwt-payload.ts
@@ -1,6 +1,7 @@
export enum JwtType {
ACCESS = 'access',
COLLAB = 'collab',
+ EXCHANGE = 'exchange',
}
export type JwtPayload = {
sub: string;
@@ -14,3 +15,9 @@ export type JwtCollabPayload = {
workspaceId: string;
type: 'collab';
};
+
+export type JwtExchangePayload = {
+ sub: string;
+ workspaceId: string;
+ type: 'exchange';
+};
diff --git a/apps/server/src/core/auth/guards/setup.guard.ts b/apps/server/src/core/auth/guards/setup.guard.ts
index 07231c77..cd5fa38a 100644
--- a/apps/server/src/core/auth/guards/setup.guard.ts
+++ b/apps/server/src/core/auth/guards/setup.guard.ts
@@ -1,11 +1,19 @@
import { CanActivate, ForbiddenException, Injectable } from '@nestjs/common';
import { WorkspaceRepo } from '@docmost/db/repos/workspace/workspace.repo';
+import { EnvironmentService } from '../../../integrations/environment/environment.service';
@Injectable()
export class SetupGuard implements CanActivate {
- constructor(private workspaceRepo: WorkspaceRepo) {}
+ constructor(
+ private workspaceRepo: WorkspaceRepo,
+ private environmentService: EnvironmentService,
+ ) {}
async canActivate(): Promise {
+ if (this.environmentService.isCloud()) {
+ return false;
+ }
+
const workspaceCount = await this.workspaceRepo.count();
if (workspaceCount > 0) {
throw new ForbiddenException('Workspace setup already completed.');
diff --git a/apps/server/src/core/auth/services/auth.service.ts b/apps/server/src/core/auth/services/auth.service.ts
index 4772fc62..73fc0a50 100644
--- a/apps/server/src/core/auth/services/auth.service.ts
+++ b/apps/server/src/core/auth/services/auth.service.ts
@@ -22,13 +22,13 @@ import { ForgotPasswordDto } from '../dto/forgot-password.dto';
import ForgotPasswordEmail from '@docmost/transactional/emails/forgot-password-email';
import { UserTokenRepo } from '@docmost/db/repos/user-token/user-token.repo';
import { PasswordResetDto } from '../dto/password-reset.dto';
-import { UserToken } from '@docmost/db/types/entity.types';
+import { UserToken, Workspace } from '@docmost/db/types/entity.types';
import { UserTokenType } from '../auth.constants';
import { KyselyDB } from '@docmost/db/types/kysely.types';
import { InjectKysely } from 'nestjs-kysely';
import { executeTx } from '@docmost/db/utils';
import { VerifyUserTokenDto } from '../dto/verify-user-token.dto';
-import { EnvironmentService } from 'src/integrations/environment/environment.service';
+import { DomainService } from '../../../integrations/environment/domain.service';
@Injectable()
export class AuthService {
@@ -38,7 +38,7 @@ export class AuthService {
private userRepo: UserRepo,
private userTokenRepo: UserTokenRepo,
private mailService: MailService,
- private environmentService: EnvironmentService,
+ private domainService: DomainService,
@InjectKysely() private readonly db: KyselyDB,
) {}
@@ -46,7 +46,9 @@ export class AuthService {
const user = await this.userRepo.findByEmail(
loginDto.email,
workspaceId,
- true,
+ {
+ includePassword: true
+ }
);
if (
@@ -68,8 +70,11 @@ export class AuthService {
}
async setup(createAdminUserDto: CreateAdminUserDto) {
- const user = await this.signupService.initialSetup(createAdminUserDto);
- return this.tokenService.generateAccessToken(user);
+ const { workspace, user } =
+ await this.signupService.initialSetup(createAdminUserDto);
+
+ const authToken = await this.tokenService.generateAccessToken(user);
+ return { workspace, authToken };
}
async changePassword(
@@ -113,11 +118,11 @@ export class AuthService {
async forgotPassword(
forgotPasswordDto: ForgotPasswordDto,
- workspaceId: string,
+ workspace: Workspace,
): Promise {
const user = await this.userRepo.findByEmail(
forgotPasswordDto.email,
- workspaceId,
+ workspace.id,
);
if (!user) {
@@ -125,7 +130,8 @@ export class AuthService {
}
const token = nanoIdGen(16);
- const resetLink = `${this.environmentService.getAppUrl()}/password-reset?token=${token}`;
+
+ const resetLink = `${this.domainService.getUrl(workspace.hostname)}/password-reset?token=${token}`;
await this.userTokenRepo.insertUserToken({
token: token,
@@ -199,7 +205,7 @@ export class AuthService {
userTokenDto: VerifyUserTokenDto,
workspaceId: string,
): Promise {
- const userToken = await this.userTokenRepo.findById(
+ const userToken: UserToken = await this.userTokenRepo.findById(
userTokenDto.token,
workspaceId,
);
diff --git a/apps/server/src/core/auth/services/signup.service.ts b/apps/server/src/core/auth/services/signup.service.ts
index 23cbb7df..a6921c89 100644
--- a/apps/server/src/core/auth/services/signup.service.ts
+++ b/apps/server/src/core/auth/services/signup.service.ts
@@ -7,7 +7,7 @@ import { UserRepo } from '@docmost/db/repos/user/user.repo';
import { KyselyDB, KyselyTransaction } from '@docmost/db/types/kysely.types';
import { executeTx } from '@docmost/db/utils';
import { InjectKysely } from 'nestjs-kysely';
-import { User } from '@docmost/db/types/entity.types';
+import { User, Workspace } from '@docmost/db/types/entity.types';
import { GroupUserRepo } from '@docmost/db/repos/group/group-user.repo';
import { UserRole } from '../../../common/helpers/types/permission';
@@ -32,7 +32,7 @@ export class SignupService {
if (userCheck) {
throw new BadRequestException(
- 'You already have an account on this workspace',
+ 'An account with this email already exists in this workspace',
);
}
@@ -72,11 +72,14 @@ export class SignupService {
createAdminUserDto: CreateAdminUserDto,
trx?: KyselyTransaction,
) {
- return await executeTx(
+ let user: User,
+ workspace: Workspace = null;
+
+ await executeTx(
this.db,
async (trx) => {
// create user
- const user = await this.userRepo.insertUser(
+ user = await this.userRepo.insertUser(
{
name: createAdminUserDto.name,
email: createAdminUserDto.email,
@@ -92,7 +95,7 @@ export class SignupService {
name: createAdminUserDto.workspaceName,
};
- const workspace = await this.workspaceService.create(
+ workspace = await this.workspaceService.create(
user,
workspaceData,
trx,
@@ -103,5 +106,7 @@ export class SignupService {
},
trx,
);
+
+ return { user, workspace };
}
}
diff --git a/apps/server/src/core/auth/services/token.service.ts b/apps/server/src/core/auth/services/token.service.ts
index 2df8d50e..9ef57ba1 100644
--- a/apps/server/src/core/auth/services/token.service.ts
+++ b/apps/server/src/core/auth/services/token.service.ts
@@ -1,7 +1,12 @@
-import { Injectable } from '@nestjs/common';
+import { Injectable, UnauthorizedException } from '@nestjs/common';
import { JwtService } from '@nestjs/jwt';
import { EnvironmentService } from '../../../integrations/environment/environment.service';
-import { JwtCollabPayload, JwtPayload, JwtType } from '../dto/jwt-payload';
+import {
+ JwtCollabPayload,
+ JwtExchangePayload,
+ JwtPayload,
+ JwtType,
+} from '../dto/jwt-payload';
import { User } from '@docmost/db/types/entity.types';
@Injectable()
@@ -34,9 +39,29 @@ export class TokenService {
return this.jwtService.sign(payload, { expiresIn });
}
- async verifyJwt(token: string) {
- return this.jwtService.verifyAsync(token, {
+ async generateExchangeToken(
+ userId: string,
+ workspaceId: string,
+ ): Promise {
+ const payload: JwtExchangePayload = {
+ sub: userId,
+ workspaceId: workspaceId,
+ type: JwtType.EXCHANGE,
+ };
+ return this.jwtService.sign(payload, { expiresIn: '10s' });
+ }
+
+ async verifyJwt(token: string, tokenType: string) {
+ const payload = await this.jwtService.verifyAsync(token, {
secret: this.environmentService.getAppSecret(),
});
+
+ if (payload.type !== tokenType) {
+ throw new UnauthorizedException(
+ 'Invalid JWT token. Token type does not match.',
+ );
+ }
+
+ return payload;
}
}
diff --git a/apps/server/src/core/auth/strategies/jwt.strategy.ts b/apps/server/src/core/auth/strategies/jwt.strategy.ts
index 5c2a06b9..d2217500 100644
--- a/apps/server/src/core/auth/strategies/jwt.strategy.ts
+++ b/apps/server/src/core/auth/strategies/jwt.strategy.ts
@@ -36,11 +36,8 @@ export class JwtStrategy extends PassportStrategy(Strategy, 'jwt') {
throw new UnauthorizedException();
}
- // CLOUD ENV
- if (this.environmentService.isCloud()) {
- if (req.raw.workspaceId && req.raw.workspaceId !== payload.workspaceId) {
- throw new BadRequestException('Workspace does not match');
- }
+ if (req.raw.workspaceId && req.raw.workspaceId !== payload.workspaceId) {
+ throw new UnauthorizedException('Workspace does not match');
}
const workspace = await this.workspaceRepo.findById(payload.workspaceId);
diff --git a/apps/server/src/core/comment/comment.service.ts b/apps/server/src/core/comment/comment.service.ts
index 48a5dd99..b1d4ae4c 100644
--- a/apps/server/src/core/comment/comment.service.ts
+++ b/apps/server/src/core/comment/comment.service.ts
@@ -20,7 +20,7 @@ export class CommentService {
) {}
async findById(commentId: string) {
- const comment = this.commentRepo.findById(commentId, {
+ const comment = await this.commentRepo.findById(commentId, {
includeCreator: true,
});
if (!comment) {
diff --git a/apps/server/src/core/core.module.ts b/apps/server/src/core/core.module.ts
index 17644634..a47a7b60 100644
--- a/apps/server/src/core/core.module.ts
+++ b/apps/server/src/core/core.module.ts
@@ -37,6 +37,7 @@ export class CoreModule implements NestModule {
.exclude(
{ path: 'auth/setup', method: RequestMethod.POST },
{ path: 'health', method: RequestMethod.GET },
+ { path: 'health/live', method: RequestMethod.GET },
)
.forRoutes('*');
}
diff --git a/apps/server/src/core/user/user.controller.ts b/apps/server/src/core/user/user.controller.ts
index eb8580cb..97779a58 100644
--- a/apps/server/src/core/user/user.controller.ts
+++ b/apps/server/src/core/user/user.controller.ts
@@ -12,19 +12,35 @@ import { AuthUser } from '../../common/decorators/auth-user.decorator';
import { JwtAuthGuard } from '../../common/guards/jwt-auth.guard';
import { AuthWorkspace } from '../../common/decorators/auth-workspace.decorator';
import { User, Workspace } from '@docmost/db/types/entity.types';
+import { WorkspaceRepo } from '@docmost/db/repos/workspace/workspace.repo';
@UseGuards(JwtAuthGuard)
@Controller('users')
export class UserController {
- constructor(private readonly userService: UserService) {}
+ constructor(
+ private readonly userService: UserService,
+ private readonly workspaceRepo: WorkspaceRepo,
+ ) {}
@HttpCode(HttpStatus.OK)
@Post('me')
- async getUserIno(
+ async getUserInfo(
@AuthUser() authUser: User,
@AuthWorkspace() workspace: Workspace,
) {
- return { user: authUser, workspace };
+ const memberCount = await this.workspaceRepo.getActiveUserCount(
+ workspace.id,
+ );
+
+ const { licenseKey, ...rest } = workspace;
+
+ const workspaceInfo = {
+ ...rest,
+ memberCount,
+ hasLicenseKey: Boolean(licenseKey),
+ };
+
+ return { user: authUser, workspace: workspaceInfo };
}
@HttpCode(HttpStatus.OK)
diff --git a/apps/server/src/core/workspace/controllers/workspace.controller.spec.ts b/apps/server/src/core/workspace/controllers/workspace.controller.spec.ts
deleted file mode 100644
index 6887b21b..00000000
--- a/apps/server/src/core/workspace/controllers/workspace.controller.spec.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import { Test, TestingModule } from '@nestjs/testing';
-import { WorkspaceController } from './workspace.controller';
-import { WorkspaceService } from '../services/workspace.service';
-
-describe('WorkspaceController', () => {
- let controller: WorkspaceController;
-
- beforeEach(async () => {
- const module: TestingModule = await Test.createTestingModule({
- controllers: [WorkspaceController],
- providers: [WorkspaceService],
- }).compile();
-
- controller = module.get(WorkspaceController);
- });
-
- it('should be defined', () => {
- expect(controller).toBeDefined();
- });
-});
diff --git a/apps/server/src/core/workspace/controllers/workspace.controller.ts b/apps/server/src/core/workspace/controllers/workspace.controller.ts
index 557f71e6..96a81362 100644
--- a/apps/server/src/core/workspace/controllers/workspace.controller.ts
+++ b/apps/server/src/core/workspace/controllers/workspace.controller.ts
@@ -33,6 +33,7 @@ import {
import { addDays } from 'date-fns';
import { FastifyReply } from 'fastify';
import { EnvironmentService } from '../../../integrations/environment/environment.service';
+import { CheckHostnameDto } from '../dto/check-hostname.dto';
@UseGuards(JwtAuthGuard)
@Controller('workspace')
@@ -60,7 +61,8 @@ export class WorkspaceController {
@HttpCode(HttpStatus.OK)
@Post('update')
async updateWorkspace(
- @Body() updateWorkspaceDto: UpdateWorkspaceDto,
+ @Res({ passthrough: true }) res: FastifyReply,
+ @Body() dto: UpdateWorkspaceDto,
@AuthUser() user: User,
@AuthWorkspace() workspace: Workspace,
) {
@@ -71,7 +73,21 @@ export class WorkspaceController {
throw new ForbiddenException();
}
- return this.workspaceService.update(workspace.id, updateWorkspaceDto);
+ const updatedWorkspace = await this.workspaceService.update(
+ workspace.id,
+ dto,
+ );
+
+ if (
+ dto.hostname &&
+ dto.hostname === updatedWorkspace.hostname &&
+ workspace.hostname !== updatedWorkspace.hostname
+ ) {
+ // log user out of old hostname
+ res.clearCookie('authToken');
+ }
+
+ return updatedWorkspace;
}
@HttpCode(HttpStatus.OK)
@@ -102,8 +118,6 @@ export class WorkspaceController {
) {
throw new ForbiddenException();
}
-
- return this.workspaceService.deactivateUser();
}
@HttpCode(HttpStatus.OK)
@@ -172,7 +186,7 @@ export class WorkspaceController {
return this.workspaceInvitationService.createInvitation(
inviteUserDto,
- workspace.id,
+ workspace,
user,
);
}
@@ -193,7 +207,7 @@ export class WorkspaceController {
return this.workspaceInvitationService.resendInvitation(
revokeInviteDto.invitationId,
- workspace.id,
+ workspace,
);
}
@@ -238,6 +252,13 @@ export class WorkspaceController {
});
}
+ @Public()
+ @HttpCode(HttpStatus.OK)
+ @Post('/check-hostname')
+ async checkHostname(@Body() checkHostnameDto: CheckHostnameDto) {
+ return this.workspaceService.checkHostname(checkHostnameDto.hostname);
+ }
+
@HttpCode(HttpStatus.OK)
@Post('invites/link')
async getInviteLink(
@@ -258,7 +279,7 @@ export class WorkspaceController {
const inviteLink =
await this.workspaceInvitationService.getInvitationLinkById(
inviteDto.invitationId,
- workspace.id,
+ workspace,
);
return { inviteLink };
diff --git a/apps/server/src/core/workspace/dto/check-hostname.dto.ts b/apps/server/src/core/workspace/dto/check-hostname.dto.ts
new file mode 100644
index 00000000..4b579d2a
--- /dev/null
+++ b/apps/server/src/core/workspace/dto/check-hostname.dto.ts
@@ -0,0 +1,8 @@
+import { MinLength } from 'class-validator';
+import { Transform, TransformFnParams } from 'class-transformer';
+
+export class CheckHostnameDto {
+ @MinLength(1)
+ @Transform(({ value }: TransformFnParams) => value?.trim())
+ hostname: string;
+}
diff --git a/apps/server/src/core/workspace/dto/create-workspace.dto.ts b/apps/server/src/core/workspace/dto/create-workspace.dto.ts
index 7ad04e36..178f1029 100644
--- a/apps/server/src/core/workspace/dto/create-workspace.dto.ts
+++ b/apps/server/src/core/workspace/dto/create-workspace.dto.ts
@@ -1,8 +1,14 @@
-import {IsAlphanumeric, IsOptional, IsString, MaxLength, MinLength} from 'class-validator';
-import {Transform, TransformFnParams} from "class-transformer";
+import {
+ IsAlphanumeric,
+ IsOptional,
+ IsString,
+ MaxLength,
+ MinLength,
+} from 'class-validator';
+import { Transform, TransformFnParams } from 'class-transformer';
export class CreateWorkspaceDto {
- @MinLength(4)
+ @MinLength(1)
@MaxLength(64)
@IsString()
@Transform(({ value }: TransformFnParams) => value?.trim())
@@ -12,6 +18,7 @@ export class CreateWorkspaceDto {
@MinLength(4)
@MaxLength(30)
@IsAlphanumeric()
+ @Transform(({ value }: TransformFnParams) => value?.trim().toLowerCase())
hostname?: string;
@IsOptional()
diff --git a/apps/server/src/core/workspace/dto/update-workspace.dto.ts b/apps/server/src/core/workspace/dto/update-workspace.dto.ts
index fc12a626..412a3a8c 100644
--- a/apps/server/src/core/workspace/dto/update-workspace.dto.ts
+++ b/apps/server/src/core/workspace/dto/update-workspace.dto.ts
@@ -1,9 +1,17 @@
import { PartialType } from '@nestjs/mapped-types';
import { CreateWorkspaceDto } from './create-workspace.dto';
-import { IsOptional, IsString } from 'class-validator';
+import { IsArray, IsBoolean, IsOptional, IsString } from 'class-validator';
export class UpdateWorkspaceDto extends PartialType(CreateWorkspaceDto) {
@IsOptional()
@IsString()
logo: string;
+
+ @IsOptional()
+ @IsArray()
+ emailDomains: string[];
+
+ @IsOptional()
+ @IsBoolean()
+ enforceSso: boolean;
}
diff --git a/apps/server/src/core/workspace/services/workspace-invitation.service.ts b/apps/server/src/core/workspace/services/workspace-invitation.service.ts
index 35a1f143..d7cb6bec 100644
--- a/apps/server/src/core/workspace/services/workspace-invitation.service.ts
+++ b/apps/server/src/core/workspace/services/workspace-invitation.service.ts
@@ -12,17 +12,18 @@ import { executeTx } from '@docmost/db/utils';
import {
Group,
User,
+ Workspace,
WorkspaceInvitation,
} from '@docmost/db/types/entity.types';
import { MailService } from '../../../integrations/mail/mail.service';
import InvitationEmail from '@docmost/transactional/emails/invitation-email';
import { GroupUserRepo } from '@docmost/db/repos/group/group-user.repo';
import InvitationAcceptedEmail from '@docmost/transactional/emails/invitation-accepted-email';
-import { EnvironmentService } from '../../../integrations/environment/environment.service';
import { TokenService } from '../../auth/services/token.service';
import { nanoIdGen } from '../../../common/helpers';
import { PaginationOptions } from '@docmost/db/pagination/pagination-options';
import { executeWithPagination } from '@docmost/db/pagination/pagination';
+import { DomainService } from 'src/integrations/environment/domain.service';
@Injectable()
export class WorkspaceInvitationService {
@@ -31,7 +32,7 @@ export class WorkspaceInvitationService {
private userRepo: UserRepo,
private groupUserRepo: GroupUserRepo,
private mailService: MailService,
- private environmentService: EnvironmentService,
+ private domainService: DomainService,
private tokenService: TokenService,
@InjectKysely() private readonly db: KyselyDB,
) {}
@@ -88,7 +89,7 @@ export class WorkspaceInvitationService {
async createInvitation(
inviteUserDto: InviteUserDto,
- workspaceId: string,
+ workspace: Workspace,
authUser: User,
): Promise {
const { emails, role, groupIds } = inviteUserDto;
@@ -102,7 +103,7 @@ export class WorkspaceInvitationService {
.selectFrom('users')
.select(['email'])
.where('users.email', 'in', emails)
- .where('users.workspaceId', '=', workspaceId)
+ .where('users.workspaceId', '=', workspace.id)
.execute();
let existingUserEmails = [];
@@ -121,7 +122,7 @@ export class WorkspaceInvitationService {
.selectFrom('groups')
.select(['id', 'name'])
.where('groups.id', 'in', groupIds)
- .where('groups.workspaceId', '=', workspaceId)
+ .where('groups.workspaceId', '=', workspace.id)
.execute();
}
@@ -129,7 +130,7 @@ export class WorkspaceInvitationService {
email: email,
role: role,
token: nanoIdGen(16),
- workspaceId: workspaceId,
+ workspaceId: workspace.id,
invitedById: authUser.id,
groupIds: validGroups?.map((group: Partial) => group.id),
}));
@@ -156,6 +157,7 @@ export class WorkspaceInvitationService {
invitation.email,
invitation.token,
authUser.name,
+ workspace.hostname,
);
});
}
@@ -269,13 +271,13 @@ export class WorkspaceInvitationService {
async resendInvitation(
invitationId: string,
- workspaceId: string,
+ workspace: Workspace,
): Promise {
const invitation = await this.db
.selectFrom('workspaceInvitations')
.selectAll()
.where('id', '=', invitationId)
- .where('workspaceId', '=', workspaceId)
+ .where('workspaceId', '=', workspace.id)
.executeTakeFirst();
if (!invitation) {
@@ -284,7 +286,7 @@ export class WorkspaceInvitationService {
const invitedByUser = await this.userRepo.findById(
invitation.invitedById,
- workspaceId,
+ workspace.id,
);
await this.sendInvitationMail(
@@ -292,6 +294,7 @@ export class WorkspaceInvitationService {
invitation.email,
invitation.token,
invitedByUser.name,
+ workspace.hostname,
);
}
@@ -308,17 +311,23 @@ export class WorkspaceInvitationService {
async getInvitationLinkById(
invitationId: string,
- workspaceId: string,
+ workspace: Workspace,
): Promise {
- const token = await this.getInvitationTokenById(invitationId, workspaceId);
- return this.buildInviteLink(invitationId, token.token);
+ const token = await this.getInvitationTokenById(invitationId, workspace.id);
+ return this.buildInviteLink({
+ invitationId,
+ inviteToken: token.token,
+ hostname: workspace.hostname,
+ });
}
- async buildInviteLink(
- invitationId: string,
- inviteToken: string,
- ): Promise {
- return `${this.environmentService.getAppUrl()}/invites/${invitationId}?token=${inviteToken}`;
+ async buildInviteLink(opts: {
+ invitationId: string;
+ inviteToken: string;
+ hostname?: string;
+ }): Promise {
+ const { invitationId, inviteToken, hostname } = opts;
+ return `${this.domainService.getUrl(hostname)}/invites/${invitationId}?token=${inviteToken}`;
}
async sendInvitationMail(
@@ -326,8 +335,13 @@ export class WorkspaceInvitationService {
inviteeEmail: string,
inviteToken: string,
invitedByName: string,
+ hostname?: string,
): Promise {
- const inviteLink = await this.buildInviteLink(invitationId, inviteToken);
+ const inviteLink = await this.buildInviteLink({
+ invitationId,
+ inviteToken,
+ hostname,
+ });
const emailTemplate = InvitationEmail({
inviteLink,
diff --git a/apps/server/src/core/workspace/services/workspace.service.ts b/apps/server/src/core/workspace/services/workspace.service.ts
index e81ba47b..f515c172 100644
--- a/apps/server/src/core/workspace/services/workspace.service.ts
+++ b/apps/server/src/core/workspace/services/workspace.service.ts
@@ -21,6 +21,11 @@ import { PaginationOptions } from '@docmost/db/pagination/pagination-options';
import { PaginationResult } from '@docmost/db/pagination/pagination';
import { UpdateWorkspaceUserRoleDto } from '../dto/update-workspace-user-role.dto';
import { UserRepo } from '@docmost/db/repos/user/user.repo';
+import { EnvironmentService } from '../../../integrations/environment/environment.service';
+import { DomainService } from '../../../integrations/environment/domain.service';
+import { jsonArrayFrom } from 'kysely/helpers/postgres';
+import { addDays } from 'date-fns';
+import { DISALLOWED_HOSTNAMES, WorkspaceStatus } from '../workspace.constants';
@Injectable()
export class WorkspaceService {
@@ -31,6 +36,8 @@ export class WorkspaceService {
private groupRepo: GroupRepo,
private groupUserRepo: GroupUserRepo,
private userRepo: UserRepo,
+ private environmentService: EnvironmentService,
+ private domainService: DomainService,
@InjectKysely() private readonly db: KyselyDB,
) {}
@@ -39,7 +46,7 @@ export class WorkspaceService {
}
async getWorkspaceInfo(workspaceId: string) {
- const workspace = this.workspaceRepo.findById(workspaceId);
+ const workspace = await this.workspaceRepo.findById(workspaceId);
if (!workspace) {
throw new NotFoundException('Workspace not found');
}
@@ -50,14 +57,33 @@ export class WorkspaceService {
async getWorkspacePublicData(workspaceId: string) {
const workspace = await this.db
.selectFrom('workspaces')
- .select(['id'])
+ .select(['id', 'name', 'logo', 'hostname', 'enforceSso', 'licenseKey'])
+ .select((eb) =>
+ jsonArrayFrom(
+ eb
+ .selectFrom('authProviders')
+ .select([
+ 'authProviders.id',
+ 'authProviders.name',
+ 'authProviders.type',
+ ])
+ .where('authProviders.isEnabled', '=', true)
+ .where('workspaceId', '=', workspaceId),
+ ).as('authProviders'),
+ )
.where('id', '=', workspaceId)
.executeTakeFirst();
+
if (!workspace) {
throw new NotFoundException('Workspace not found');
}
- return workspace;
+ const { licenseKey, ...rest } = workspace;
+
+ return {
+ ...rest,
+ hasLicenseKey: Boolean(licenseKey),
+ };
}
async create(
@@ -68,12 +94,33 @@ export class WorkspaceService {
return await executeTx(
this.db,
async (trx) => {
+ let hostname = undefined;
+ let trialEndAt = undefined;
+ let status = undefined;
+ let plan = undefined;
+
+ if (this.environmentService.isCloud()) {
+ // generate unique hostname
+ hostname = await this.generateHostname(
+ createWorkspaceDto.hostname ?? createWorkspaceDto.name,
+ );
+ trialEndAt = addDays(
+ new Date(),
+ this.environmentService.getBillingTrialDays(),
+ );
+ status = WorkspaceStatus.Active;
+ plan = 'standard';
+ }
+
// create workspace
const workspace = await this.workspaceRepo.insertWorkspace(
{
name: createWorkspaceDto.name,
- hostname: createWorkspaceDto.hostname,
description: createWorkspaceDto.description,
+ hostname,
+ status,
+ trialEndAt,
+ plan,
},
trx,
);
@@ -91,6 +138,7 @@ export class WorkspaceService {
workspaceId: workspace.id,
role: UserRole.OWNER,
})
+ .where('users.id', '=', user.id)
.execute();
// add user to default group created above
@@ -182,21 +230,54 @@ export class WorkspaceService {
}
async update(workspaceId: string, updateWorkspaceDto: UpdateWorkspaceDto) {
- const workspace = await this.workspaceRepo.findById(workspaceId);
- if (!workspace) {
- throw new NotFoundException('Workspace not found');
+ if (updateWorkspaceDto.enforceSso) {
+ const sso = await this.db
+ .selectFrom('authProviders')
+ .selectAll()
+ .where('isEnabled', '=', true)
+ .where('workspaceId', '=', workspaceId)
+ .execute();
+
+ if (sso && sso?.length === 0) {
+ throw new BadRequestException(
+ 'There must be at least one active SSO provider to enforce SSO.',
+ );
+ }
}
- if (updateWorkspaceDto.name) {
- workspace.name = updateWorkspaceDto.name;
+ if (updateWorkspaceDto.emailDomains) {
+ const regex =
+ /(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9][a-z0-9-]{0,61}[a-z0-9]/;
+
+ const emailDomains = updateWorkspaceDto.emailDomains || [];
+
+ updateWorkspaceDto.emailDomains = emailDomains
+ .map((domain) => regex.exec(domain)?.[0])
+ .filter(Boolean);
}
- if (updateWorkspaceDto.logo) {
- workspace.logo = updateWorkspaceDto.logo;
+ if (updateWorkspaceDto.hostname) {
+ const hostname = updateWorkspaceDto.hostname;
+ if (DISALLOWED_HOSTNAMES.includes(hostname)) {
+ throw new BadRequestException('Hostname already exists.');
+ }
+ if (await this.workspaceRepo.hostnameExists(hostname)) {
+ throw new BadRequestException('Hostname already exists.');
+ }
}
await this.workspaceRepo.updateWorkspace(updateWorkspaceDto, workspaceId);
- return workspace;
+
+ const workspace = await this.workspaceRepo.findById(workspaceId, {
+ withMemberCount: true,
+ withLicenseKey: true,
+ });
+
+ const { licenseKey, ...rest } = workspace;
+ return {
+ ...rest,
+ hasLicenseKey: Boolean(licenseKey),
+ };
}
async getWorkspaceUsers(
@@ -256,7 +337,53 @@ export class WorkspaceService {
);
}
- async deactivateUser(): Promise {
- return 'todo';
+ async generateHostname(
+ name: string,
+ trx?: KyselyTransaction,
+ ): Promise {
+ const generateRandomSuffix = (length: number) =>
+ Math.random()
+ .toFixed(length)
+ .substring(2, 2 + length);
+
+ let subdomain = name
+ .toLowerCase()
+ .replace(/[^a-z0-9]/g, '')
+ .substring(0, 20);
+ // Ensure we leave room for a random suffix.
+ const maxSuffixLength = 3;
+
+ if (subdomain.length < 4) {
+ subdomain = `${subdomain}-${generateRandomSuffix(maxSuffixLength)}`;
+ }
+
+ if (DISALLOWED_HOSTNAMES.includes(subdomain)) {
+ subdomain = `myworkspace-${generateRandomSuffix(maxSuffixLength)}`;
+ }
+
+ let uniqueHostname = subdomain;
+
+ while (true) {
+ const exists = await this.workspaceRepo.hostnameExists(
+ uniqueHostname,
+ trx,
+ );
+ if (!exists) {
+ break;
+ }
+ // Append a random suffix and retry.
+ const randomSuffix = generateRandomSuffix(maxSuffixLength);
+ uniqueHostname = `${subdomain}-${randomSuffix}`.substring(0, 25);
+ }
+
+ return uniqueHostname;
+ }
+
+ async checkHostname(hostname: string) {
+ const exists = await this.workspaceRepo.hostnameExists(hostname);
+ if (!exists) {
+ throw new NotFoundException('Hostname not found');
+ }
+ return { hostname: this.domainService.getUrl(hostname) };
}
}
diff --git a/apps/server/src/core/workspace/workspace.constants.ts b/apps/server/src/core/workspace/workspace.constants.ts
new file mode 100644
index 00000000..d5ca7fd8
--- /dev/null
+++ b/apps/server/src/core/workspace/workspace.constants.ts
@@ -0,0 +1,117 @@
+export enum WorkspaceStatus {
+ Active = 'active',
+ Suspended = 'suspended',
+}
+
+export const DISALLOWED_HOSTNAMES = [
+ 'app',
+ 'help',
+ 'account',
+ 'billing',
+ 'docs',
+ 'blog',
+ 'status',
+ 'payment',
+ 'updates',
+ 'license',
+ 'customer',
+ 'customers',
+ 'dashboard',
+ 'docmost',
+ 'support',
+ 'admin',
+ 'about',
+ 'team',
+ 'analytics',
+ 'data',
+ 'dev',
+ 'development',
+ 'staging',
+ 'wiki',
+ 'www',
+ 'login',
+ 'signup',
+ 'signin',
+ 'register',
+ 'abuse',
+ 'general',
+ 'update',
+ 'updates',
+ 'upgrade',
+ 'upgrades',
+ 'api',
+ 'server',
+ 'servers',
+ 'service',
+ 'user',
+ 'upload',
+ 'uploads',
+ 'version',
+ 'translate',
+ 'translation',
+ 'translations',
+ 'translator',
+ 'setup',
+ 'share',
+ 'setting',
+ 'settings',
+ 'security',
+ 'shop',
+ 'store',
+ 'prod',
+ 'plan',
+ 'plans',
+ 'plugin',
+ 'plugins',
+ 'mail',
+ 'email',
+ 'checkout',
+ 'checkouts',
+ 'client',
+ 'career',
+ 'job',
+ 'jobs',
+ 'careers',
+ 'account',
+ 'accounts',
+ 'host',
+ 'connect',
+ 'contact',
+ 'core',
+ 'embed',
+ 'founder',
+ 'guide',
+ 'guides',
+ 'smtp',
+ 'imap',
+ 'lab',
+ 'collab',
+ 'collaboration',
+ 'ws',
+ 'websocket',
+ 'community',
+ 'forum',
+ 'forums',
+ 'wikis',
+ 'files',
+ 'app',
+ 'assets',
+ 'news',
+ 'jobs',
+ 'careers',
+ 'can',
+ 'demo',
+ 'logs',
+ 'dash',
+ 'auth',
+ 'organization',
+ 'org',
+ 'db',
+ 'database',
+ 'notes',
+ 'download',
+ 'workspace',
+ 'space',
+ 'group',
+ 'members',
+];
diff --git a/apps/server/src/database/database.module.ts b/apps/server/src/database/database.module.ts
index cfce123a..ff389763 100644
--- a/apps/server/src/database/database.module.ts
+++ b/apps/server/src/database/database.module.ts
@@ -3,7 +3,7 @@ import {
Logger,
Module,
OnApplicationBootstrap,
- OnModuleDestroy,
+ BeforeApplicationShutdown,
} from '@nestjs/common';
import { InjectKysely, KyselyModule } from 'nestjs-kysely';
import { EnvironmentService } from '../integrations/environment/environment.service';
@@ -38,6 +38,7 @@ types.setTypeParser(types.builtins.INT8, (val) => Number(val));
dialect: new PostgresDialect({
pool: new Pool({
connectionString: environmentService.getDatabaseURL(),
+ max: environmentService.getDatabaseMaxPool(),
}).on('error', (err) => {
console.error('Database error:', err.message);
}),
@@ -86,7 +87,9 @@ types.setTypeParser(types.builtins.INT8, (val) => Number(val));
BacklinkRepo,
],
})
-export class DatabaseModule implements OnModuleDestroy, OnApplicationBootstrap {
+export class DatabaseModule
+ implements OnApplicationBootstrap, BeforeApplicationShutdown
+{
private readonly logger = new Logger(DatabaseModule.name);
constructor(
@@ -103,7 +106,7 @@ export class DatabaseModule implements OnModuleDestroy, OnApplicationBootstrap {
}
}
- async onModuleDestroy(): Promise {
+ async beforeApplicationShutdown(): Promise {
if (this.db) {
await this.db.destroy();
}
diff --git a/apps/server/src/database/migrations/20250106T195516-billing.ts b/apps/server/src/database/migrations/20250106T195516-billing.ts
new file mode 100644
index 00000000..3624442b
--- /dev/null
+++ b/apps/server/src/database/migrations/20250106T195516-billing.ts
@@ -0,0 +1,83 @@
+import { type Kysely, sql } from 'kysely';
+
+export async function up(db: Kysely): Promise {
+ await db.schema
+ .createTable('billing')
+ .addColumn('id', 'uuid', (col) =>
+ col.primaryKey().defaultTo(sql`gen_uuid_v7()`),
+ )
+ .addColumn('stripe_subscription_id', 'varchar', (col) => col.notNull())
+ .addColumn('stripe_customer_id', 'varchar', (col) => col)
+ .addColumn('status', 'varchar', (col) => col.notNull())
+ .addColumn('quantity', 'int8', (col) => col)
+ .addColumn('amount', 'int8', (col) => col)
+ .addColumn('interval', 'varchar', (col) => col)
+ .addColumn('currency', 'varchar', (col) => col)
+ .addColumn('metadata', 'jsonb', (col) => col)
+
+ .addColumn('stripe_price_id', 'varchar', (col) => col)
+ .addColumn('stripe_item_id', 'varchar', (col) => col)
+ .addColumn('stripe_product_id', 'varchar', (col) => col)
+
+ .addColumn('period_start_at', 'timestamptz', (col) => col.notNull())
+ .addColumn('period_end_at', 'timestamptz', (col) => col)
+
+ .addColumn('cancel_at_period_end', 'boolean', (col) => col)
+ .addColumn('cancel_at', 'timestamptz', (col) => col)
+ .addColumn('canceled_at', 'timestamptz', (col) => col)
+ .addColumn('ended_at', 'timestamptz', (col) => col)
+
+ .addColumn('workspace_id', 'uuid', (col) =>
+ col.references('workspaces.id').onDelete('cascade').notNull(),
+ )
+ .addColumn('created_at', 'timestamptz', (col) =>
+ col.notNull().defaultTo(sql`now()`),
+ )
+ .addColumn('updated_at', 'timestamptz', (col) =>
+ col.notNull().defaultTo(sql`now()`),
+ )
+ .addColumn('deleted_at', 'timestamptz', (col) => col)
+ .execute();
+
+ await db.schema
+ .alterTable('billing')
+ .addUniqueConstraint('billing_stripe_subscription_id_unique', [
+ 'stripe_subscription_id',
+ ])
+ .execute();
+
+ // add new workspace columns
+ await db.schema
+ .alterTable('workspaces')
+ .addColumn('stripe_customer_id', 'varchar', (col) => col)
+ .addColumn('status', 'varchar', (col) => col)
+ .addColumn('plan', 'varchar', (col) => col)
+ .addColumn('billing_email', 'varchar', (col) => col)
+ .addColumn('trial_end_at', 'timestamptz', (col) => col)
+ .execute();
+
+ await db.schema
+ .alterTable('workspaces')
+ .addUniqueConstraint('workspaces_stripe_customer_id_unique', [
+ 'stripe_customer_id',
+ ])
+ .execute();
+}
+
+export async function down(db: Kysely): Promise {
+ await db.schema.dropTable('billing').execute();
+
+ await db.schema
+ .alterTable('workspaces')
+ .dropColumn('stripe_customer_id')
+ .execute();
+
+ await db.schema.alterTable('workspaces').dropColumn('status').execute();
+
+ await db.schema
+ .alterTable('workspaces')
+ .dropColumn('billing_email')
+ .execute();
+
+ await db.schema.alterTable('workspaces').dropColumn('trial_end_at').execute();
+}
diff --git a/apps/server/src/database/migrations/20250118T194658-sso-auth.ts b/apps/server/src/database/migrations/20250118T194658-sso-auth.ts
new file mode 100644
index 00000000..1464d844
--- /dev/null
+++ b/apps/server/src/database/migrations/20250118T194658-sso-auth.ts
@@ -0,0 +1,86 @@
+import { type Kysely, sql } from 'kysely';
+
+export async function up(db: Kysely): Promise {
+ await db.schema
+ .createType('auth_provider_type')
+ .asEnum(['saml', 'oidc', 'google'])
+ .execute();
+
+ await db.schema
+ .createTable('auth_providers')
+ .addColumn('id', 'uuid', (col) =>
+ col.primaryKey().defaultTo(sql`gen_uuid_v7()`),
+ )
+ .addColumn('name', 'varchar', (col) => col.notNull())
+ .addColumn('type', sql`auth_provider_type`, (col) => col.notNull())
+
+ // SAML
+ .addColumn('saml_url', 'varchar', (col) => col)
+ .addColumn('saml_certificate', 'varchar', (col) => col)
+
+ // OIDC
+ .addColumn('oidc_issuer', 'varchar', (col) => col)
+ .addColumn('oidc_client_id', 'varchar', (col) => col)
+ .addColumn('oidc_client_secret', 'varchar', (col) => col)
+
+ .addColumn('allow_signup', 'boolean', (col) =>
+ col.defaultTo(false).notNull(),
+ )
+ .addColumn('is_enabled', 'boolean', (col) => col.defaultTo(false).notNull())
+ .addColumn('creator_id', 'uuid', (col) =>
+ col.references('users.id').onDelete('set null'),
+ )
+ .addColumn('workspace_id', 'uuid', (col) =>
+ col.references('workspaces.id').onDelete('cascade').notNull(),
+ )
+ .addColumn('created_at', 'timestamptz', (col) =>
+ col.notNull().defaultTo(sql`now()`),
+ )
+ .addColumn('updated_at', 'timestamptz', (col) =>
+ col.notNull().defaultTo(sql`now()`),
+ )
+ .addColumn('deleted_at', 'timestamptz', (col) => col)
+ .execute();
+
+ await db.schema
+ .createTable('auth_accounts')
+ .addColumn('id', 'uuid', (col) =>
+ col.primaryKey().defaultTo(sql`gen_uuid_v7()`),
+ )
+ .addColumn('user_id', 'uuid', (col) =>
+ col.references('users.id').onDelete('cascade').notNull(),
+ )
+ .addColumn('provider_user_id', 'varchar', (col) => col.notNull())
+ .addColumn('auth_provider_id', 'uuid', (col) =>
+ col.references('auth_providers.id').onDelete('cascade'),
+ )
+ .addColumn('workspace_id', 'uuid', (col) =>
+ col.references('workspaces.id').onDelete('cascade').notNull(),
+ )
+ .addColumn('created_at', 'timestamptz', (col) =>
+ col.notNull().defaultTo(sql`now()`),
+ )
+ .addColumn('updated_at', 'timestamptz', (col) =>
+ col.notNull().defaultTo(sql`now()`),
+ )
+ .addColumn('deleted_at', 'timestamptz', (col) => col)
+ .addUniqueConstraint('auth_accounts_user_id_auth_provider_id_unique', [
+ 'user_id',
+ 'auth_provider_id',
+ ])
+ .execute();
+
+ await db.schema
+ .alterTable('workspaces')
+ .addColumn('enforce_sso', 'boolean', (col) =>
+ col.defaultTo(false).notNull(),
+ )
+ .execute();
+}
+
+export async function down(db: Kysely): Promise {
+ await db.schema.dropTable('auth_accounts').execute();
+ await db.schema.dropTable('auth_providers').execute();
+ await db.schema.alterTable('workspaces').dropColumn('enforce_sso').execute();
+ await db.schema.dropType('auth_provider_type').execute();
+}
diff --git a/apps/server/src/database/migrations/20250222T114520-add_license_key_to_workspace.ts b/apps/server/src/database/migrations/20250222T114520-add_license_key_to_workspace.ts
new file mode 100644
index 00000000..6b9d7826
--- /dev/null
+++ b/apps/server/src/database/migrations/20250222T114520-add_license_key_to_workspace.ts
@@ -0,0 +1,12 @@
+import { type Kysely } from 'kysely';
+
+export async function up(db: Kysely): Promise {
+ await db.schema
+ .alterTable('workspaces')
+ .addColumn('license_key', 'varchar', (col) => col)
+ .execute();
+}
+
+export async function down(db: Kysely): Promise {
+ await db.schema.alterTable('workspaces').dropColumn('license_key').execute();
+}
diff --git a/apps/server/src/database/repos/user/user.repo.ts b/apps/server/src/database/repos/user/user.repo.ts
index cebb7897..fdf8c0c2 100644
--- a/apps/server/src/database/repos/user/user.repo.ts
+++ b/apps/server/src/database/repos/user/user.repo.ts
@@ -56,12 +56,16 @@ export class UserRepo {
async findByEmail(
email: string,
workspaceId: string,
- includePassword?: boolean,
+ opts?: {
+ includePassword?: boolean;
+ trx?: KyselyTransaction;
+ },
): Promise {
- return this.db
+ const db = dbOrTx(this.db, opts?.trx);
+ return db
.selectFrom('users')
.select(this.baseFields)
- .$if(includePassword, (qb) => qb.select('password'))
+ .$if(opts?.includePassword, (qb) => qb.select('password'))
.where(sql`LOWER(email)`, '=', sql`LOWER(${email})`)
.where('workspaceId', '=', workspaceId)
.executeTakeFirst();
@@ -112,7 +116,7 @@ export class UserRepo {
return db
.insertInto('users')
.values({ ...insertableUser, ...user })
- .returningAll()
+ .returning(this.baseFields)
.executeTakeFirst();
}
@@ -172,31 +176,4 @@ export class UserRepo {
.returning(this.baseFields)
.executeTakeFirst();
}
-
- /*
- async getSpaceIds(
- workspaceId: string,
- pagination: PaginationOptions,
- ): Promise> {
- const spaces = await this.spaceRepo.getSpacesInWorkspace(
- workspaceId,
- pagination,
- );
-
- return spaces;
- }
-
- async getUserSpaces(
- workspaceId: string,
- pagination: PaginationOptions,
- ): Promise> {
- const spaces = await this.spaceRepo.getSpacesInWorkspace(
- workspaceId,
- pagination,
- );
-
- return spaces;
- }
-
- */
}
diff --git a/apps/server/src/database/repos/workspace/workspace.repo.ts b/apps/server/src/database/repos/workspace/workspace.repo.ts
index 7f8a0fdb..a38d02a7 100644
--- a/apps/server/src/database/repos/workspace/workspace.repo.ts
+++ b/apps/server/src/database/repos/workspace/workspace.repo.ts
@@ -7,25 +7,63 @@ import {
UpdatableWorkspace,
Workspace,
} from '@docmost/db/types/entity.types';
-import { sql } from 'kysely';
+import { ExpressionBuilder, sql } from 'kysely';
+import { DB, Workspaces } from '@docmost/db/types/db';
@Injectable()
export class WorkspaceRepo {
+ public baseFields: Array = [
+ 'id',
+ 'name',
+ 'description',
+ 'logo',
+ 'hostname',
+ 'customDomain',
+ 'settings',
+ 'defaultRole',
+ 'emailDomains',
+ 'defaultSpaceId',
+ 'createdAt',
+ 'updatedAt',
+ 'deletedAt',
+ 'stripeCustomerId',
+ 'status',
+ 'billingEmail',
+ 'trialEndAt',
+ 'enforceSso',
+ 'plan',
+ ];
constructor(@InjectKysely() private readonly db: KyselyDB) {}
async findById(
workspaceId: string,
opts?: {
+ withLock?: boolean;
+ withMemberCount?: boolean;
+ withLicenseKey?: boolean;
trx?: KyselyTransaction;
},
): Promise {
const db = dbOrTx(this.db, opts?.trx);
- return db
+ let query = db
.selectFrom('workspaces')
- .selectAll()
- .where('id', '=', workspaceId)
- .executeTakeFirst();
+ .select(this.baseFields)
+ .where('id', '=', workspaceId);
+
+ if (opts?.withMemberCount) {
+ query = query.select(this.withMemberCount);
+ }
+
+ if (opts?.withLicenseKey) {
+ query = query.select('licenseKey');
+ }
+
+ if (opts?.withLock && opts?.trx) {
+ query = query.forUpdate();
+ }
+
+ return query.executeTakeFirst();
}
async findFirst(): Promise {
@@ -45,17 +83,34 @@ export class WorkspaceRepo {
.executeTakeFirst();
}
+ async hostnameExists(
+ hostname: string,
+ trx?: KyselyTransaction,
+ ): Promise {
+ if (hostname?.length < 1) return false;
+
+ const db = dbOrTx(this.db, trx);
+ let { count } = await db
+ .selectFrom('workspaces')
+ .select((eb) => eb.fn.count('id').as('count'))
+ .where(sql`LOWER(hostname)`, '=', sql`LOWER(${hostname})`)
+ .executeTakeFirst();
+ count = count as number;
+ return count != 0;
+ }
+
async updateWorkspace(
updatableWorkspace: UpdatableWorkspace,
workspaceId: string,
trx?: KyselyTransaction,
- ) {
+ ): Promise {
const db = dbOrTx(this.db, trx);
return db
.updateTable('workspaces')
.set({ ...updatableWorkspace, updatedAt: new Date() })
.where('id', '=', workspaceId)
- .execute();
+ .returning(this.baseFields)
+ .executeTakeFirst();
}
async insertWorkspace(
@@ -66,7 +121,7 @@ export class WorkspaceRepo {
return db
.insertInto('workspaces')
.values(insertableWorkspace)
- .returningAll()
+ .returning(this.baseFields)
.executeTakeFirst();
}
@@ -77,4 +132,28 @@ export class WorkspaceRepo {
.executeTakeFirst();
return count as number;
}
+
+ withMemberCount(eb: ExpressionBuilder) {
+ return eb
+ .selectFrom('users')
+ .select((eb) => eb.fn.countAll().as('count'))
+ .where('users.deactivatedAt', 'is', null)
+ .where('users.deletedAt', 'is', null)
+ .whereRef('users.workspaceId', '=', 'workspaces.id')
+ .as('memberCount');
+ }
+
+ async getActiveUserCount(workspaceId: string): Promise {
+ const users = await this.db
+ .selectFrom('users')
+ .select(['id', 'deactivatedAt', 'deletedAt'])
+ .where('workspaceId', '=', workspaceId)
+ .execute();
+
+ const activeUsers = users.filter(
+ (user) => user.deletedAt === null && user.deactivatedAt === null,
+ );
+
+ return activeUsers.length;
+ }
}
diff --git a/apps/server/src/database/types/db.d.ts b/apps/server/src/database/types/db.d.ts
index c2596c91..f9022ecd 100644
--- a/apps/server/src/database/types/db.d.ts
+++ b/apps/server/src/database/types/db.d.ts
@@ -5,6 +5,8 @@
import type { ColumnType } from "kysely";
+export type AuthProviderType = "google" | "oidc" | "saml";
+
export type Generated = T extends ColumnType
? ColumnType
: ColumnType;
@@ -42,6 +44,35 @@ export interface Attachments {
workspaceId: string;
}
+export interface AuthAccounts {
+ authProviderId: string | null;
+ createdAt: Generated;
+ deletedAt: Timestamp | null;
+ id: Generated;
+ providerUserId: string;
+ updatedAt: Generated;
+ userId: string;
+ workspaceId: string;
+}
+
+export interface AuthProviders {
+ allowSignup: Generated;
+ createdAt: Generated;
+ creatorId: string | null;
+ deletedAt: Timestamp | null;
+ id: Generated;
+ isEnabled: Generated;
+ name: string;
+ oidcClientId: string | null;
+ oidcClientSecret: string | null;
+ oidcIssuer: string | null;
+ samlCertificate: string | null;
+ samlUrl: string | null;
+ type: AuthProviderType;
+ updatedAt: Generated;
+ workspaceId: string;
+}
+
export interface Backlinks {
createdAt: Generated;
id: Generated;
@@ -51,6 +82,31 @@ export interface Backlinks {
workspaceId: string;
}
+export interface Billing {
+ amount: Int8 | null;
+ cancelAt: Timestamp | null;
+ cancelAtPeriodEnd: boolean | null;
+ canceledAt: Timestamp | null;
+ createdAt: Generated;
+ currency: string | null;
+ deletedAt: Timestamp | null;
+ endedAt: Timestamp | null;
+ id: Generated;
+ interval: string | null;
+ metadata: Json | null;
+ periodEndAt: Timestamp | null;
+ periodStartAt: Timestamp;
+ quantity: Int8 | null;
+ status: string;
+ stripeCustomerId: string | null;
+ stripeItemId: string | null;
+ stripePriceId: string | null;
+ stripeProductId: string | null;
+ stripeSubscriptionId: string;
+ updatedAt: Generated;
+ workspaceId: string;
+}
+
export interface Comments {
content: Json | null;
createdAt: Generated;
@@ -198,6 +254,7 @@ export interface WorkspaceInvitations {
}
export interface Workspaces {
+ billingEmail: string | null;
createdAt: Generated;
customDomain: string | null;
defaultRole: Generated;
@@ -205,17 +262,26 @@ export interface Workspaces {
deletedAt: Timestamp | null;
description: string | null;
emailDomains: Generated;
+ enforceSso: Generated;
hostname: string | null;
id: Generated;
+ licenseKey: string | null;
logo: string | null;
name: string | null;
+ plan: string | null;
settings: Json | null;
+ status: string | null;
+ stripeCustomerId: string | null;
+ trialEndAt: Timestamp | null;
updatedAt: Generated;
}
export interface DB {
attachments: Attachments;
+ authAccounts: AuthAccounts;
+ authProviders: AuthProviders;
backlinks: Backlinks;
+ billing: Billing;
comments: Comments;
groups: Groups;
groupUsers: GroupUsers;
diff --git a/apps/server/src/database/types/entity.types.ts b/apps/server/src/database/types/entity.types.ts
index b852459c..8abd9f98 100644
--- a/apps/server/src/database/types/entity.types.ts
+++ b/apps/server/src/database/types/entity.types.ts
@@ -13,6 +13,9 @@ import {
WorkspaceInvitations,
UserTokens,
Backlinks,
+ Billing as BillingSubscription,
+ AuthProviders,
+ AuthAccounts,
} from './db';
// Workspace
@@ -83,3 +86,18 @@ export type UpdatableUserToken = Updateable>;
export type Backlink = Selectable;
export type InsertableBacklink = Insertable;
export type UpdatableBacklink = Updateable>;
+
+// Billing
+export type Billing = Selectable;
+export type InsertableBilling = Insertable;
+export type UpdatableBilling = Updateable>;
+
+// Auth Provider
+export type AuthProvider = Selectable;
+export type InsertableAuthProvider = Insertable;
+export type UpdatableAuthProvider = Updateable>;
+
+// Auth Account
+export type AuthAccount = Selectable;
+export type InsertableAuthAccount = Insertable;
+export type UpdatableAuthAccount = Updateable>;
diff --git a/apps/server/src/ee b/apps/server/src/ee
new file mode 160000
index 00000000..db81c76c
--- /dev/null
+++ b/apps/server/src/ee
@@ -0,0 +1 @@
+Subproject commit db81c76c700a3a548efb89a84813278e2c3f8ae2
diff --git a/apps/server/src/integrations/environment/domain.service.ts b/apps/server/src/integrations/environment/domain.service.ts
new file mode 100644
index 00000000..fa6b1778
--- /dev/null
+++ b/apps/server/src/integrations/environment/domain.service.ts
@@ -0,0 +1,21 @@
+import { Injectable } from '@nestjs/common';
+import { EnvironmentService } from './environment.service';
+
+@Injectable()
+export class DomainService {
+ constructor(private environmentService: EnvironmentService) {}
+
+ getUrl(hostname?: string): string {
+ if (!this.environmentService.isCloud()) {
+ return this.environmentService.getAppUrl();
+ }
+
+ const domain = this.environmentService.getSubdomainHost();
+ if (!hostname || !domain) {
+ return this.environmentService.getAppUrl();
+ }
+
+ const protocol = this.environmentService.isHttps() ? 'https' : 'http';
+ return `${protocol}://${hostname}.${domain}`;
+ }
+}
diff --git a/apps/server/src/integrations/environment/environment.module.ts b/apps/server/src/integrations/environment/environment.module.ts
index 61c388aa..ac41aaf1 100644
--- a/apps/server/src/integrations/environment/environment.module.ts
+++ b/apps/server/src/integrations/environment/environment.module.ts
@@ -3,6 +3,7 @@ import { EnvironmentService } from './environment.service';
import { ConfigModule } from '@nestjs/config';
import { validate } from './environment.validation';
import { envPath } from '../../common/helpers';
+import { DomainService } from './domain.service';
@Global()
@Module({
@@ -14,7 +15,7 @@ import { envPath } from '../../common/helpers';
validate,
}),
],
- providers: [EnvironmentService],
- exports: [EnvironmentService],
+ providers: [EnvironmentService, DomainService],
+ exports: [EnvironmentService, DomainService],
})
export class EnvironmentModule {}
diff --git a/apps/server/src/integrations/environment/environment.service.ts b/apps/server/src/integrations/environment/environment.service.ts
index d6913ab0..6854184e 100644
--- a/apps/server/src/integrations/environment/environment.service.ts
+++ b/apps/server/src/integrations/environment/environment.service.ts
@@ -10,10 +10,12 @@ export class EnvironmentService {
}
getAppUrl(): string {
- return (
+ const rawUrl =
this.configService.get('APP_URL') ||
- 'http://localhost:' + this.getPort()
- );
+ `http://localhost:${this.getPort()}`;
+
+ const { origin } = new URL(rawUrl);
+ return origin;
}
isHttps(): boolean {
@@ -26,6 +28,10 @@ export class EnvironmentService {
}
}
+ getSubdomainHost(): string {
+ return this.configService.get('SUBDOMAIN_HOST');
+ }
+
getPort(): number {
return parseInt(this.configService.get('PORT', '3000'));
}
@@ -38,6 +44,10 @@ export class EnvironmentService {
return this.configService.get('DATABASE_URL');
}
+ getDatabaseMaxPool(): number {
+ return parseInt(this.configService.get('DATABASE_MAX_POOL', '10'));
+ }
+
getRedisUrl(): string {
return this.configService.get(
'REDIS_URL',
@@ -146,6 +156,22 @@ export class EnvironmentService {
return !this.isCloud();
}
+ getStripePublishableKey(): string {
+ return this.configService.get('STRIPE_PUBLISHABLE_KEY');
+ }
+
+ getStripeSecretKey(): string {
+ return this.configService.get('STRIPE_SECRET_KEY');
+ }
+
+ getStripeWebhookSecret(): string {
+ return this.configService.get('STRIPE_WEBHOOK_SECRET');
+ }
+
+ getBillingTrialDays(): number {
+ return parseInt(this.configService.get('BILLING_TRIAL_DAYS', '14'));
+ }
+
getCollabUrl(): string {
return this.configService.get('COLLAB_URL');
}
diff --git a/apps/server/src/integrations/environment/environment.validation.ts b/apps/server/src/integrations/environment/environment.validation.ts
index c0aea146..a2aeb6dd 100644
--- a/apps/server/src/integrations/environment/environment.validation.ts
+++ b/apps/server/src/integrations/environment/environment.validation.ts
@@ -54,6 +54,20 @@ export class EnvironmentVariables {
@ValidateIf((obj) => obj.COLLAB_URL != '' && obj.COLLAB_URL != null)
@IsUrl({ protocols: ['http', 'https'], require_tld: false })
COLLAB_URL: string;
+
+ @IsOptional()
+ CLOUD: boolean;
+
+ @IsOptional()
+ @IsUrl(
+ { protocols: [], require_tld: true },
+ {
+ message:
+ 'SUBDOMAIN_HOST must be a valid FQDN domain without the http protocol. e.g example.com',
+ },
+ )
+ @ValidateIf((obj) => obj.CLOUD === 'true'.toLowerCase())
+ SUBDOMAIN_HOST: string;
}
export function validate(config: Record) {
diff --git a/apps/server/src/integrations/health/health.controller.ts b/apps/server/src/integrations/health/health.controller.ts
index c33214ee..f54e86f5 100644
--- a/apps/server/src/integrations/health/health.controller.ts
+++ b/apps/server/src/integrations/health/health.controller.ts
@@ -2,6 +2,7 @@ import { Controller, Get } from '@nestjs/common';
import { HealthCheck, HealthCheckService } from '@nestjs/terminus';
import { PostgresHealthIndicator } from './postgres.health';
import { RedisHealthIndicator } from './redis.health';
+import { SkipTransform } from '../../common/decorators/skip-transform.decorator';
@Controller('health')
export class HealthController {
@@ -11,6 +12,7 @@ export class HealthController {
private redis: RedisHealthIndicator,
) {}
+ @SkipTransform()
@Get()
@HealthCheck()
async check() {
@@ -19,4 +21,9 @@ export class HealthController {
() => this.redis.pingCheck('redis'),
]);
}
+
+ @Get('live')
+ async checkLive() {
+ return 'ok';
+ }
}
diff --git a/apps/server/src/integrations/security/robots.txt.controller.ts b/apps/server/src/integrations/security/robots.txt.controller.ts
new file mode 100644
index 00000000..913a686f
--- /dev/null
+++ b/apps/server/src/integrations/security/robots.txt.controller.ts
@@ -0,0 +1,12 @@
+import { Controller, Get, HttpCode, HttpStatus } from '@nestjs/common';
+import { SkipTransform } from '../../common/decorators/skip-transform.decorator';
+
+@Controller('robots.txt')
+export class RobotsTxtController {
+ @SkipTransform()
+ @HttpCode(HttpStatus.OK)
+ @Get()
+ async robotsTxt() {
+ return 'User-Agent: *\nDisallow: /login\nDisallow: /forgot-password';
+ }
+}
diff --git a/apps/server/src/integrations/security/security.module.ts b/apps/server/src/integrations/security/security.module.ts
new file mode 100644
index 00000000..1a65b14e
--- /dev/null
+++ b/apps/server/src/integrations/security/security.module.ts
@@ -0,0 +1,7 @@
+import { Module } from '@nestjs/common';
+import { RobotsTxtController } from './robots.txt.controller';
+
+@Module({
+ controllers: [RobotsTxtController],
+})
+export class SecurityModule {}
diff --git a/apps/server/src/integrations/static/static.module.ts b/apps/server/src/integrations/static/static.module.ts
index aea6cce0..e5152ef8 100644
--- a/apps/server/src/integrations/static/static.module.ts
+++ b/apps/server/src/integrations/static/static.module.ts
@@ -38,6 +38,9 @@ export class StaticModule implements OnModuleInit {
FILE_UPLOAD_SIZE_LIMIT:
this.environmentService.getFileUploadSizeLimit(),
DRAWIO_URL: this.environmentService.getDrawioUrl(),
+ SUBDOMAIN_HOST: this.environmentService.isCloud()
+ ? this.environmentService.getSubdomainHost()
+ : undefined,
COLLAB_URL: this.environmentService.getCollabUrl(),
};
diff --git a/apps/server/src/main.ts b/apps/server/src/main.ts
index 1d51644e..3ceeb789 100644
--- a/apps/server/src/main.ts
+++ b/apps/server/src/main.ts
@@ -1,4 +1,4 @@
-import { NestFactory } from '@nestjs/core';
+import { NestFactory, Reflector } from '@nestjs/core';
import { AppModule } from './app.module';
import {
FastifyAdapter,
@@ -6,9 +6,9 @@ import {
} from '@nestjs/platform-fastify';
import { Logger, NotFoundException, ValidationPipe } from '@nestjs/common';
import { TransformHttpResponseInterceptor } from './common/interceptors/http-response.interceptor';
-import fastifyMultipart from '@fastify/multipart';
import { WsRedisIoAdapter } from './ws/adapter/ws-redis.adapter';
import { InternalLogFilter } from './common/logger/internal-log-filter';
+import fastifyMultipart from '@fastify/multipart';
import fastifyCookie from '@fastify/cookie';
async function bootstrap() {
@@ -17,34 +17,52 @@ async function bootstrap() {
new FastifyAdapter({
ignoreTrailingSlash: true,
ignoreDuplicateSlashes: true,
- maxParamLength: 500,
+ maxParamLength: 1000,
trustProxy: true,
}),
{
+ rawBody: true,
logger: new InternalLogFilter(),
},
);
- app.setGlobalPrefix('api');
+ app.setGlobalPrefix('api', { exclude: ['robots.txt'] });
+ const reflector = app.get(Reflector);
const redisIoAdapter = new WsRedisIoAdapter(app);
await redisIoAdapter.connectToRedis();
app.useWebSocketAdapter(redisIoAdapter);
- await app.register(fastifyMultipart as any);
- await app.register(fastifyCookie as any);
+ await app.register(fastifyMultipart);
+ await app.register(fastifyCookie);
app
.getHttpAdapter()
.getInstance()
+ .decorateReply('setHeader', function (name: string, value: unknown) {
+ this.header(name, value);
+ })
+ .decorateReply('end', function () {
+ this.send('');
+ })
.addHook('preHandler', function (req, reply, done) {
+ // don't require workspaceId for the following paths
+ const excludedPaths = [
+ '/api/auth/setup',
+ '/api/health',
+ '/api/billing/stripe/webhook',
+ '/api/workspace/check-hostname',
+ '/api/sso/google',
+ '/api/workspace/create',
+ '/api/workspace/joined',
+ ];
+
if (
req.originalUrl.startsWith('/api') &&
- !req.originalUrl.startsWith('/api/auth/setup') &&
- !req.originalUrl.startsWith('/api/health')
+ !excludedPaths.some((path) => req.originalUrl.startsWith(path))
) {
- if (!req.raw?.['workspaceId']) {
+ if (!req.raw?.['workspaceId'] && req.originalUrl !== '/api') {
throw new NotFoundException('Workspace not found');
}
done();
@@ -62,8 +80,7 @@ async function bootstrap() {
);
app.enableCors();
-
- app.useGlobalInterceptors(new TransformHttpResponseInterceptor());
+ app.useGlobalInterceptors(new TransformHttpResponseInterceptor(reflector));
app.enableShutdownHooks();
const logger = new Logger('NestApplication');
diff --git a/apps/server/src/ws/ws.gateway.ts b/apps/server/src/ws/ws.gateway.ts
index 96670878..eeaec897 100644
--- a/apps/server/src/ws/ws.gateway.ts
+++ b/apps/server/src/ws/ws.gateway.ts
@@ -7,7 +7,7 @@ import {
} from '@nestjs/websockets';
import { Server, Socket } from 'socket.io';
import { TokenService } from '../core/auth/services/token.service';
-import { JwtType } from '../core/auth/dto/jwt-payload';
+import { JwtPayload, JwtType } from '../core/auth/dto/jwt-payload';
import { OnModuleDestroy } from '@nestjs/common';
import { SpaceMemberRepo } from '@docmost/db/repos/space/space-member.repo';
import * as cookie from 'cookie';
@@ -27,12 +27,10 @@ export class WsGateway implements OnGatewayConnection, OnModuleDestroy {
async handleConnection(client: Socket, ...args: any[]): Promise {
try {
const cookies = cookie.parse(client.handshake.headers.cookie);
- const token = await this.tokenService.verifyJwt(cookies['authToken']);
-
- if (token.type !== JwtType.ACCESS) {
- client.emit('Unauthorized');
- client.disconnect();
- }
+ const token: JwtPayload = await this.tokenService.verifyJwt(
+ cookies['authToken'],
+ JwtType.ACCESS,
+ );
const userId = token.sub;
const workspaceId = token.workspaceId;
diff --git a/apps/server/tsconfig.json b/apps/server/tsconfig.json
index 5b5ae8cc..762027e7 100644
--- a/apps/server/tsconfig.json
+++ b/apps/server/tsconfig.json
@@ -21,7 +21,8 @@
"jsx": "react",
"paths": {
"@docmost/db/*": ["./src/database/*"],
- "@docmost/transactional/*": ["./src/integrations/transactional/*"]
+ "@docmost/transactional/*": ["./src/integrations/transactional/*"],
+ "@docmost/ee/*": ["./src/ee/*"]
}
}
}
diff --git a/package.json b/package.json
index f0fd902b..fe99674d 100644
--- a/package.json
+++ b/package.json
@@ -86,6 +86,7 @@
"packages/*"
]
},
+ "packageManager": "pnpm@10.4.0",
"pnpm": {
"patchedDependencies": {
"react-arborist@3.4.0": "patches/react-arborist@3.4.0.patch"
diff --git a/packages/editor-ext/src/lib/attachment/attachment-upload.ts b/packages/editor-ext/src/lib/attachment/attachment-upload.ts
index b1f10858..ed44b842 100644
--- a/packages/editor-ext/src/lib/attachment/attachment-upload.ts
+++ b/packages/editor-ext/src/lib/attachment/attachment-upload.ts
@@ -95,7 +95,7 @@ export const handleAttachmentUpload =
if (!attachment) return;
const node = schema.nodes.attachment?.create({
- url: `/files/${attachment.id}/${attachment.fileName}`,
+ url: `/api/files/${attachment.id}/${attachment.fileName}`,
name: attachment.fileName,
mime: attachment.mimeType,
size: attachment.fileSize,
diff --git a/packages/editor-ext/src/lib/image/image-upload.ts b/packages/editor-ext/src/lib/image/image-upload.ts
index 8ffa2cbd..2f8b824e 100644
--- a/packages/editor-ext/src/lib/image/image-upload.ts
+++ b/packages/editor-ext/src/lib/image/image-upload.ts
@@ -102,7 +102,7 @@ export const handleImageUpload =
if (!attachment) return;
const node = schema.nodes.image?.create({
- src: `/files/${attachment.id}/${attachment.fileName}`,
+ src: `/api/files/${attachment.id}/${attachment.fileName}`,
attachmentId: attachment.id,
title: attachment.fileName,
size: attachment.fileSize,
diff --git a/packages/editor-ext/src/lib/video/video-upload.ts b/packages/editor-ext/src/lib/video/video-upload.ts
index 022e6306..b0a9a25a 100644
--- a/packages/editor-ext/src/lib/video/video-upload.ts
+++ b/packages/editor-ext/src/lib/video/video-upload.ts
@@ -102,7 +102,7 @@ export const handleVideoUpload =
if (!attachment) return;
const node = schema.nodes.video?.create({
- src: `/files/${attachment.id}/${attachment.fileName}`,
+ src: `/api/files/${attachment.id}/${attachment.fileName}`,
attachmentId: attachment.id,
title: attachment.fileName,
size: attachment.fileSize,
diff --git a/packages/ee/LICENSE b/packages/ee/LICENSE
index e69de29b..7e5d05ad 100644
--- a/packages/ee/LICENSE
+++ b/packages/ee/LICENSE
@@ -0,0 +1,37 @@
+ The Docmost Enterprise License (the “Enterprise License”)
+ Copyright (c) 2023-present Docmost, Inc
+
+
+With regard to the Docmost Software:
+
+This software and associated documentation files (the "Software") may only be
+used in production, if you (and any entity that you represent) have agreed to,
+and are in compliance with, the Docmost Subscription Terms of Service, available
+at https://docmost.com/terms (the “Enterprise Terms”), or other
+agreement governing the use of the Software, as agreed by you and Docmost, Inc.,
+and otherwise have a valid Docmost Enterprise Edition subscription for the correct number of user seats.
+Subject to the foregoing sentence, you are free to
+modify this Software and publish patches to the Software. You agree that Docmost
+and/or its licensors (as applicable) retain all right, title and interest in and
+to all such modifications and/or patches, and all such modifications and/or
+patches may only be used, copied, modified, displayed, distributed, or otherwise
+exploited with a valid Docmost Enterprise Edition subscription for the correct
+number of user seats. Notwithstanding the foregoing, you may copy and modify
+the Software for development and testing purposes, without requiring a
+subscription. You agree that Docmost and/or its licensors (as applicable) retain
+all right, title and interest in and to all such modifications. You are not
+granted any other rights beyond what is expressly stated herein. Subject to the
+foregoing, it is forbidden to copy, merge, publish, distribute, sublicense,
+and/or sell the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+For all third party components incorporated into the Docmost Software, those
+components are licensed under the original license provided by the owner of the
+applicable component.
\ No newline at end of file
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 99ffabb0..ca18181f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -21,127 +21,127 @@ importers:
version: link:packages/editor-ext
'@hocuspocus/extension-redis':
specifier: ^2.15.2
- version: 2.15.2(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)
+ version: 2.15.2(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)
'@hocuspocus/provider':
specifier: ^2.15.2
- version: 2.15.2(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)
+ version: 2.15.2(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)
'@hocuspocus/server':
specifier: ^2.15.2
- version: 2.15.2(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)
+ version: 2.15.2(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)
'@hocuspocus/transformer':
specifier: ^2.15.2
- version: 2.15.2(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)(y-prosemirror@1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23))(yjs@13.6.23)
+ version: 2.15.2(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)(y-prosemirror@1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20))(yjs@13.6.20)
'@joplin/turndown':
specifier: ^4.0.74
- version: 4.0.79
+ version: 4.0.74
'@joplin/turndown-plugin-gfm':
specifier: ^1.0.56
- version: 1.0.61
+ version: 1.0.56
'@sindresorhus/slugify':
specifier: 1.1.0
version: 1.1.0
'@tiptap/core':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/pm@2.11.5)
+ version: 2.10.3(@tiptap/pm@2.10.3)
'@tiptap/extension-code-block':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
'@tiptap/extension-code-block-lowlight':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/extension-code-block@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)(highlight.js@11.11.1)(lowlight@3.3.0)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/extension-code-block@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)(highlight.js@11.10.0)(lowlight@3.2.0)
'@tiptap/extension-collaboration':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)(y-prosemirror@1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)(y-prosemirror@1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20))
'@tiptap/extension-collaboration-cursor':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(y-prosemirror@1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(y-prosemirror@1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20))
'@tiptap/extension-color':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/extension-text-style@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5)))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/extension-text-style@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3)))
'@tiptap/extension-document':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-heading':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-highlight':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-history':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
'@tiptap/extension-image':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-link':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
'@tiptap/extension-list-item':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-list-keymap':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-placeholder':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
'@tiptap/extension-subscript':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-superscript':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-table':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
'@tiptap/extension-table-cell':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-table-header':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-table-row':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-task-item':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
'@tiptap/extension-task-list':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-text':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-text-align':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-text-style':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-typography':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-underline':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/extension-youtube':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
'@tiptap/html':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
'@tiptap/pm':
specifier: ^2.10.3
- version: 2.11.5
+ version: 2.10.3
'@tiptap/react':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tiptap/starter-kit':
specifier: ^2.10.3
- version: 2.11.5
+ version: 2.10.3
'@tiptap/suggestion':
specifier: ^2.10.3
- version: 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
+ version: 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
bytes:
specifier: ^3.1.2
version: 3.1.2
@@ -159,7 +159,7 @@ importers:
version: 1.0.0
ioredis:
specifier: ^5.4.1
- version: 5.5.0
+ version: 5.4.1
jszip:
specifier: ^3.10.1
version: 3.10.1
@@ -174,14 +174,14 @@ importers:
version: 11.1.0
y-indexeddb:
specifier: ^9.0.12
- version: 9.0.12(yjs@13.6.23)
+ version: 9.0.12(yjs@13.6.20)
yjs:
specifier: ^13.6.20
- version: 13.6.23
+ version: 13.6.20
devDependencies:
'@nx/js':
specifier: 20.4.5
- version: 20.4.5(@babel/traverse@7.26.9)(@types/node@22.13.4)(nx@20.4.5)(typescript@5.7.3)
+ version: 20.4.5(@babel/traverse@7.25.9)(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(nx@20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5)))(typescript@5.7.3)
'@types/bytes':
specifier: ^3.1.5
version: 3.1.5
@@ -193,7 +193,7 @@ importers:
version: 9.1.2
nx:
specifier: 20.4.5
- version: 20.4.5
+ version: 20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5))
tsx:
specifier: ^4.19.3
version: 4.19.3
@@ -202,10 +202,10 @@ importers:
dependencies:
'@casl/ability':
specifier: ^6.7.2
- version: 6.7.3
+ version: 6.7.2
'@casl/react':
specifier: ^4.0.0
- version: 4.0.0(@casl/ability@6.7.3)(react@18.3.1)
+ version: 4.0.0(@casl/ability@6.7.2)(react@18.3.1)
'@docmost/editor-ext':
specifier: workspace:*
version: link:../../packages/editor-ext
@@ -219,29 +219,29 @@ importers:
specifier: ^0.17.6
version: 0.17.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/core':
- specifier: ^7.14.2
- version: 7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^7.17.0
+ version: 7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/form':
- specifier: ^7.14.2
+ specifier: ^7.17.0
version: 7.17.0(react@18.3.1)
'@mantine/hooks':
- specifier: ^7.14.2
+ specifier: ^7.17.0
version: 7.17.0(react@18.3.1)
'@mantine/modals':
- specifier: ^7.14.2
- version: 7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^7.17.0
+ version: 7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/notifications':
- specifier: ^7.14.2
- version: 7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^7.17.0
+ version: 7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/spotlight':
- specifier: ^7.14.2
- version: 7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^7.17.0
+ version: 7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tabler/icons-react':
specifier: ^3.22.0
- version: 3.30.0(react@18.3.1)
+ version: 3.22.0(react@18.3.1)
'@tanstack/react-query':
specifier: ^5.61.4
- version: 5.66.8(react@18.3.1)
+ version: 5.61.4(react@18.3.1)
axios:
specifier: ^1.7.9
version: 1.7.9
@@ -256,16 +256,16 @@ importers:
version: 2.0.5
i18next:
specifier: ^23.14.0
- version: 23.16.8
+ version: 23.14.0
i18next-http-backend:
specifier: ^2.6.1
- version: 2.7.3
+ version: 2.6.1
jotai:
- specifier: ^2.10.3
- version: 2.12.1(@types/react@18.3.18)(react@18.3.1)
+ specifier: ^2.12.1
+ version: 2.12.1(@types/react@18.3.12)(react@18.3.1)
jotai-optics:
specifier: ^0.4.0
- version: 0.4.0(jotai@2.12.1(@types/react@18.3.18)(react@18.3.1))(optics-ts@2.4.1)
+ version: 0.4.0(jotai@2.12.1(@types/react@18.3.12)(react@18.3.1))(optics-ts@2.4.1)
js-cookie:
specifier: ^3.0.5
version: 3.0.5
@@ -274,7 +274,7 @@ importers:
version: 0.16.21
lowlight:
specifier: ^3.2.0
- version: 3.3.0
+ version: 3.2.0
mermaid:
specifier: ^11.4.1
version: 11.4.1
@@ -283,16 +283,16 @@ importers:
version: 18.3.1
react-arborist:
specifier: 3.4.0
- version: 3.4.0(patch_hash=419b3b02e24afe928cc006a006f6e906666aff19aa6fd7daaa788ccc2202678a)(@types/node@22.10.0)(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 3.4.0(patch_hash=419b3b02e24afe928cc006a006f6e906666aff19aa6fd7daaa788ccc2202678a)(@types/node@22.10.0)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-clear-modal:
specifier: ^2.0.11
- version: 2.0.13(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.0.11(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-dom:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
react-drawio:
specifier: ^1.0.1
- version: 1.0.3(react@18.3.1)
+ version: 1.0.1(react@18.3.1)
react-error-boundary:
specifier: ^4.1.2
version: 4.1.2(react@18.3.1)
@@ -301,10 +301,10 @@ importers:
version: 2.0.5(react@18.3.1)
react-i18next:
specifier: ^15.0.1
- version: 15.4.1(i18next@23.16.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.1(i18next@23.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-router-dom:
specifier: ^7.0.1
- version: 7.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
socket.io-client:
specifier: ^4.8.1
version: 4.8.1
@@ -313,17 +313,17 @@ importers:
version: 6.3.7
tiptap-extension-global-drag-handle:
specifier: ^0.1.16
- version: 0.1.18
+ version: 0.1.16
zod:
specifier: ^3.23.8
- version: 3.24.2
+ version: 3.23.8
devDependencies:
'@eslint/js':
specifier: ^9.16.0
- version: 9.20.0
+ version: 9.16.0
'@tanstack/eslint-plugin-query':
specifier: ^5.62.1
- version: 5.66.1(eslint@9.20.1)(typescript@5.7.3)
+ version: 5.62.1(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
'@types/file-saver':
specifier: ^2.0.7
version: 2.0.7
@@ -338,52 +338,52 @@ importers:
version: 22.10.0
'@types/react':
specifier: ^18.3.12
- version: 18.3.18
+ version: 18.3.12
'@types/react-dom':
specifier: ^18.3.1
- version: 18.3.5(@types/react@18.3.18)
+ version: 18.3.1
'@vitejs/plugin-react':
specifier: ^4.3.4
- version: 4.3.4(vite@6.1.1(@types/node@22.10.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))
+ version: 4.3.4(vite@6.1.0(@types/node@22.10.0)(jiti@1.21.0)(less@4.2.0)(sugarss@4.0.1(postcss@8.4.49))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))
eslint:
specifier: ^9.15.0
- version: 9.20.1
+ version: 9.15.0(jiti@1.21.0)
eslint-plugin-react:
specifier: ^7.37.2
- version: 7.37.4(eslint@9.20.1)
+ version: 7.37.2(eslint@9.15.0(jiti@1.21.0))
eslint-plugin-react-hooks:
specifier: ^5.1.0
- version: 5.1.0(eslint@9.20.1)
+ version: 5.1.0(eslint@9.15.0(jiti@1.21.0))
eslint-plugin-react-refresh:
specifier: ^0.4.16
- version: 0.4.19(eslint@9.20.1)
+ version: 0.4.16(eslint@9.15.0(jiti@1.21.0))
globals:
specifier: ^15.13.0
- version: 15.15.0
+ version: 15.13.0
optics-ts:
specifier: ^2.4.1
version: 2.4.1
postcss:
specifier: ^8.4.49
- version: 8.5.3
+ version: 8.4.49
postcss-preset-mantine:
specifier: ^1.17.0
- version: 1.17.0(postcss@8.5.3)
+ version: 1.17.0(postcss@8.4.49)
postcss-simple-vars:
specifier: ^7.0.1
- version: 7.0.1(postcss@8.5.3)
+ version: 7.0.1(postcss@8.4.49)
prettier:
specifier: ^3.4.1
- version: 3.5.1
+ version: 3.4.1
typescript:
specifier: ^5.7.2
- version: 5.7.3
+ version: 5.7.2
typescript-eslint:
specifier: ^8.17.0
- version: 8.24.1(eslint@9.20.1)(typescript@5.7.3)
+ version: 8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
vite:
specifier: ^6.1.0
- version: 6.1.1(@types/node@22.10.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ version: 6.1.0(@types/node@22.10.0)(jiti@1.21.0)(less@4.2.0)(sugarss@4.0.1(postcss@8.4.49))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
apps/server:
dependencies:
@@ -407,7 +407,7 @@ importers:
version: 8.1.1
'@nestjs/bullmq':
specifier: ^11.0.2
- version: 11.0.2(@nestjs/common@11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@11.0.10)(bullmq@5.41.4)
+ version: 11.0.2(@nestjs/common@11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@11.0.10)(bullmq@5.41.3)
'@nestjs/common':
specifier: ^11.0.10
version: 11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1)
@@ -441,6 +441,9 @@ importers:
'@nestjs/websockets':
specifier: ^11.0.10
version: 11.0.10(@nestjs/common@11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@11.0.10)(@nestjs/platform-socket.io@11.0.10)(reflect-metadata@0.2.2)(rxjs@7.8.1)
+ '@node-saml/passport-saml':
+ specifier: ^5.0.0
+ version: 5.0.0
'@react-email/components':
specifier: 0.0.28
version: 0.0.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -449,13 +452,16 @@ importers:
version: 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@socket.io/redis-adapter':
specifier: ^8.3.0
- version: 8.3.0(socket.io-adapter@2.5.5)
+ version: 8.3.0(socket.io-adapter@2.5.4)
bcrypt:
specifier: ^5.1.1
version: 5.1.1
bullmq:
specifier: ^5.41.3
- version: 5.41.4
+ version: 5.41.3
+ cache-manager:
+ specifier: ^6.4.0
+ version: 6.4.0
class-transformer:
specifier: ^0.5.1
version: 0.5.1
@@ -473,7 +479,10 @@ importers:
version: 11.3.0
happy-dom:
specifier: ^15.11.6
- version: 15.11.7
+ version: 15.11.6
+ jsonwebtoken:
+ specifier: ^9.0.2
+ version: 9.0.2
kysely:
specifier: ^0.27.5
version: 0.27.5
@@ -492,6 +501,12 @@ importers:
nodemailer:
specifier: ^6.10.0
version: 6.10.0
+ openid-client:
+ specifier: ^5.7.1
+ version: 5.7.1
+ passport-google-oauth20:
+ specifier: ^2.0.0
+ version: 2.0.0
passport-jwt:
specifier: ^4.0.1
version: 4.0.1
@@ -519,16 +534,19 @@ importers:
socket.io:
specifier: ^4.8.1
version: 4.8.1
+ stripe:
+ specifier: ^17.5.0
+ version: 17.5.0
ws:
specifier: ^8.18.0
- version: 8.18.1
+ version: 8.18.0
devDependencies:
'@eslint/js':
specifier: ^9.20.0
version: 9.20.0
'@nestjs/cli':
specifier: ^11.0.4
- version: 11.0.4(@types/node@22.13.4)
+ version: 11.0.4(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)
'@nestjs/schematics':
specifier: ^11.0.1
version: 11.0.1(chokidar@4.0.3)(typescript@5.7.3)
@@ -556,6 +574,9 @@ importers:
'@types/nodemailer':
specifier: ^6.4.17
version: 6.4.17
+ '@types/passport-google-oauth20':
+ specifier: ^2.0.16
+ version: 2.0.16
'@types/passport-jwt':
specifier: ^4.0.1
version: 4.0.1
@@ -570,16 +591,16 @@ importers:
version: 8.5.14
eslint:
specifier: ^9.20.1
- version: 9.20.1
+ version: 9.20.1(jiti@1.21.0)
eslint-config-prettier:
specifier: ^10.0.1
- version: 10.0.1(eslint@9.20.1)
+ version: 10.0.1(eslint@9.20.1(jiti@1.21.0))
globals:
specifier: ^15.15.0
version: 15.15.0
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))
+ version: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))
kysely-codegen:
specifier: ^0.17.0
version: 0.17.0(kysely@0.27.5)(pg@8.13.3)
@@ -597,13 +618,13 @@ importers:
version: 7.0.0
ts-jest:
specifier: ^29.2.5
- version: 29.2.5(@babel/core@7.26.9)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.9))(jest@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3)))(typescript@5.7.3)
+ version: 29.2.5(@babel/core@7.24.3)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.3))(jest@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3)))(typescript@5.7.3)
ts-loader:
specifier: ^9.5.2
- version: 9.5.2(typescript@5.7.3)(webpack@5.98.0)
+ version: 9.5.2(typescript@5.7.3)(webpack@5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5)))
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@22.13.4)(typescript@5.7.3)
+ version: 10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3)
tsconfig-paths:
specifier: ^4.2.0
version: 4.2.0
@@ -612,14 +633,18 @@ importers:
version: 5.7.3
typescript-eslint:
specifier: ^8.24.1
- version: 8.24.1(eslint@9.20.1)(typescript@5.7.3)
+ version: 8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)
packages/editor-ext: {}
packages:
- '@adobe/css-tools@4.4.0':
- resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
+ '@aashutoshrathi/word-wrap@1.2.6':
+ resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
+ engines: {node: '>=0.10.0'}
+
+ '@adobe/css-tools@4.3.3':
+ resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
@@ -643,11 +668,11 @@ packages:
resolution: {integrity: sha512-AP6FvhMybCYs3gs+vzEAzSU1K//AFT3SVTRFv+C3WMO5dLeAHeGzM8I2dxD5EHQQtqIE/8apP6CxGrnpA5YlFg==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@antfu/install-pkg@1.0.0':
- resolution: {integrity: sha512-xvX6P/lo1B3ej0OsaErAjqgFYzYVcJpamjLAFLYh9vRJngBrMoUG7aVnrGTeqM7yxbyTD5p3F2+0/QUEh8Vzhw==}
+ '@antfu/install-pkg@0.4.1':
+ resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==}
- '@antfu/utils@8.1.1':
- resolution: {integrity: sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==}
+ '@antfu/utils@0.7.10':
+ resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
'@asamuzakjp/css-color@2.8.3':
resolution: {integrity: sha512-GIc76d9UI1hCvOATjZPyHFmE5qhRccp3/zGfMPapK3jBi+yocEzp6BBB0UnfRYP9NP4FANqUZYb0hnfs3TM3hw==}
@@ -791,6 +816,10 @@ packages:
resolution: {integrity: sha512-9rTvUJIAj5d3//U5FDPWGJ1nFJLuWb30vugGOrWk7aNZ6y9tuA3PI7Cc9dP8WEXKVyK1vuuk8rSFP2iqXnlgrw==}
engines: {node: '>=16.0.0'}
+ '@aws-sdk/types@3.734.0':
+ resolution: {integrity: sha512-o11tSPTT70nAkGV1fN9wm/hAIiLPyWX6SuGf+9JyTp7S/rC2cFWhR26MvA69nplcjNaXVzB0f+QFrLXXjOqCrg==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/util-arn-parser@3.693.0':
resolution: {integrity: sha512-WC8x6ca+NRrtpAH64rWu+ryDZI3HuLwlEr8EU6/dbC/pt+r/zC0PBoC15VEygUaBA+isppCikQpGyEDu0Yj7gQ==}
engines: {node: '>=16.0.0'}
@@ -803,9 +832,9 @@ packages:
resolution: {integrity: sha512-R6yK1LozUD1GdAZRPhNsIow6VNFJUTyyoIar1OCWaknlucBMcq7musF3DN3TlORBwfFMj5buHc2ET9OtMtzvuA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/util-locate-window@3.723.0':
- resolution: {integrity: sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-locate-window@3.535.0':
+ resolution: {integrity: sha512-PHJ3SL6d2jpcgbqdgiPxkXpu7Drc2PYViwxSIqvvMKhDwzSB1W3mMvtpzwKM4IE7zLFodZo0GKjJ9AsoXndXhA==}
+ engines: {node: '>=14.0.0'}
'@aws-sdk/util-user-agent-browser@3.696.0':
resolution: {integrity: sha512-Z5rVNDdmPOe6ELoM5AhF/ja5tSjbe6ctSctDPb0JdDf4dT0v2MfwhJKzXju2RzX8Es/77Glh7MlaXLE0kCB9+Q==}
@@ -823,151 +852,281 @@ packages:
resolution: {integrity: sha512-dn1mX+EeqivoLYnY7p2qLrir0waPnCgS/0YdRCAVU2x14FgfUYCH6Im3w3oi2dMwhxfKY5lYVB5NKvZu7uI9lQ==}
engines: {node: '>=16.0.0'}
+ '@babel/code-frame@7.24.2':
+ resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.8':
- resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
+ '@babel/compat-data@7.23.5':
+ resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.26.2':
+ resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.24.3':
+ resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.5':
resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.9':
- resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
+ '@babel/core@7.24.6':
+ resolution: {integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.26.9':
- resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.9':
- resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
+ '@babel/generator@7.24.1':
+ resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.26.5':
- resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
+ '@babel/generator@7.24.6':
+ resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.26.9':
- resolution: {integrity: sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==}
+ '@babel/generator@7.26.2':
+ resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-annotate-as-pure@7.22.5':
+ resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
+ resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.23.6':
+ resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-create-class-features-plugin@7.23.7':
+ resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.26.3':
- resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==}
+ '@babel/helper-create-regexp-features-plugin@7.22.15':
+ resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.3':
- resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
+ '@babel/helper-define-polyfill-provider@0.4.4':
+ resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-member-expression-to-functions@7.25.9':
- resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
+ '@babel/helper-environment-visitor@7.22.20':
+ resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-environment-visitor@7.24.6':
+ resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-function-name@7.23.0':
+ resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-function-name@7.24.6':
+ resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-hoist-variables@7.22.5':
+ resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-hoist-variables@7.24.6':
+ resolution: {integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-member-expression-to-functions@7.23.0':
+ resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ 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-imports@7.24.6':
+ resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-transforms@7.23.3':
+ resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-module-transforms@7.24.6':
+ resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@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-optimise-call-expression@7.25.9':
- resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
+ '@babel/helper-optimise-call-expression@7.22.5':
+ resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.26.5':
- resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
+ '@babel/helper-plugin-utils@7.24.0':
+ resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.25.9':
- resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-remap-async-to-generator@7.22.20':
+ resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.26.5':
- resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
+ '@babel/helper-replace-supers@7.22.20':
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
- resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
+ '@babel/helper-simple-access@7.22.5':
+ resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-simple-access@7.24.6':
+ resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
+ resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-split-export-declaration@7.22.6':
+ resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-split-export-declaration@7.24.6':
+ resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.23.4':
+ resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.24.1':
+ resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.24.6':
+ resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.22.20':
+ resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.24.6':
+ resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@7.23.5':
+ resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.9':
- resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
+ '@babel/helper-wrap-function@7.22.20':
+ resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.26.9':
- resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==}
+ '@babel/helpers@7.24.1':
+ resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.24.6':
+ resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/highlight@7.24.2':
+ resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.24.1':
+ resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/parser@7.24.5':
resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.26.9':
- resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==}
+ '@babel/parser@7.24.6':
+ resolution: {integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
- resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
+ '@babel/parser@7.26.2':
+ resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3':
+ resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
- resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
- resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
- resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3':
+ resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
- resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7':
+ resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-proposal-decorators@7.25.9':
- resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
+ '@babel/plugin-proposal-decorators@7.23.7':
+ resolution: {integrity: sha512-b1s5JyeMvqj7d9m9KhJNHKc18gEJiSyVzVX3bwbiPalQBQpuvfPh6lA9F7Kk/dWH0TIiXRpB9yicwijY6buPng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1006,25 +1165,30 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.25.9':
- resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
+ '@babel/plugin-syntax-decorators@7.23.3':
+ resolution: {integrity: sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-dynamic-import@7.8.3':
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-export-namespace-from@7.8.3':
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.26.0':
- resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
+ '@babel/plugin-syntax-import-assertions@7.23.3':
+ resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.26.0':
- resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
+ '@babel/plugin-syntax-import-attributes@7.23.3':
+ resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1039,8 +1203,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.25.9':
- resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
+ '@babel/plugin-syntax-jsx@7.24.1':
+ resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1087,8 +1251,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.9':
- resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
+ '@babel/plugin-syntax-typescript@7.24.1':
+ resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1099,230 +1263,224 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.25.9':
- resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
+ '@babel/plugin-transform-arrow-functions@7.23.3':
+ resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.26.8':
- resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
+ '@babel/plugin-transform-async-generator-functions@7.23.7':
+ resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.25.9':
- resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
+ '@babel/plugin-transform-async-to-generator@7.23.3':
+ resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.26.5':
- resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==}
+ '@babel/plugin-transform-block-scoped-functions@7.23.3':
+ resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.25.9':
- resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
+ '@babel/plugin-transform-block-scoping@7.23.4':
+ resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.25.9':
- resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
+ '@babel/plugin-transform-class-properties@7.23.3':
+ resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.26.0':
- resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
+ '@babel/plugin-transform-class-static-block@7.23.4':
+ resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.25.9':
- resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
+ '@babel/plugin-transform-classes@7.23.8':
+ resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.25.9':
- resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
+ '@babel/plugin-transform-computed-properties@7.23.3':
+ resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.25.9':
- resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
+ '@babel/plugin-transform-destructuring@7.23.3':
+ resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.25.9':
- resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
+ '@babel/plugin-transform-dotall-regex@7.23.3':
+ resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.25.9':
- resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
+ '@babel/plugin-transform-duplicate-keys@7.23.3':
+ resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
- resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
+ '@babel/plugin-transform-dynamic-import@7.23.4':
+ resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-exponentiation-operator@7.23.3':
+ resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-export-namespace-from@7.23.4':
+ resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-for-of@7.23.6':
+ resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-function-name@7.23.3':
+ resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-json-strings@7.23.4':
+ resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-literals@7.23.3':
+ resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-logical-assignment-operators@7.23.4':
+ resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-member-expression-literals@7.23.3':
+ resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-amd@7.23.3':
+ resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-commonjs@7.23.3':
+ resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-systemjs@7.23.3':
+ resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-umd@7.23.3':
+ resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-named-capturing-groups-regex@7.22.5':
+ resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-dynamic-import@7.25.9':
- resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
+ '@babel/plugin-transform-new-target@7.23.3':
+ resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.26.3':
- resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.23.4':
+ resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.25.9':
- resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
+ '@babel/plugin-transform-numeric-separator@7.23.4':
+ resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.26.9':
- resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==}
+ '@babel/plugin-transform-object-rest-spread@7.23.4':
+ resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.25.9':
- resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
+ '@babel/plugin-transform-object-super@7.23.3':
+ resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.25.9':
- resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
+ '@babel/plugin-transform-optional-catch-binding@7.23.4':
+ resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.25.9':
- resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
+ '@babel/plugin-transform-optional-chaining@7.23.4':
+ resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.25.9':
- resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
+ '@babel/plugin-transform-parameters@7.23.3':
+ resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.25.9':
- resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
+ '@babel/plugin-transform-private-methods@7.23.3':
+ resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.25.9':
- resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
+ '@babel/plugin-transform-private-property-in-object@7.23.4':
+ resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.26.3':
- resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-modules-systemjs@7.25.9':
- resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-modules-umd@7.25.9':
- resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
- resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-transform-new-target@7.25.9':
- resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6':
- resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-numeric-separator@7.25.9':
- resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-object-rest-spread@7.25.9':
- resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-object-super@7.25.9':
- resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-optional-catch-binding@7.25.9':
- resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-optional-chaining@7.25.9':
- resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-parameters@7.25.9':
- resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-private-methods@7.25.9':
- resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-private-property-in-object@7.25.9':
- resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-property-literals@7.25.9':
- resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
+ '@babel/plugin-transform-property-literals@7.23.3':
+ resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1339,92 +1497,86 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.25.9':
- resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
+ '@babel/plugin-transform-regenerator@7.23.3':
+ resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regexp-modifiers@7.26.0':
- resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
+ '@babel/plugin-transform-reserved-words@7.23.3':
+ resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-runtime@7.23.7':
+ resolution: {integrity: sha512-fa0hnfmiXc9fq/weK34MUV0drz2pOL/vfKWvN7Qw127hiUPabFCUMgAbYWcchRzMJit4o5ARsK/s+5h0249pLw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-shorthand-properties@7.23.3':
+ resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-spread@7.23.3':
+ resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-sticky-regex@7.23.3':
+ resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-template-literals@7.23.3':
+ resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-typeof-symbol@7.23.3':
+ resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-typescript@7.23.6':
+ resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-escapes@7.23.3':
+ resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-property-regex@7.23.3':
+ resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-regex@7.23.3':
+ resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-sets-regex@7.23.3':
+ resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-reserved-words@7.25.9':
- resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-runtime@7.26.9':
- resolution: {integrity: sha512-Jf+8y9wXQbbxvVYTM8gO5oEF2POdNji0NMltEkG7FtmzD9PVz7/lxpqSdTvwsjTMU5HIHuDVNf2SOxLkWi+wPQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-shorthand-properties@7.25.9':
- resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-spread@7.25.9':
- resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-sticky-regex@7.25.9':
- resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-template-literals@7.26.8':
- resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-typeof-symbol@7.26.7':
- resolution: {integrity: sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-typescript@7.26.8':
- resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-escapes@7.25.9':
- resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-property-regex@7.25.9':
- resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-regex@7.25.9':
- resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.9':
- resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/preset-env@7.26.9':
- resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==}
+ '@babel/preset-env@7.23.8':
+ resolution: {integrity: sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1434,33 +1586,71 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-typescript@7.26.0':
- resolution: {integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==}
+ '@babel/preset-typescript@7.23.3':
+ resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.26.9':
- resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==}
+ '@babel/regjsgen@0.8.0':
+ resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
+
+ '@babel/runtime@7.23.7':
+ resolution: {integrity: sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.26.9':
- resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
+ '@babel/runtime@7.25.6':
+ resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.26.9':
- resolution: {integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==}
+ '@babel/template@7.22.15':
+ resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.9':
- resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==}
+ '@babel/template@7.24.0':
+ resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/template@7.24.6':
+ resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.24.1':
+ resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.23.6':
+ resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.24.0':
+ resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.24.6':
+ resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- '@braintree/sanitize-url@7.1.1':
- resolution: {integrity: sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw==}
+ '@braintree/sanitize-url@7.1.0':
+ resolution: {integrity: sha512-o+UlMLt49RvtCASlOMW0AkHnabN9wR9rwCCherxO0yG4Npy34GkvrAqdXQvrhNs+jh+gkK8gB8Lf05qL/O7KWg==}
+
+ '@casl/ability@6.7.2':
+ resolution: {integrity: sha512-KjKXlcjKbUz8dKw7PY56F7qlfOFgxTU6tnlJ8YrbDyWkJMIlHa6VRWzCD8RU20zbJUC1hExhOFggZjm6tf1mUw==}
'@casl/ability@6.7.3':
resolution: {integrity: sha512-A4L28Ko+phJAsTDhRjzCOZWECQWN2jzZnJPnROWWHjJpyMq1h7h9ZqjwS2WbIUa3Z474X1ZPSgW0f1PboZGC0A==}
@@ -1527,11 +1717,11 @@ packages:
resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
engines: {node: '>=18'}
- '@emnapi/core@1.3.1':
- resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
+ '@emnapi/core@1.2.0':
+ resolution: {integrity: sha512-E7Vgw78I93we4ZWdYCb4DGAwRROGkMIXk7/y87UmANR+J6qsWusmC3gLt0H+O0KOt5e6O38U8oJamgbudrES/w==}
- '@emnapi/runtime@1.3.1':
- resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+ '@emnapi/runtime@1.2.0':
+ resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==}
'@emnapi/wasi-threads@1.0.1':
resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
@@ -1983,8 +2173,8 @@ packages:
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.4.1':
- resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
+ '@eslint-community/eslint-utils@4.4.0':
+ resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
@@ -1993,32 +2183,44 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.19.2':
- resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
+ '@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/core@0.11.0':
resolution: {integrity: sha512-DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.12.0':
- resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
+ '@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@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@9.15.0':
+ resolution: {integrity: sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@9.16.0':
+ resolution: {integrity: sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/js@9.20.0':
resolution: {integrity: sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/object-schema@2.1.6':
- resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
+ '@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.7':
- resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
+ '@eslint/plugin-kit@0.2.3':
+ resolution: {integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/plugin-kit@0.2.6':
+ resolution: {integrity: sha512-+0TjwR1eAUdZtvv/ir1mGX+v0tUoR3VEPB8Up0LLJC+whRW0GgBBtpbOkg/a/U4Dxa6l5a3l9AJ1aWIQVyoWJA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@excalidraw/excalidraw@0.17.6':
@@ -2075,11 +2277,11 @@ packages:
'@fastify/static@8.1.1':
resolution: {integrity: sha512-TW9eyVHJLytZNpBlSIqd0bl1giJkEaRaPZG+5AT3L/OBKq9U8D7g/OYmc2NPQZnzPURGhMt3IAWuyVkvd2nOkQ==}
- '@floating-ui/core@1.6.9':
- resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
+ '@floating-ui/core@1.5.3':
+ resolution: {integrity: sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==}
- '@floating-ui/dom@1.6.13':
- resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
+ '@floating-ui/dom@1.6.3':
+ resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==}
'@floating-ui/react-dom@2.1.2':
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
@@ -2093,8 +2295,8 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/utils@0.2.9':
- resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
+ '@floating-ui/utils@0.2.8':
+ resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
'@hocuspocus/common@2.15.2':
resolution: {integrity: sha512-wU1wxXNnQQMXyeL3mdSDYiQsm/r/QyJVjjQhF7sUBrLnjdsN7bA1cvfcSvJBr1ymrMSeYRmUL3UlQmEHEOaP7w==}
@@ -2137,19 +2339,19 @@ packages:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/retry@0.3.1':
- resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
+ '@humanwhocodes/retry@0.3.0':
+ resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
engines: {node: '>=18.18'}
- '@humanwhocodes/retry@0.4.2':
- resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
+ '@humanwhocodes/retry@0.4.1':
+ resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
engines: {node: '>=18.18'}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- '@iconify/utils@2.3.0':
- resolution: {integrity: sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA==}
+ '@iconify/utils@2.1.33':
+ resolution: {integrity: sha512-jP9h6v/g0BIZx0p7XGJJVtkVnydtbgTgt9mVNcGDYwaa7UhdHdI9dvoq+gKj9sijMSJKxUPEG2JyjsgXjxL7Kw==}
'@inquirer/checkbox@4.1.2':
resolution: {integrity: sha512-PL9ixC5YsPXzXhAZFUPmkXGxfgjkdfZdPEPPmt4kFwQ4LBMDG9n/nHXYRGGZSKZJs+d1sGKWgS2GiPzVRKUdtQ==}
@@ -2359,14 +2561,18 @@ packages:
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- '@joplin/turndown-plugin-gfm@1.0.61':
- resolution: {integrity: sha512-m5PNP1OkktlGgmFI7r/HWON/vQA56GCiM1oTWYkY2JFc28Uc8yHj0nT46pahDyU8uRYPj4TXnxLjQzDDJ11i7w==}
+ '@joplin/turndown-plugin-gfm@1.0.56':
+ resolution: {integrity: sha512-q9Pul+xfmjXNHgNgB+ksRkwcBf13X7C89CDxT4sShrh17dmGsc7AUy+GbnwlmavauMDvsdiDIG8pvGqa1L002g==}
- '@joplin/turndown@4.0.79':
- resolution: {integrity: sha512-doFRDn3PgUA6jpVCHFQhvNYlukuralFfV34hOOZ/JxpIhkp7V7VomtVn1Ct0RrFKuqUM5fVle8wG/J/QWPt2iw==}
+ '@joplin/turndown@4.0.74':
+ resolution: {integrity: sha512-yISsLt6wQCVtJHWf6XaSQv3hw4FxzmL8jLa7GJNZAIpFSg9cWBp9f9+tIbEwT6fzCFt1Vs9dQJSVujUYP/hTzA==}
- '@jridgewell/gen-mapping@0.3.8':
- resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
+ '@jridgewell/gen-mapping@0.3.5':
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/resolve-uri@3.1.1':
+ resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.2':
@@ -2380,6 +2586,9 @@ packages:
'@jridgewell/source-map@0.3.6':
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
+ '@jridgewell/sourcemap-codec@1.4.15':
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
@@ -2389,8 +2598,11 @@ packages:
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- '@lifeomic/attempt@3.1.0':
- resolution: {integrity: sha512-QZqem4QuAnAyzfz+Gj5/+SLxqwCAw2qmt7732ZXodr6VDWGeYLG6w1i/vYLa55JQM9wRuBKLmXmiZ2P0LtE5rw==}
+ '@keyv/serialize@1.0.3':
+ resolution: {integrity: sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g==}
+
+ '@lifeomic/attempt@3.0.3':
+ resolution: {integrity: sha512-GlM2AbzrErd/TmLL3E8hAHmb5Q7VhDJp35vIbyPVA5Rz55LZuRr8pwL3qrwwkVNo05gMX1J44gURKb4MHQZo7w==}
'@lukeed/csprng@1.1.0':
resolution: {integrity: sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA==}
@@ -2453,33 +2665,33 @@ packages:
'@mermaid-js/parser@0.3.0':
resolution: {integrity: sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA==}
- '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
- resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2':
+ resolution: {integrity: sha512-9bfjwDxIDWmmOKusUcqdS4Rw+SETlp9Dy39Xui9BEGEk19dDwH0jhipwFzEff/pFg95NKymc6TOTbRKcWeRqyQ==}
cpu: [arm64]
os: [darwin]
- '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
- resolution: {integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==}
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2':
+ resolution: {integrity: sha512-lwriRAHm1Yg4iDf23Oxm9n/t5Zpw1lVnxYU3HnJPTi2lJRkKTrps1KVgvL6m7WvmhYVt/FIsssWay+k45QHeuw==}
cpu: [x64]
os: [darwin]
- '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
- resolution: {integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==}
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2':
+ resolution: {integrity: sha512-FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg==}
cpu: [arm64]
os: [linux]
- '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
- resolution: {integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==}
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2':
+ resolution: {integrity: sha512-MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA==}
cpu: [arm]
os: [linux]
- '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
- resolution: {integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==}
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2':
+ resolution: {integrity: sha512-gsWNDCklNy7Ajk0vBBf9jEx04RUxuDQfBse918Ww+Qb9HCPoGzS+XJTLe96iN3BVK7grnLiYghP/M4L8VsaHeA==}
cpu: [x64]
os: [linux]
- '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
- resolution: {integrity: sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==}
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2':
+ resolution: {integrity: sha512-O+6Gs8UeDbyFpbSh2CPEz/UOrrdWPTBYNblZK5CxxLisYt4kGX3Sc+czffFonyjiGSq3jWLwJS/CCJc7tBr4sQ==}
cpu: [x64]
os: [win32]
@@ -2734,6 +2946,14 @@ packages:
cpu: [x64]
os: [win32]
+ '@node-saml/node-saml@5.0.0':
+ resolution: {integrity: sha512-4JGubfHgL5egpXiuo9bupSGn6mgpfOQ/brZZvv2Qiho5aJmW7O1khbjdB7tsTsCvNFtLLjQqm3BmvcRicJyA2g==}
+ engines: {node: '>= 18'}
+
+ '@node-saml/passport-saml@5.0.0':
+ resolution: {integrity: sha512-7miY7Id6UkP39+6HO68e3/V6eJwszytEQl+oCh0R/gbzp5nHA/WI1mvrI6NNUVq5gC5GEnDS8GTw7oj+Kx499w==}
+ engines: {node: '>= 18'}
+
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -2978,98 +3198,98 @@ packages:
'@remirror/core-constants@3.0.0':
resolution: {integrity: sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==}
- '@rollup/rollup-android-arm-eabi@4.34.8':
- resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
+ '@rollup/rollup-android-arm-eabi@4.34.7':
+ resolution: {integrity: sha512-l6CtzHYo8D2TQ3J7qJNpp3Q1Iye56ssIAtqbM2H8axxCEEwvN7o8Ze9PuIapbxFL3OHrJU2JBX6FIIVnP/rYyw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.34.8':
- resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
+ '@rollup/rollup-android-arm64@4.34.7':
+ resolution: {integrity: sha512-KvyJpFUueUnSp53zhAa293QBYqwm94TgYTIfXyOTtidhm5V0LbLCJQRGkQClYiX3FXDQGSvPxOTD/6rPStMMDg==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.34.8':
- resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
+ '@rollup/rollup-darwin-arm64@4.34.7':
+ resolution: {integrity: sha512-jq87CjmgL9YIKvs8ybtIC98s/M3HdbqXhllcy9EdLV0yMg1DpxES2gr65nNy7ObNo/vZ/MrOTxt0bE5LinL6mA==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.34.8':
- resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
+ '@rollup/rollup-darwin-x64@4.34.7':
+ resolution: {integrity: sha512-rSI/m8OxBjsdnMMg0WEetu/w+LhLAcCDEiL66lmMX4R3oaml3eXz3Dxfvrxs1FbzPbJMaItQiksyMfv1hoIxnA==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.34.8':
- resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
+ '@rollup/rollup-freebsd-arm64@4.34.7':
+ resolution: {integrity: sha512-oIoJRy3ZrdsXpFuWDtzsOOa/E/RbRWXVokpVrNnkS7npz8GEG++E1gYbzhYxhxHbO2om1T26BZjVmdIoyN2WtA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.34.8':
- resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
+ '@rollup/rollup-freebsd-x64@4.34.7':
+ resolution: {integrity: sha512-X++QSLm4NZfZ3VXGVwyHdRf58IBbCu9ammgJxuWZYLX0du6kZvdNqPwrjvDfwmi6wFdvfZ/s6K7ia0E5kI7m8Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
- resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.7':
+ resolution: {integrity: sha512-Z0TzhrsNqukTz3ISzrvyshQpFnFRfLunYiXxlCRvcrb3nvC5rVKI+ZXPFG/Aa4jhQa1gHgH3A0exHaRRN4VmdQ==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.34.8':
- resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==}
+ '@rollup/rollup-linux-arm-musleabihf@4.34.7':
+ resolution: {integrity: sha512-nkznpyXekFAbvFBKBy4nNppSgneB1wwG1yx/hujN3wRnhnkrYVugMTCBXED4+Ni6thoWfQuHNYbFjgGH0MBXtw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.34.8':
- resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==}
+ '@rollup/rollup-linux-arm64-gnu@4.34.7':
+ resolution: {integrity: sha512-KCjlUkcKs6PjOcxolqrXglBDcfCuUCTVlX5BgzgoJHw+1rWH1MCkETLkLe5iLLS9dP5gKC7mp3y6x8c1oGBUtA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.34.8':
- resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==}
+ '@rollup/rollup-linux-arm64-musl@4.34.7':
+ resolution: {integrity: sha512-uFLJFz6+utmpbR313TTx+NpPuAXbPz4BhTQzgaP0tozlLnGnQ6rCo6tLwaSa6b7l6gRErjLicXQ1iPiXzYotjw==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
- resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.7':
+ resolution: {integrity: sha512-ws8pc68UcJJqCpneDFepnwlsMUFoWvPbWXT/XUrJ7rWUL9vLoIN3GAasgG+nCvq8xrE3pIrd+qLX/jotcLy0Qw==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
- resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.7':
+ resolution: {integrity: sha512-vrDk9JDa/BFkxcS2PbWpr0C/LiiSLxFbNOBgfbW6P8TBe9PPHx9Wqbvx2xgNi1TOAyQHQJ7RZFqBiEohm79r0w==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.34.8':
- resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==}
+ '@rollup/rollup-linux-riscv64-gnu@4.34.7':
+ resolution: {integrity: sha512-rB+ejFyjtmSo+g/a4eovDD1lHWHVqizN8P0Hm0RElkINpS0XOdpaXloqM4FBkF9ZWEzg6bezymbpLmeMldfLTw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.34.8':
- resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==}
+ '@rollup/rollup-linux-s390x-gnu@4.34.7':
+ resolution: {integrity: sha512-nNXNjo4As6dNqRn7OrsnHzwTgtypfRA3u3AKr0B3sOOo+HkedIbn8ZtFnB+4XyKJojIfqDKmbIzO1QydQ8c+Pw==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.34.8':
- resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==}
+ '@rollup/rollup-linux-x64-gnu@4.34.7':
+ resolution: {integrity: sha512-9kPVf9ahnpOMSGlCxXGv980wXD0zRR3wyk8+33/MXQIpQEOpaNe7dEHm5LMfyRZRNt9lMEQuH0jUKj15MkM7QA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.34.8':
- resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==}
+ '@rollup/rollup-linux-x64-musl@4.34.7':
+ resolution: {integrity: sha512-7wJPXRWTTPtTFDFezA8sle/1sdgxDjuMoRXEKtx97ViRxGGkVQYovem+Q8Pr/2HxiHp74SSRG+o6R0Yq0shPwQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.34.8':
- resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.34.7':
+ resolution: {integrity: sha512-MN7aaBC7mAjsiMEZcsJvwNsQVNZShgES/9SzWp1HC9Yjqb5OpexYnRjF7RmE4itbeesHMYYQiAtUAQaSKs2Rfw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.34.8':
- resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==}
+ '@rollup/rollup-win32-ia32-msvc@4.34.7':
+ resolution: {integrity: sha512-aeawEKYswsFu1LhDM9RIgToobquzdtSc4jSVqHV8uApz4FVvhFl/mKh92wc8WpFc6aYCothV/03UjY6y7yLgbg==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.34.8':
- resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==}
+ '@rollup/rollup-win32-x64-msvc@4.34.7':
+ resolution: {integrity: sha512-4ZedScpxxIrVO7otcZ8kCX1mZArtH2Wfj3uFCxRJ9NO80gg1XV0U/b2f/MKaGwj2X3QopHfoWiDQ917FRpwY3w==}
cpu: [x64]
os: [win32]
@@ -3226,6 +3446,10 @@ packages:
resolution: {integrity: sha512-bNwBYYmN8Eh9RyjS1p2gW6MIhSO2rl7X9QeLM8iTdcGRP+eDiIWDt66c9IysCc22gefKszZv+ubV9qZc7hdESg==}
engines: {node: '>=16.0.0'}
+ '@smithy/types@4.1.0':
+ resolution: {integrity: sha512-enhjdwp4D7CXmwLtD6zbcDMbo6/T6WtuuKCY49Xxc6OMOmUWlBEBDREsxxgV2LIdeQPW756+f97GzcgAwp3iLw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/url-parser@3.0.11':
resolution: {integrity: sha512-TmlqXkSk8ZPhfc+SQutjmFr5FjC0av3GZP4B/10caK1SbRwe/v+Wzu/R6xEKxoNqL+8nY18s1byiy6HqPG37Aw==}
@@ -3296,8 +3520,8 @@ packages:
resolution: {integrity: sha512-PpjSboaDUE6yl+1qlg3Si57++e84oXdWGbuFUSAciXsVfEZJJJupR2Nb0QuXHiunt2vGR+1PTizOMvnUPaG2Qg==}
engines: {node: '>=16.0.0'}
- '@socket.io/component-emitter@3.1.2':
- resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
+ '@socket.io/component-emitter@3.1.0':
+ resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==}
'@socket.io/redis-adapter@8.3.0':
resolution: {integrity: sha512-ly0cra+48hDmChxmIpnESKrc94LjRL80TEmZVscuQ/WWkRP81nNj8W8cCGMqbI4L6NCuAaPRSzZF1a9GlAxxnA==}
@@ -3305,61 +3529,133 @@ packages:
peerDependencies:
socket.io-adapter: ^2.5.4
+ '@swc/core-darwin-arm64@1.5.25':
+ resolution: {integrity: sha512-YbD0SBgVJS2DM0vwJTU5m7+wOyCjHPBDMf3nCBJQzFZzOLzK11eRW7SzU2jhJHr9HI9sKcNFfN4lIC2Sj+4inA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@swc/core-darwin-x64@1.5.25':
+ resolution: {integrity: sha512-OhP4TROT6gQuozn+ah0Y4UidSdgDmxwtQq3lgCUIAxJYErJAQ82/Y0kve2UaNmkSGjOHU+/b4siHPrYTkXOk0Q==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@swc/core-linux-arm-gnueabihf@1.5.25':
+ resolution: {integrity: sha512-tNmUfrAHxN2gvYPyYNnHx2CYlPO7DGAUuK/bZrqawu++djcg+atAV3eI3XYJgmHId7/sYAlDQ9wjkrOLofFjVg==}
+ engines: {node: '>=10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@swc/core-linux-arm64-gnu@1.5.25':
+ resolution: {integrity: sha512-stzpke+bRaNFM/HrZPRjX0aQZ86S/2DChVCwb8NAV1n5lu9mz1CS750y7WbbtX/KZjk92FsCeRy2qwkvjI0gWw==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@swc/core-linux-arm64-musl@1.5.25':
+ resolution: {integrity: sha512-UckUfDYedish/bj2V1jgQDGgouLhyRpG7jgF3mp8jHir11V2K6JiTyjFoz99eOiclS3+hNdr4QLJ+ifrQMJNZw==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@swc/core-linux-x64-gnu@1.5.25':
+ resolution: {integrity: sha512-LwbJEgNT3lXbvz4WFzVNXNvs8DvxpoXjMZk9K9Hig8tmZQJKHC2qZTGomcyK5EFzfj2HBuBXZnAEW8ZT9PcEaA==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@swc/core-linux-x64-musl@1.5.25':
+ resolution: {integrity: sha512-rsepMTgml0EkswWkBpg3Wrjj5eqjwTzZN5omAn1klzXSZnClTrfeHvBuoIJYVr1yx+jmBkqySgME2p7+magUAw==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@swc/core-win32-arm64-msvc@1.5.25':
+ resolution: {integrity: sha512-DJDsLBsRBV3uQBShRK2x6fqzABp9RLNVxDUpTTvUjc7qywJ8vS/yn+POK/zCyVEqLagf1z/8D5CEQ+RAIJq1NA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@swc/core-win32-ia32-msvc@1.5.25':
+ resolution: {integrity: sha512-BARL1ulHol53MEKC1ZVWM3A3FP757UUgG5Q8v97za+4a1SaIgbwvAQyHDxMYWi9+ij+OapK8YnWjJcFa17g8dw==}
+ engines: {node: '>=10'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@swc/core-win32-x64-msvc@1.5.25':
+ resolution: {integrity: sha512-o+MHUWrQI9iR6EusEV8eNU2Ezi3KtlhUR4gfptQN5MbVzlgjTvQbhiKpE1GYOxp+0BLBbKRwITKOcdhxfEJ2Uw==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@swc/core@1.5.25':
+ resolution: {integrity: sha512-qdGEIdLVoTjEQ7w72UyyQ0wLFY4XbHfZiidmPHKJQsvSXzdpHXxPdlTCea/mY4AhMqo/M+pvkJSXJAxZnFl7qw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@swc/helpers': '*'
+ peerDependenciesMeta:
+ '@swc/helpers':
+ optional: true
+
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
- '@tabler/icons-react@3.30.0':
- resolution: {integrity: sha512-9KZ9D1UNAyjlLkkYp2HBPHdf6lAJ2aelDqh8YYAnnmLF3xwprWKxxW8+zw5jlI0IwdfN4XFFuzqePkaw+DpIOg==}
+ '@swc/types@0.1.7':
+ resolution: {integrity: sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==}
+
+ '@tabler/icons-react@3.22.0':
+ resolution: {integrity: sha512-pOnn+IqZpnkYsEKRvbXXLXwXhYwg4cy1fEVr5SRrgAYJXkobpDjFTdVHlab0HEBXY5AE1NjsMlVeK6H/8Vv2uQ==}
peerDependencies:
react: '>= 16'
- '@tabler/icons@3.30.0':
- resolution: {integrity: sha512-c8OKLM48l00u9TFbh2qhSODMONIzML8ajtCyq95rW8vzkWcBrKRPM61tdkThz2j4kd5u17srPGIjqdeRUZdfdw==}
+ '@tabler/icons@3.22.0':
+ resolution: {integrity: sha512-IfgGzhFph5OBr2wTieWL/hyAs0FThnq9O155a6kfGYxqx7h5LQw91wnRswhEaGhXCcfmR7ZVDUr9H+x4b9Pb8g==}
- '@tanstack/eslint-plugin-query@5.66.1':
- resolution: {integrity: sha512-pYMVTGgJ7yPk9Rm6UWEmbY6TX0EmMmxJqYkthgeDCwEznToy2m+W928nUODFirtZBZlhBsqHy33LO0kyTlgf0w==}
+ '@tanstack/eslint-plugin-query@5.62.1':
+ resolution: {integrity: sha512-1886D5U+re1TW0wSH4/kUGG36yIoW5Wkz4twVEzlk3ZWmjF3XkRSWgB+Sc7n+Lyzt8usNV8ZqkZE6DA7IC47fQ==}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@tanstack/query-core@5.66.4':
- resolution: {integrity: sha512-skM/gzNX4shPkqmdTCSoHtJAPMTtmIJNS0hE+xwTTUVYwezArCT34NMermABmBVUg5Ls5aiUXEDXfqwR1oVkcA==}
+ '@tanstack/query-core@5.61.4':
+ resolution: {integrity: sha512-rsnemyhPvEG4ViZe0R2UQDM8NgQS/BNC5/Gf9RTs0TKN5thUhPUwnL2anWG4jxAGKFyDfvG7PXbx6MRq3hxi1w==}
- '@tanstack/react-query@5.66.8':
- resolution: {integrity: sha512-LqYHYArmM7ycyT1I/Txc/n6KzI8S/hBFw2SQ9Uj1GpbZ89AvZLEvetquiQEHkZ5rFEm+iVNpZ6zYjTiPmJ9N5Q==}
+ '@tanstack/react-query@5.61.4':
+ resolution: {integrity: sha512-Nh5+0V4fRVShSeDHFTVvzJrvwTdafIvqxyZUrad71kJWL7J+J5Wrd/xcHTWfSL1mR/9eoufd2roXOpL3F16ECA==}
peerDependencies:
react: ^18 || ^19
- '@tiptap/core@2.11.5':
- resolution: {integrity: sha512-jb0KTdUJaJY53JaN7ooY3XAxHQNoMYti/H6ANo707PsLXVeEqJ9o8+eBup1JU5CuwzrgnDc2dECt2WIGX9f8Jw==}
+ '@tiptap/core@2.10.3':
+ resolution: {integrity: sha512-wAG/0/UsLeZLmshWb6rtWNXKJftcmnned91/HLccHVQAuQZ1UWH+wXeQKu/mtodxEO7JcU2mVPR9mLGQkK0McQ==}
peerDependencies:
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-blockquote@2.11.5':
- resolution: {integrity: sha512-MZfcRIzKRD8/J1hkt/eYv49060GTL6qGR3NY/oTDuw2wYzbQXXLEbjk8hxAtjwNn7G+pWQv3L+PKFzZDxibLuA==}
+ '@tiptap/extension-blockquote@2.10.3':
+ resolution: {integrity: sha512-u9Mq4r8KzoeGVT8ms6FQDIMN95dTh3TYcT7fZpwcVM96mIl2Oyt+Bk66mL8z4zuFptfRI57Cu9QdnHEeILd//w==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-bold@2.11.5':
- resolution: {integrity: sha512-OAq03MHEbl7MtYCUzGuwb0VpOPnM0k5ekMbEaRILFU5ZC7cEAQ36XmPIw1dQayrcuE8GZL35BKub2qtRxyC9iA==}
+ '@tiptap/extension-bold@2.10.3':
+ resolution: {integrity: sha512-xnF1tS2BsORenr11qyybW120gHaeHKiKq+ZOP14cGA0MsriKvWDnaCSocXP/xMEYHy7+2uUhJ0MsKkHVj4bPzQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-bubble-menu@2.11.5':
- resolution: {integrity: sha512-rx+rMd7EEdht5EHLWldpkzJ56SWYA9799b33ustePqhXd6linnokJCzBqY13AfZ9+xp3RsR6C0ZHI9GGea0tIA==}
+ '@tiptap/extension-bubble-menu@2.10.3':
+ resolution: {integrity: sha512-e9a4yMjQezuKy0rtyyzxbV2IAE1bm1PY3yoZEFrcaY0o47g1CMUn2Hwe+9As2HdntEjQpWR7NO1mZeKxHlBPYA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-bullet-list@2.11.5':
- resolution: {integrity: sha512-VXwHlX6A/T6FAspnyjbKDO0TQ+oetXuat6RY1/JxbXphH42nLuBaGWJ6pgy6xMl6XY8/9oPkTNrfJw/8/eeRwA==}
+ '@tiptap/extension-bullet-list@2.10.3':
+ resolution: {integrity: sha512-PTkwJOVlHi4RR4Wrs044tKMceweXwNmWA6EoQ93hPUVtQcwQL990Es5Izp+i88twTPLuGD9dH+o9QDyH9SkWdA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-code-block-lowlight@2.11.5':
- resolution: {integrity: sha512-EIE+mAGsp8C69dI0Yyg+VH1x36rgyPJc93SfA7h4xFF6Oth18z4YhJtiLaZcwCMyOOVs2efApZ0R3/Fnz2VlqA==}
+ '@tiptap/extension-code-block-lowlight@2.10.3':
+ resolution: {integrity: sha512-ieRSdfDW06pmKcsh73N506/EWNJrpMrZzyuFx3YGJtfM+Os0a9hMLy2TSuNleyRsihBi5mb+zvdeqeGdaJm7Ng==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-code-block': ^2.7.0
@@ -3367,233 +3663,233 @@ packages:
highlight.js: ^11
lowlight: ^2 || ^3
- '@tiptap/extension-code-block@2.11.5':
- resolution: {integrity: sha512-ksxMMvqLDlC+ftcQLynqZMdlJT1iHYZorXsXw/n+wuRd7YElkRkd6YWUX/Pq/njFY6lDjKiqFLEXBJB8nrzzBA==}
+ '@tiptap/extension-code-block@2.10.3':
+ resolution: {integrity: sha512-yiDVNg22fYkzsFk5kBlDSHcjwVJgajvO/M5fDXA+Hfxwo2oNcG6aJyyHXFe+UaXTVjdkPej0J6kcMKrTMCiFug==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-code@2.11.5':
- resolution: {integrity: sha512-xOvHevNIQIcCCVn9tpvXa1wBp0wHN/2umbAZGTVzS+AQtM7BTo0tz8IyzwxkcZJaImONcUVYLOLzt2AgW1LltA==}
+ '@tiptap/extension-code@2.10.3':
+ resolution: {integrity: sha512-JyLbfyY3cPctq9sVdpcRWTcoUOoq3/MnGE1eP6eBNyMTHyBPcM9TPhOkgj+xkD1zW/884jfelB+wa70RT/AMxQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-collaboration-cursor@2.11.5':
- resolution: {integrity: sha512-sazBzi5HCHgGRihSzWHhHFMSI9oU0v/qqiDZYJ/zhzCKEWONx8WlS6WTxo6z3l6/Qz9lm7clmHNUQNWxnssAOA==}
+ '@tiptap/extension-collaboration-cursor@2.10.3':
+ resolution: {integrity: sha512-Jy2NnL1XEo5TvMruqZ16gIvOpoQxUHMD/WBk/hkF40nIk8RzzWaiF700jA9WEehyTbsFvNdyayLNiQ6xtdvTOg==}
peerDependencies:
'@tiptap/core': ^2.7.0
y-prosemirror: ^1.2.11
- '@tiptap/extension-collaboration@2.11.5':
- resolution: {integrity: sha512-3tMMq0E+FM3/3YBUMq5rLvks2DC/t1XLH2Kz/VcuVCxqg1Zg5s9nKOl6CcUZ8gbdvZoEd/GYoQyROJ957v9wzw==}
+ '@tiptap/extension-collaboration@2.10.3':
+ resolution: {integrity: sha512-QythXxiYNiypHpBL2/352gBfFtvi8A4Yxw5jptzVTEuGnzOCX4PKvmjZmgH1q6lVyV3G7TPxeepYtNpJPxqI1w==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
y-prosemirror: ^1.2.11
- '@tiptap/extension-color@2.11.5':
- resolution: {integrity: sha512-9gZF6EIpfOJYUt1TtFY37e8iqwKcOmBl8CkFaxq+4mWVvYd2D7KbA0r4tYTxSO0fOBJ5fA/1qJrpvgRlyocp/A==}
+ '@tiptap/extension-color@2.10.3':
+ resolution: {integrity: sha512-FC2hPMSQ4w9UmO9kJCAdoU7gHpDbJ6MeJAmikB9EPp16dbGwFLrZm9TZ/4pv74fGfVm0lv720316ALOEgPEDjQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/extension-text-style': ^2.7.0
- '@tiptap/extension-document@2.11.5':
- resolution: {integrity: sha512-7I4BRTpIux2a0O2qS3BDmyZ5LGp3pszKbix32CmeVh7lN9dV7W5reDqtJJ9FCZEEF+pZ6e1/DQA362dflwZw2g==}
+ '@tiptap/extension-document@2.10.3':
+ resolution: {integrity: sha512-6i8+xbS2zB6t8iFzli1O/QB01MmwyI5Hqiiv4m5lOxqavmJwLss2sRhoMC2hB3CyFg5UmeODy/f/RnI6q5Vixg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-dropcursor@2.11.5':
- resolution: {integrity: sha512-uIN7L3FU0904ec7FFFbndO7RQE/yiON4VzAMhNn587LFMyWO8US139HXIL4O8dpZeYwYL3d1FnDTflZl6CwLlg==}
+ '@tiptap/extension-dropcursor@2.10.3':
+ resolution: {integrity: sha512-wzWf82ixWzZQr0hxcf/A0ul8NNxgy1N63O+c56st6OomoLuKUJWOXF+cs9O7V+/5rZKWdbdYYoRB5QLvnDBAlQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-floating-menu@2.11.5':
- resolution: {integrity: sha512-HsMI0hV5Lwzm530Z5tBeyNCBNG38eJ3qjfdV2OHlfSf3+KOEfn6a5AUdoNaZO02LF79/8+7BaYU2drafag9cxQ==}
+ '@tiptap/extension-floating-menu@2.10.3':
+ resolution: {integrity: sha512-Prg8rYLxeyzHxfzVu1mDkkUWMnD9ZN3y370O/1qy55e+XKVw9jFkTSuz0y0+OhMJG6bulYpDUMtb+N3+2xOWlQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-gapcursor@2.11.5':
- resolution: {integrity: sha512-kcWa+Xq9cb6lBdiICvLReuDtz/rLjFKHWpW3jTTF3FiP3wx4H8Rs6bzVtty7uOVTfwupxZRiKICAMEU6iT0xrQ==}
+ '@tiptap/extension-gapcursor@2.10.3':
+ resolution: {integrity: sha512-FskZi2DqDSTH1WkgLF2OLy0xU7qj3AgHsKhVsryeAtld4jAK5EsonneWgaipbz0e/MxuIvc1oyacfZKABpLaNg==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-hard-break@2.11.5':
- resolution: {integrity: sha512-q9doeN+Yg9F5QNTG8pZGYfNye3tmntOwch683v0CCVCI4ldKaLZ0jG3NbBTq+mosHYdgOH2rNbIORlRRsQ+iYQ==}
+ '@tiptap/extension-hard-break@2.10.3':
+ resolution: {integrity: sha512-2rFlimUKAgKDwT6nqAMtPBjkrknQY8S7oBNyIcDOUGyFkvbDUl3Jd0PiC929S5F3XStJRppnMqhpNDAlWmvBLA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-heading@2.11.5':
- resolution: {integrity: sha512-x/MV53psJ9baRcZ4k4WjnCUBMt8zCX7mPlKVT+9C/o+DEs/j/qxPLs95nHeQv70chZpSwCQCt93xMmuF0kPoAg==}
+ '@tiptap/extension-heading@2.10.3':
+ resolution: {integrity: sha512-AlxXXPCWIvw8hQUDFRskasj32iMNB8Sb19VgyFWqwvntGs2/UffNu8VdsVqxD2HpZ0g5rLYCYtSW4wigs9R3og==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-highlight@2.11.5':
- resolution: {integrity: sha512-VBZfT869L9CiTLF8qr+3FBUtJcmlyUTECORNo0ceEiNDg4H6V9uNPwaROMXrWiQCc+DYVCOkx541QrXwNMzxlg==}
+ '@tiptap/extension-highlight@2.10.3':
+ resolution: {integrity: sha512-srMOdpUTcp1yPGmUqgKOkbmTpCYOF6Q/8CnquDkhrvK7Gyphj+n8TocrKiloaRYZKcoQWtmb+kcVPaHhHMzsWQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-history@2.11.5':
- resolution: {integrity: sha512-b+wOS33Dz1azw6F1i9LFTEIJ/gUui0Jwz5ZvmVDpL2ZHBhq1Ui0/spTT+tuZOXq7Y/uCbKL8Liu4WoedIvhboQ==}
+ '@tiptap/extension-history@2.10.3':
+ resolution: {integrity: sha512-HaSiMdx9Im9Pb9qGlVud7W8bweRDRMez33Uzs5a2x0n1RWkelfH7TwYs41Y3wus8Ujs7kw6qh7jyhvPpQBKaSA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-horizontal-rule@2.11.5':
- resolution: {integrity: sha512-3up2r1Du8/5/4ZYzTC0DjTwhgPI3dn8jhOCLu73m5F3OGvK/9whcXoeWoX103hYMnGDxBlfOje71yQuN35FL4A==}
+ '@tiptap/extension-horizontal-rule@2.10.3':
+ resolution: {integrity: sha512-1a2IWhD00tgUNg/91RLnBvfENL7DLCui5L245+smcaLu+OXOOEpoBHawx59/M4hEpsjqvRRM79TzO9YXfopsPw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-image@2.11.5':
- resolution: {integrity: sha512-HbUq9AL8gb8eSuQfY/QKkvMc66ZFN/b6jvQAILGArNOgalUfGizoC6baKTJShaExMSPjBZlaAHtJiQKPaGRHaA==}
+ '@tiptap/extension-image@2.10.3':
+ resolution: {integrity: sha512-YIjAF5CwDkMe28OQ5pvnmdRgbJ9JcGMIHY1kyqNunSf2iwphK+6SWz9UEIkDFiT7AsRZySqxFSq93iK1XyTifw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-italic@2.11.5':
- resolution: {integrity: sha512-9VGfb2/LfPhQ6TjzDwuYLRvw0A6VGbaIp3F+5Mql8XVdTBHb2+rhELbyhNGiGVR78CaB/EiKb6dO9xu/tBWSYA==}
+ '@tiptap/extension-italic@2.10.3':
+ resolution: {integrity: sha512-wAiO6ZxoHx2H90phnKttLWGPjPZXrfKxhOCsqYrK8BpRByhr48godOFRuGwYnKaiwoVjpxc63t+kDJDWvqmgMw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-link@2.11.5':
- resolution: {integrity: sha512-4Iu/aPzevbYpe50xDI0ZkqRa6nkZ9eF270Ue2qaF3Ab47nehj+9Jl78XXzo8+LTyFMnrETI73TAs1aC/IGySeQ==}
+ '@tiptap/extension-link@2.10.3':
+ resolution: {integrity: sha512-8esKlkZBzEiNcpt7I8Cd6l1mWmCc/66pPbUq9LfnIniDXE3U+ahBf4m3TJltYFBGbiiTR/xqMtJyVHOpuLDtAw==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-list-item@2.11.5':
- resolution: {integrity: sha512-Mp5RD/pbkfW1vdc6xMVxXYcta73FOwLmblQlFNn/l/E5/X1DUSA4iGhgDDH4EWO3swbs03x2f7Zka/Xoj3+WLg==}
+ '@tiptap/extension-list-item@2.10.3':
+ resolution: {integrity: sha512-9sok81gvZfSta2K1Dwrq5/HSz1jk4zHBpFqCx0oydzodGslx6X1bNxdca+eXJpXZmQIWALK7zEr4X8kg3WZsgw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-list-keymap@2.11.5':
- resolution: {integrity: sha512-K40Qil2Elr3LOIOAPjkO+XS85XrNaoXvVhOSJ+82R4vb2WQnhCI6YbrQxwx6SBwTQ9uDdHKjRNM7NMyw0LqDvQ==}
+ '@tiptap/extension-list-keymap@2.10.3':
+ resolution: {integrity: sha512-MvQ6wonY1ZZxM/QJfsmK8FOcofz8pw/imwdssSx108MSBe9dkQS9K4BYIFiumGokoSBXo8ftSY2KXdiS3wnEEg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-ordered-list@2.11.5':
- resolution: {integrity: sha512-Cu8KwruBNWAaEfshRQR0yOSaUKAeEwxW7UgbvF9cN/zZuKgK5uZosPCPTehIFCcRe+TBpRtZQh+06f/gNYpYYg==}
+ '@tiptap/extension-ordered-list@2.10.3':
+ resolution: {integrity: sha512-/SFuEDnbJxy3jvi72LeyiPHWkV+uFc0LUHTUHSh20vwyy+tLrzncJfXohGbTIv5YxYhzExQYZDRD4VbSghKdlw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-paragraph@2.11.5':
- resolution: {integrity: sha512-YFBWeg7xu/sBnsDIF/+nh9Arf7R0h07VZMd0id5Ydd2Qe3c1uIZwXxeINVtH0SZozuPIQFAT8ICe9M0RxmE+TA==}
+ '@tiptap/extension-paragraph@2.10.3':
+ resolution: {integrity: sha512-sNkTX/iN+YoleDiTJsrWSBw9D7c4vsYwnW5y/G5ydfuJMIRQMF78pWSIWZFDRNOMkgK5UHkhu9anrbCFYgBfaA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-placeholder@2.11.5':
- resolution: {integrity: sha512-Pr+0Ju/l2ZvXMd9VQxtaoSZbs0BBp1jbBDqwms88ctpyvQFRfLSfSkqudQcSHyw2ROOz2E31p/7I7fpI8Y0CLA==}
+ '@tiptap/extension-placeholder@2.10.3':
+ resolution: {integrity: sha512-0OkwnDLguZgoiJM85cfnOySuMmPUF7qqw7DHQ+c3zwTAYnvzpvqrvpupc+2Zi9GfC1sDgr+Ajrp8imBHa6PHfA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-strike@2.11.5':
- resolution: {integrity: sha512-PVfUiCqrjvsLpbIoVlegSY8RlkR64F1Rr2RYmiybQfGbg+AkSZXDeO0eIrc03//4gua7D9DfIozHmAKv1KN3ow==}
+ '@tiptap/extension-strike@2.10.3':
+ resolution: {integrity: sha512-jYoPy6F6njYp3txF3u23bgdRy/S5ATcWDO9LPZLHSeikwQfJ47nqb+EUNo5M8jIOgFBTn4MEbhuZ6OGyhnxopA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-subscript@2.11.5':
- resolution: {integrity: sha512-VpaSzxku/Bcvf4SgDB2K5d0E+FNA/56iJHMygg/WXsq2F4tMMUEivQHI/n+17ndUEO4Wybz0wItnM1G2JfRuLQ==}
+ '@tiptap/extension-subscript@2.10.3':
+ resolution: {integrity: sha512-GkOwXIruM7QksmlfqLTKTC6JBpWSBDN2eeoPwggxXuqetqYs4sIx1ul3LEGDQy0vglcFKGkbbO2IiHCO/0fSWA==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-superscript@2.11.5':
- resolution: {integrity: sha512-sK6v2G0zFfGW+j9CmYp2e+tyZ3FTa3dP0xY4kJzefgZcHhMJLlLnjxBRwHCSi/jj5ie6WdZT4KoEooxnPs1Vzw==}
+ '@tiptap/extension-superscript@2.10.3':
+ resolution: {integrity: sha512-4bXDPyT10ByVCLXFR8A70TcpFJ0H3PicRsxKJcQ+KZIauNUo5BBUpkF2cK+IOUp4UZ1W5ZBeuMQG5HWMuV9T1A==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-table-cell@2.11.5':
- resolution: {integrity: sha512-S967Au0pgeULstP3FaasOf/LEh72p61Ooh1PcUMF/az4x8EeGgpcEUARpVUxsGxLFvogv6LmhPHZdtcGgdHcBw==}
+ '@tiptap/extension-table-cell@2.10.3':
+ resolution: {integrity: sha512-EYzBrnq7KUAcRhshIoTmC4ED8YoF4Ei5m8ZMPOctKX+QMAagKdcrw2UxuOf4tP2xgBYx+qDsKCautepZXQiL2g==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-table-header@2.11.5':
- resolution: {integrity: sha512-O1iBtzZP1XZDi4h1Xmgq1T63il+fpKPvBIMZ0JJH9TyCw5i5rcrMLL2dyy5zaWK3BFRJuYBNSke4c+VWnr/g6w==}
+ '@tiptap/extension-table-header@2.10.3':
+ resolution: {integrity: sha512-zJqzivz+VITYIFXNH09leBbkwAPuvp504rCAFL2PMa1uaME6+oiiRqZvXQrOiRkjNpOWEXH4dqvVLwkSMZoWaw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-table-row@2.11.5':
- resolution: {integrity: sha512-+/VWhCuW24BcM5aaIc/f0bC6ZR1Q5gnuqw13MIo7gyPx7iIY6BXK8roGiZSs8wYAN4uBEf3EKFm0bSZwQuAeyg==}
+ '@tiptap/extension-table-row@2.10.3':
+ resolution: {integrity: sha512-l6P6BAE4SuIFdPmsRd+zGP2Ks9AhLAua7nfDlHFMWDnfOeaJu7g/t4oG++9xTojDcVDHhcIe8TJYUXfhOt2anw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-table@2.11.5':
- resolution: {integrity: sha512-NKXLhKWdAdURklm98YkCd2ai4fh8jY8HS/+X2s/2QiQt8Z98CU1keCm35fJEEExM234iB/hCqG5vY4JgTc0Tvw==}
+ '@tiptap/extension-table@2.10.3':
+ resolution: {integrity: sha512-XAvq0ptpHfuN7lQhTeew4Sqo8aKYHTqroa7cHL8I+gWJqYqKJSTGb4FAqdGIFEzHvnSsMCFbTL//kAHXvTdsHg==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-task-item@2.11.5':
- resolution: {integrity: sha512-Xvvww8cleM6fcNejP916vzhL31yJnAmuBvABsOV0kHGtAqkqUVCSDcN/1qjI4ihVNeIWEJBHDczjDfZzvLy1xA==}
+ '@tiptap/extension-task-item@2.10.3':
+ resolution: {integrity: sha512-vE4qxGrZTdwynHq6l5xN0jI0ahDZpmKeoD6yuCMNyN831dgHXEjNrV8oBtZUvvqChFRc/LiSmUbrTInUn5xeNg==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/extension-task-list@2.11.5':
- resolution: {integrity: sha512-DJpIrBu/bjXYmyYoWQDH2GkpvRmizT9Fvbx5MscFYyfmSsYryD3vRBtCDz08gviwoRII+pFBrG4Ynb0XuQ7DsA==}
+ '@tiptap/extension-task-list@2.10.3':
+ resolution: {integrity: sha512-Zj1pj+6VrL8VXlFYWdcLlCMykzARsvdqdU8cGVnBuC0H0vrSSfLGl+GxGnQwxTnqiNtxR4t70DLi/UjFBvzlqw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-text-align@2.11.5':
- resolution: {integrity: sha512-Ei0zDpH5N9EV59ogydK4HTKa4lCPicCsQllM5n/Nf2tUJPir3aiYxzJ73FzhComD4Hpo1ANYnmssBhy8QeoPZA==}
+ '@tiptap/extension-text-align@2.10.3':
+ resolution: {integrity: sha512-g75sNl73gtgjP3XIcl06kvv1qw3c0rGEUD848rUU1bvlBpU3IxjkcQLgYvHmv3vpuUp9cKUkA2wa7Sv6R3fjvw==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-text-style@2.11.5':
- resolution: {integrity: sha512-YUmYl0gILSd/u/ZkOmNxjNXVw+mu8fpC2f8G4I4tLODm0zCx09j9DDEJXSrM5XX72nxJQqtSQsCpNKnL0hfeEQ==}
+ '@tiptap/extension-text-style@2.10.3':
+ resolution: {integrity: sha512-TalYIdlF7vBA4afFhmido7AORdBbu3sV+HCByda0FiNbM6cjng3Nr9oxHOCVJy+ChqrcgF4m54zDfLmamdyu5Q==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-text@2.11.5':
- resolution: {integrity: sha512-Gq1WwyhFpCbEDrLPIHt5A8aLSlf8bfz4jm417c8F/JyU0J5dtYdmx0RAxjnLw1i7ZHE7LRyqqAoS0sl7JHDNSQ==}
+ '@tiptap/extension-text@2.10.3':
+ resolution: {integrity: sha512-7p9XiRprsRZm8y9jvF/sS929FCELJ5N9FQnbzikOiyGNUx5mdI+exVZlfvBr9xOD5s7fBLg6jj9Vs0fXPNRkPg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-typography@2.11.5':
- resolution: {integrity: sha512-K+mwkyyH3bhnw8f6dKt0AIIh7ipPPVTY5XiWxm1ZMnS6p7TkXeqSJRU6mT1a47YLX4IGBEMlTQdvDVvJ1hwTjA==}
+ '@tiptap/extension-typography@2.10.3':
+ resolution: {integrity: sha512-lLUm6PSufACffAFQaK3bwoM3nFlQ/RdG21a3rKOoLWh+abYvIZ8UilYgebH9r2+DBET6UrG7I/0mBtm+L/Lheg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-underline@2.11.5':
- resolution: {integrity: sha512-YpWHXNIkSoRSuzT2cvgKpyJ2tTz3LzqkTM64uC+uTJ8cUkvXIWUWejJR42q8ma/mTlQe4lHff4IQ0Sf58Digtw==}
+ '@tiptap/extension-underline@2.10.3':
+ resolution: {integrity: sha512-VeGs0jeNiTnXddHHJEgOc/sKljZiyTEgSSuqMmsBACrr9aGFXbLTgKTvNjkZ9WzSnu7LwgJuBrwEhg8yYixUyQ==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/extension-youtube@2.11.5':
- resolution: {integrity: sha512-9XEH/zx/FlL/liJsncstcze98C73iupCbWlhAfC8+9O0wDmHEwaFyLSj+5LDqozWwzFnJmFOy7uZXfOY90kWGg==}
+ '@tiptap/extension-youtube@2.10.3':
+ resolution: {integrity: sha512-NcYpK/sI63l8cvcRYxrgOcrIj8cRz138iLlZYdfhNT2gffjuTpTNAqZSUysCNifIpZlYEMzq0pWN7VawLdR4Gg==}
peerDependencies:
'@tiptap/core': ^2.7.0
- '@tiptap/html@2.11.5':
- resolution: {integrity: sha512-B7ZuFV4Z6JytBhcj4865yGldPite+xX7O3X4hBUNoPpxhDf7BD+lSOgeZabZteQPnP6TKKqFT50q/Wll2t8eGQ==}
+ '@tiptap/html@2.10.3':
+ resolution: {integrity: sha512-ERfehdfRN8TRfZCLOWHnZDaP3tTO3+wov791p/b7vuJOKCiPHlGZ1dX72Bysvfn4F98ZLJBHKtuVLqti7qRo5w==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tiptap/pm@2.11.5':
- resolution: {integrity: sha512-z9JFtqc5ZOsdQLd9vRnXfTCQ8v5ADAfRt9Nm7SqP6FUHII8E1hs38ACzf5xursmth/VonJYb5+73Pqxk1hGIPw==}
+ '@tiptap/pm@2.10.3':
+ resolution: {integrity: sha512-771p53aU0KFvujvKpngvq2uAxThlEsjYaXcVVmwrhf0vxSSg+psKQEvqvWvHv/3BwkPVCGwmEKNVJZjaXFKu4g==}
- '@tiptap/react@2.11.5':
- resolution: {integrity: sha512-Dp8eHL1G+R/C4+QzAczyb3t1ovexEIZx9ln7SGEM+cT1KHKAw9XGPRgsp92+NQaYI+EdEb/YqoBOSzQcd18/OQ==}
+ '@tiptap/react@2.10.3':
+ resolution: {integrity: sha512-5GBL3arWai8WZuCl1MMA7bT5aWwqDi5AOQhX+hovKjwHvttpKDogRoUBL5k6Eds/eQMBMGTpsfmZlGNiFxSv1g==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
- '@tiptap/starter-kit@2.11.5':
- resolution: {integrity: sha512-SLI7Aj2ruU1t//6Mk8f+fqW+18uTqpdfLUJYgwu0CkqBckrkRZYZh6GVLk/02k3H2ki7QkFxiFbZrdbZdng0JA==}
+ '@tiptap/starter-kit@2.10.3':
+ resolution: {integrity: sha512-oq8xdVIMqohSs91ofHSr7i5dCp2F56Lb9aYIAI25lZmwNwQJL2geGOYjMSfL0IC4cQHPylIuSKYCg7vRFdZmAA==}
- '@tiptap/suggestion@2.11.5':
- resolution: {integrity: sha512-uafwGgB5YuKX/xLRjnt2H5eA21I8HcNXpdbH4Du2gg3KM71RpUbkyjaV7KEMA/5qwCEo+sddlpuErj4wBycZ5Q==}
+ '@tiptap/suggestion@2.10.3':
+ resolution: {integrity: sha512-ReEwiPQoDTXn3RuWnj9D7Aod9dbNQz0QAoLRftWUTdbj3O2ohbvTNX6tlcfS+7x48Q+fAALiJGpp5BtctODlsA==}
peerDependencies:
'@tiptap/core': ^2.7.0
'@tiptap/pm': ^2.7.0
- '@tsconfig/node10@1.0.11':
- resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
+ '@tsconfig/node10@1.0.9':
+ resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
'@tsconfig/node12@1.0.11':
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
@@ -3616,8 +3912,8 @@ packages:
'@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/babel__traverse@7.20.5':
+ resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
'@types/bcrypt@5.0.2':
resolution: {integrity: sha512-6atioO8Y75fNcbmj0G7UjI9lXN2pQ/IGJ2FWT4a/btd0Lk9lQalHLKhkgKVZ3r+spnmWUKfbMi1GEe9wyHQfNQ==}
@@ -3631,6 +3927,9 @@ packages:
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
+ '@types/cookie@0.4.1':
+ resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
+
'@types/cookie@0.6.0':
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
@@ -3691,8 +3990,8 @@ packages:
'@types/d3-interpolate@3.0.4':
resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
- '@types/d3-path@3.1.1':
- resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
+ '@types/d3-path@3.1.0':
+ resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==}
'@types/d3-polygon@3.0.2':
resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==}
@@ -3703,17 +4002,17 @@ packages:
'@types/d3-random@3.0.3':
resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==}
- '@types/d3-scale-chromatic@3.1.0':
- resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==}
+ '@types/d3-scale-chromatic@3.0.3':
+ resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==}
- '@types/d3-scale@4.0.9':
- resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
+ '@types/d3-scale@4.0.8':
+ resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
'@types/d3-selection@3.0.11':
resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==}
- '@types/d3-shape@3.1.7':
- resolution: {integrity: sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==}
+ '@types/d3-shape@3.1.6':
+ resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==}
'@types/d3-time-format@4.0.3':
resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==}
@@ -3736,20 +4035,23 @@ packages:
'@types/debounce@1.2.4':
resolution: {integrity: sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw==}
+ '@types/debug@4.1.12':
+ resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
- '@types/eslint@9.6.1':
- resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
+ '@types/eslint@8.56.10':
+ resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
- '@types/express-serve-static-core@5.0.6':
- resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==}
+ '@types/express-serve-static-core@4.17.43':
+ resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==}
- '@types/express@5.0.0':
- resolution: {integrity: sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ==}
+ '@types/express@4.17.21':
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
'@types/file-saver@2.0.7':
resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==}
@@ -3757,8 +4059,8 @@ packages:
'@types/fs-extra@11.0.4':
resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
- '@types/geojson@7946.0.16':
- resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==}
+ '@types/geojson@7946.0.14':
+ resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==}
'@types/graceful-fs@4.1.9':
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
@@ -3790,12 +4092,12 @@ packages:
'@types/jsonfile@6.1.4':
resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
+ '@types/jsonwebtoken@9.0.6':
+ resolution: {integrity: sha512-/5hndP5dCjloafCXns6SZyESp3Ldq7YjH3zwzwczYnjxIT0Fqzk5ROSYVGfFyczIue7IUEj8hkvLbPoLQ18vQw==}
+
'@types/jsonwebtoken@9.0.7':
resolution: {integrity: sha512-ugo316mmTYBl2g81zDFnZ7cfxlut3o+/EQdaP7J8QN2kY6lJ22hmQYCK5EHcJHbrW+dkCGSCPgbG8JtYj6qSrg==}
- '@types/jsonwebtoken@9.0.8':
- resolution: {integrity: sha512-7fx54m60nLFUVYlxAB1xpe9CBWX2vSrk50Y6ogRJ1v5xxtba7qXTg5BgYDN5dq+yuQQ9HaVlHJyAAt1/mxryFg==}
-
'@types/katex@0.16.7':
resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==}
@@ -3817,6 +4119,9 @@ packages:
'@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
+ '@types/mime@3.0.4':
+ resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==}
+
'@types/ms@2.1.0':
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
@@ -3829,49 +4134,56 @@ packages:
'@types/nodemailer@6.4.17':
resolution: {integrity: sha512-I9CCaIp6DTldEg7vyUTZi8+9Vo0hi1/T8gv3C89yk1rSAAzoKQ8H8ki/jBYJSFoH/BisgLP8tkZMlQ91CIquww==}
+ '@types/oauth@0.9.6':
+ resolution: {integrity: sha512-H9TRCVKBNOhZZmyHLqFt9drPM9l+ShWiqqJijU1B8P3DX3ub84NjxDuy+Hjrz+fEca5Kwip3qPMKNyiLgNJtIA==}
+
'@types/parse-json@4.0.2':
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
+ '@types/passport-google-oauth20@2.0.16':
+ resolution: {integrity: sha512-ayXK2CJ7uVieqhYOc6k/pIr5pcQxOLB6kBev+QUGS7oEZeTgIs1odDobXRqgfBPvXzl0wXCQHftV5220czZCPA==}
+
'@types/passport-jwt@4.0.1':
resolution: {integrity: sha512-Y0Ykz6nWP4jpxgEUYq8NoVZeCQPo1ZndJLfapI249g1jHChvRfZRO/LS3tqu26YgAS/laI1qx98sYGz0IalRXQ==}
+ '@types/passport-oauth2@1.4.17':
+ resolution: {integrity: sha512-ODiAHvso6JcWJ6ZkHHroVp05EHGhqQN533PtFNBkg8Fy5mERDqsr030AX81M0D69ZcaMvhF92SRckEk2B0HYYg==}
+
'@types/passport-strategy@0.2.38':
resolution: {integrity: sha512-GC6eMqqojOooq993Tmnmp7AUTbbQSgilyvpCYQjT+H6JfG/g6RGc7nXEniZlp0zyKJ0WUdOiZWLBZft9Yug1uA==}
- '@types/passport@1.0.17':
- resolution: {integrity: sha512-aciLyx+wDwT2t2/kJGJR2AEeBz0nJU4WuRX04Wu9Dqc5lSUtwu0WERPHYsLhF9PtseiAMPBGNUOtFjxZ56prsg==}
+ '@types/passport@1.0.16':
+ resolution: {integrity: sha512-FD0qD5hbPWQzaM0wHUnJ/T0BBCJBxCeemtnCwc/ThhTg3x9jfrAcRUmj5Dopza+MfFS9acTe3wk7rcVnRIp/0A==}
'@types/pg@8.11.11':
resolution: {integrity: sha512-kGT1qKM8wJQ5qlawUrEkXgvMSXoV213KfMGXcwfDwUIfUHXqXYXOfS1nE1LINRJVVVx5wCm70XnFlMHaIcQAfw==}
- '@types/prop-types@15.7.14':
- resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==}
+ '@types/prop-types@15.7.11':
+ resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==}
- '@types/qs@6.9.18':
- resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==}
+ '@types/qs@6.9.14':
+ resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@18.3.5':
- resolution: {integrity: sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==}
- peerDependencies:
- '@types/react': ^18.0.0
+ '@types/react-dom@18.3.1':
+ resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
- '@types/react@18.3.18':
- resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==}
+ '@types/react@18.3.12':
+ resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
'@types/send@0.17.4':
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
- '@types/serve-static@1.15.7':
- resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
+ '@types/serve-static@1.15.5':
+ resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
'@types/stack-utils@2.0.3':
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
- '@types/superagent@8.1.9':
- resolution: {integrity: sha512-pTVjI73witn+9ILmoJdajHGW2jkSaOzhiFYF1Rd3EQ94kymLqB9PjD9ISg7WaALC7+dCHT0FGe9T2LktLq/3GQ==}
+ '@types/superagent@8.1.6':
+ resolution: {integrity: sha512-yzBOv+6meEHSzV2NThYYOA6RtqvPr3Hbob9ZLp3i07SH27CrYVfm8CrF7ydTmidtelsFiKx2I4gZAiAOamGgvQ==}
'@types/supertest@6.0.2':
resolution: {integrity: sha512-137ypx2lk/wTQbW6An6safu9hXmajAifU/s7szAHLN/FeIm5w7yR0Wkl9fdJMRSHwOn4HLAI0DaB2TOORuhPDg==}
@@ -3879,8 +4191,8 @@ packages:
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
- '@types/unist@3.0.3':
- resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
+ '@types/unist@3.0.2':
+ resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
'@types/use-sync-external-store@0.0.6':
resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
@@ -3888,17 +4200,34 @@ packages:
'@types/uuid@10.0.0':
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
- '@types/validator@13.12.2':
- resolution: {integrity: sha512-6SlHBzUW8Jhf3liqrGGXyTJSIFe4nqlJ5A5KaMZ2l/vbM3Wh3KSybots/wfWVzNLK4D1NZluDlSQIbIEPx6oyA==}
+ '@types/validator@13.12.0':
+ resolution: {integrity: sha512-nH45Lk7oPIJ1RVOF6JgFI6Dy0QpHEzq4QecZhvguxYPDwT8c93prCMqAtiIttm39voZ+DDR+qkNnMpJmMBRqag==}
'@types/ws@8.5.14':
resolution: {integrity: sha512-bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw==}
+ '@types/xml-encryption@1.2.4':
+ resolution: {integrity: sha512-I69K/WW1Dv7j6O3jh13z0X8sLWJRXbu5xnHDl9yHzUNDUBtUoBY058eb5s+x/WG6yZC1h8aKdI2EoyEPjyEh+Q==}
+
+ '@types/xml2js@0.4.14':
+ resolution: {integrity: sha512-4YnrRemBShWRO2QjvUin8ESA41rH+9nQGLUGZV/1IDhi3SL9OhdpNC/MrulTWuptXKwhx/aDxE7toV0f/ypIXQ==}
+
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
- '@types/yargs@17.0.33':
- resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
+ '@types/yargs@17.0.32':
+ resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
+
+ '@typescript-eslint/eslint-plugin@8.17.0':
+ resolution: {integrity: sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
'@typescript-eslint/eslint-plugin@8.24.1':
resolution: {integrity: sha512-ll1StnKtBigWIGqvYDVuDmXJHVH4zLVot1yQ4fJtLpL7qacwkxJc1T0bptqw+miBQ/QfUbhl1TcQ4accW5KUyA==}
@@ -3908,6 +4237,16 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/parser@8.17.0':
+ resolution: {integrity: sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/parser@8.24.1':
resolution: {integrity: sha512-Tqoa05bu+t5s8CTZFaGpCH2ub3QeT9YDkXbPd3uQ4SfsLoh1/vv2GEYAioPoxCWJJNsenXlC88tRjwoHNts1oQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -3915,10 +4254,24 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/scope-manager@8.17.0':
+ resolution: {integrity: sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/scope-manager@8.24.1':
resolution: {integrity: sha512-OdQr6BNBzwRjNEXMQyaGyZzgg7wzjYKfX2ZBV3E04hUCBDv3GQCHiz9RpqdUIiVrMgJGkXm3tcEh4vFSHreS2Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/type-utils@8.17.0':
+ resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/type-utils@8.24.1':
resolution: {integrity: sha512-/Do9fmNgCsQ+K4rCz0STI7lYB4phTtEXqqCAs3gZW0pnK7lWNkvWd5iW545GSmApm4AzmQXmSqXPO565B4WVrw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -3926,16 +4279,39 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/types@8.17.0':
+ resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/types@8.24.1':
resolution: {integrity: sha512-9kqJ+2DkUXiuhoiYIUvIYjGcwle8pcPpdlfkemGvTObzgmYfJ5d0Qm6jwb4NBXP9W1I5tss0VIAnWFumz3mC5A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/typescript-estree@8.17.0':
+ resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/typescript-estree@8.24.1':
resolution: {integrity: sha512-UPyy4MJ/0RE648DSKQe9g0VDSehPINiejjA6ElqnFaFIhI6ZEiZAkUI0D5MCk0bQcTf/LVqZStvQ6K4lPn/BRg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/utils@8.17.0':
+ resolution: {integrity: sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/utils@8.24.1':
resolution: {integrity: sha512-OOcg3PMMQx9EXspId5iktsI3eMaXVwlhC8BvNnX6B5w9a4dVgpkQZuU8Hy67TolKcl+iFWq0XX+jbDGN4xWxjQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -3943,6 +4319,10 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/visitor-keys@8.17.0':
+ resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/visitor-keys@8.24.1':
resolution: {integrity: sha512-EwVHlp5l+2vp8CoqJm9KikPZgi3gbdZAtabKT9KPShGeOcJhsv4Zdo3oc8T8I0uKEmYoU4ItyxbptjF08enaxg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4010,6 +4390,14 @@ packages:
'@webassemblyjs/wast-printer@1.14.1':
resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
+ '@xmldom/is-dom-node@1.0.1':
+ resolution: {integrity: sha512-CJDxIgE5I0FH+ttq/Fxy6nRpxP70+e2O048EPe85J2use3XKdatVM7dDVvFNjQudd9B49NPoZ+8PG49zj4Er8Q==}
+ engines: {node: '>= 16'}
+
+ '@xmldom/xmldom@0.8.10':
+ resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==}
+ engines: {node: '>=10.0.0'}
+
'@xtuc/ieee754@1.2.0':
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
@@ -4030,9 +4418,13 @@ packages:
abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
- abbrev@3.0.0:
- resolution: {integrity: sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ abbrev@2.0.0:
+ resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ abort-controller@3.0.0:
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
abstract-logging@2.0.1:
resolution: {integrity: sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==}
@@ -4046,10 +4438,15 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@8.3.4:
- resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
+ acorn-walk@8.3.2:
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
+ acorn@8.11.3:
+ resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
acorn@8.14.0:
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
@@ -4063,8 +4460,8 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
- agent-base@7.1.3:
- resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
+ agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
engines: {node: '>= 14'}
ajv-formats@2.1.1:
@@ -4096,6 +4493,9 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ ajv@8.12.0:
+ resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
@@ -4114,8 +4514,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.1.0:
- resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
+ ansi-regex@6.0.1:
+ resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
ansi-styles@3.2.1:
@@ -4159,8 +4559,8 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- array-buffer-byte-length@1.0.2:
- resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
+ array-buffer-byte-length@1.0.1:
+ resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
engines: {node: '>= 0.4'}
array-includes@3.1.8:
@@ -4174,34 +4574,30 @@ packages:
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
engines: {node: '>= 0.4'}
- array.prototype.flat@1.3.3:
- resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
+ 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.3:
- resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
+ 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.4:
- resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
+ arraybuffer.prototype.slice@1.0.3:
+ resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
engines: {node: '>= 0.4'}
asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- async-function@1.0.0:
- resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
- engines: {node: '>= 0.4'}
-
async-lock@1.4.1:
resolution: {integrity: sha512-Az2ZTpuytrtqENulXwO3GGv1Bztugx6TT37NIo7imr/Qo0gsYiGtSdBa2B6fsXhTpVZDNfu1Qn3pk531e3q+nQ==}
- async@3.2.6:
- resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
+ async@3.2.5:
+ resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -4217,6 +4613,9 @@ packages:
avvio@9.1.0:
resolution: {integrity: sha512-fYASnYi600CsH/j9EQov7lECAniYiBFiiAtBNuZYLA2leLe9qOvZzqYHFjtIj6gD2VMoMLP14834LFWvr4IfDw==}
+ axios@1.7.8:
+ resolution: {integrity: sha512-Uu0wb7KNqK2t5K+YQyVCLM76prD5sRFjKHbJYCP1J7JFGEQ6nN7HWn9+04LAeiJ3ji54lgS/gZCH1oxyrf1SPw==}
+
axios@1.7.9:
resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==}
@@ -4243,23 +4642,18 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
- babel-plugin-polyfill-corejs2@0.4.12:
- resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==}
+ babel-plugin-polyfill-corejs2@0.4.7:
+ resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.10.6:
- resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
+ babel-plugin-polyfill-corejs3@0.8.7:
+ resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.11.1:
- resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
-
- babel-plugin-polyfill-regenerator@0.6.3:
- resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
+ babel-plugin-polyfill-regenerator@0.5.4:
+ resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -4272,8 +4666,8 @@ packages:
'@babel/traverse':
optional: true
- babel-preset-current-node-syntax@1.1.0:
- resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
+ babel-preset-current-node-syntax@1.0.1:
+ resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -4293,6 +4687,10 @@ packages:
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
engines: {node: ^4.5.0 || >= 5.9}
+ base64url@3.0.1:
+ resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==}
+ engines: {node: '>=6.0.0'}
+
bcrypt@5.1.1:
resolution: {integrity: sha512-AGBHOG5hPYZ5Xl9KXzU5iKq9516yEmvCKDg3ecP5kX2aB6UqTeXZxk2ELnDgDm6BQSMlLt9rDB4LoSMx0rYwww==}
engines: {node: '>= 10.0.0'}
@@ -4320,12 +4718,21 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ braces@3.0.2:
+ resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
+ engines: {node: '>=8'}
+
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.24.4:
- resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
+ browserslist@4.23.0:
+ resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
+ 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
@@ -4345,8 +4752,14 @@ packages:
buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
- bullmq@5.41.4:
- resolution: {integrity: sha512-fwgvtGaO8nzJOlLNVKOIDyuWQvlHzFgYzI/b1QCJGSrUb1NrIYq75qiG08nufL2coxNLm0M7A0KYr9HNtP160Q==}
+ buffer@6.0.3:
+ resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
+
+ builtins@5.0.1:
+ resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
+
+ bullmq@5.41.3:
+ resolution: {integrity: sha512-tWTeuO/BHDg6gKVnQJMjO42zkhsGss6s4bMdgJU24JVBT53yUvDjaO9H0L/BHKAtsMi4xlxkrDuMNSYWeHlekA==}
busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
@@ -4356,16 +4769,11 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- call-bind-apply-helpers@1.0.2:
- resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
- engines: {node: '>= 0.4'}
+ cache-manager@6.4.0:
+ resolution: {integrity: sha512-eUmPyVqQYzWCt7hx1QrYzQ7oC3MGKM1etxxe8zuq1o7IB4NzdBeWcUGDSWYahaI8fkd538SEZRGadyZWQfvOzQ==}
- call-bind@1.0.8:
- resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
- engines: {node: '>= 0.4'}
-
- call-bound@1.0.3:
- resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
+ call-bind@1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
callsites@3.1.0:
@@ -4384,8 +4792,11 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- caniuse-lite@1.0.30001700:
- resolution: {integrity: sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==}
+ caniuse-lite@1.0.30001600:
+ resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==}
+
+ caniuse-lite@1.0.30001684:
+ resolution: {integrity: sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==}
chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
@@ -4426,16 +4837,16 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- chrome-trace-event@1.0.4:
- resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
+ chrome-trace-event@1.0.3:
+ resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
ci-info@3.9.0:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- cjs-module-lexer@1.4.3:
- resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
+ cjs-module-lexer@1.2.3:
+ resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
class-transformer@0.5.1:
resolution: {integrity: sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw==}
@@ -4587,8 +4998,11 @@ packages:
cookiejar@2.1.4:
resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==}
- core-js-compat@3.40.0:
- resolution: {integrity: sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==}
+ copy-anything@2.0.6:
+ resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
+
+ core-js-compat@3.35.0:
+ resolution: {integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -4639,6 +5053,10 @@ packages:
cross-fetch@4.0.0:
resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==}
+ cross-spawn@7.0.3:
+ resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
+ engines: {node: '>= 8'}
+
cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
@@ -4669,8 +5087,8 @@ packages:
peerDependencies:
cytoscape: ^3.2.0
- cytoscape@3.31.0:
- resolution: {integrity: sha512-zDGn1K/tfZwEnoGOcHc0H4XazqAAXAuDpcYw9mUnUjATjqljyCNGJv8uEvbvxGaGHaVshxMecyl6oc6uKzRfbw==}
+ cytoscape@3.30.2:
+ resolution: {integrity: sha512-oICxQsjW8uSaRmn4UK/jkczKOqTrVqt5/1WL0POiJUT2EKNc9STM4hYFHv917yu55aTBMFNRzymlJhVAiWPCxw==}
engines: {node: '>=0.10'}
d3-array@2.12.1:
@@ -4819,16 +5237,16 @@ packages:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
- data-view-buffer@1.0.2:
- resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
+ data-view-buffer@1.0.1:
+ resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
engines: {node: '>= 0.4'}
- data-view-byte-length@1.0.2:
- resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
+ 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.1:
- resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
+ data-view-byte-offset@1.0.0:
+ resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
engines: {node: '>= 0.4'}
date-fns@4.1.0:
@@ -4841,6 +5259,15 @@ packages:
resolution: {integrity: sha512-xRetU6gL1VJbs85Mc4FoEGSjQxzpdxRyFhe3lmWFyy2EzydIcD4xzUvRJMD+NPDfMwKNhxa3PvsIOU32luIWeA==}
engines: {node: '>=18'}
+ debug@4.3.4:
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
debug@4.3.7:
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
@@ -4850,20 +5277,11 @@ packages:
supports-color:
optional: true
- debug@4.4.0:
- resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
+ decimal.js@10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
- decimal.js@10.5.0:
- resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
-
- dedent@1.5.3:
- resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
+ dedent@1.5.1:
+ resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
@@ -4929,9 +5347,8 @@ packages:
detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
- detect-port@1.6.1:
- resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==}
- engines: {node: '>= 4.0.0'}
+ detect-port@1.5.1:
+ resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
hasBin: true
devlop@1.1.0:
@@ -4972,28 +5389,31 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
+ dompurify@3.2.1:
+ resolution: {integrity: sha512-NBHEsc0/kzRYQd+AY6HR6B/IgsqzBABrqJbpCDQII/OK6h7B7LXzweZTDsqSW2LkTRpoxf18YUP+YjGySk6B3w==}
+
dompurify@3.2.4:
resolution: {integrity: sha512-ysFSFEDVduQpyhzAob/kkuJjf5zWkZD8/A9ywSp1byueyuCfHamrCBa14/Oc2iiB0e51B+NpxSl5gmzn+Ms/mg==}
- domutils@3.2.2:
- resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
+ domutils@3.1.0:
+ resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
- dotenv-expand@11.0.7:
- resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==}
+ dotenv-expand@11.0.6:
+ resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==}
engines: {node: '>=12'}
dotenv-expand@12.0.1:
resolution: {integrity: sha512-LaKRbou8gt0RNID/9RoI+J2rvXsBRPMV7p+ElHlPhcSARbCPDYcYG2s1TIzAfWv4YSgyY5taidWzzs31lNV3yQ==}
engines: {node: '>=12'}
+ dotenv@16.4.5:
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
+ engines: {node: '>=12'}
+
dotenv@16.4.7:
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
engines: {node: '>=12'}
- dunder-proto@1.0.1:
- resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
- engines: {node: '>= 0.4'}
-
eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
@@ -5010,8 +5430,11 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.102:
- resolution: {integrity: sha512-eHhqaja8tE/FNpIiBrvBjFV/SSKpyWHLvxuR9dPTdo+3V9ppdLmFB7ZZQ98qNovcngPLYIz0oOBF9P0FfZef5Q==}
+ electron-to-chromium@1.4.715:
+ resolution: {integrity: sha512-XzWNH4ZSa9BwVUQSDorPWAUQ5WGuYz7zJUNpNif40zFCiCl20t8zgylmreNmn26h5kiyw2lg7RfTmeMBsDklqg==}
+
+ electron-to-chromium@1.5.65:
+ resolution: {integrity: sha512-PWVzBjghx7/wop6n22vS2MLU8tKGd4Q91aCEGhG/TYmW6PP5OcSXcdnxTe1NNt0T66N8D6jxh4kC8UsdzOGaIw==}
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -5029,19 +5452,19 @@ packages:
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- engine.io-client@6.6.3:
- resolution: {integrity: sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==}
+ engine.io-client@6.6.2:
+ resolution: {integrity: sha512-TAr+NKeoVTjEVW8P3iHguO1LO6RlUz9O5Y8o7EY0fU+gY1NYqas7NN3slpFtbXEsLMHk0h90fJMfKjRkQ0qUIw==}
- engine.io-parser@5.2.3:
- resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
+ engine.io-parser@5.2.2:
+ resolution: {integrity: sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==}
engines: {node: '>=10.0.0'}
- engine.io@6.6.4:
- resolution: {integrity: sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g==}
+ engine.io@6.6.2:
+ resolution: {integrity: sha512-gmNvsYi9C8iErnZdVcJnvCpSKbWTt1E8+JZo8b+daLninywUWi5NQ5STSHZ9rFjFO7imNcvb8Pc5pe/wMR5xEw==}
engines: {node: '>=10.2.0'}
- enhanced-resolve@5.18.1:
- resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
enquirer@2.3.6:
@@ -5056,39 +5479,42 @@ packages:
resolution: {integrity: sha512-BeJFvFRJddxobhvEdm5GqHzRV/X+ACeuw0/BuuxsCh1EUZcAIz8+kYmBp/LrQuloy6K1f3a0M7+IhmZ7QnkISA==}
engines: {node: '>=0.12'}
+ errno@0.1.8:
+ resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
+ hasBin: true
+
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- es-abstract@1.23.9:
- resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
+ es-abstract@1.23.5:
+ resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==}
engines: {node: '>= 0.4'}
- es-define-property@1.0.1:
- resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ 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-iterator-helpers@1.2.1:
- resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
+ es-iterator-helpers@1.2.0:
+ resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.6.0:
- resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
+ es-module-lexer@1.4.2:
+ resolution: {integrity: sha512-7nOqkomXZEaxUDJw21XZNtRk739QvrPSoZoRtbsEfcii00vdzZUh6zh1CQwHhrib8MdEtJfv5rJiGeb4KuV/vw==}
- es-object-atoms@1.1.1:
- resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
+ es-object-atoms@1.0.0:
+ resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
- es-set-tostringtag@2.1.0:
- resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
+ es-set-tostringtag@2.0.3:
+ resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
engines: {node: '>= 0.4'}
- es-shim-unscopables@1.1.0:
- resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
- engines: {node: '>= 0.4'}
+ es-shim-unscopables@1.0.2:
+ resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
es-to-primitive@1.3.0:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
@@ -5109,6 +5535,10 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ escalade@3.1.1:
+ resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ engines: {node: '>=6'}
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -5140,13 +5570,13 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
- eslint-plugin-react-refresh@0.4.19:
- resolution: {integrity: sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ==}
+ eslint-plugin-react-refresh@0.4.16:
+ resolution: {integrity: sha512-slterMlxAhov/DZO8NScf6mEeMBBXodFUolijDvrtTxyezyLoTQaa73FyYus/VbTdftd8wBgBxPMRk3poleXNQ==}
peerDependencies:
eslint: '>=8.40'
- eslint-plugin-react@7.37.4:
- resolution: {integrity: sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==}
+ eslint-plugin-react@7.37.2:
+ resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
@@ -5167,6 +5597,16 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.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
+
eslint@9.20.1:
resolution: {integrity: sha512-m1mM33o6dBUjxl2qb6wv6nGNwCAsns1eKtaQ4l/NPHeTvhiUPbtdfMyktxN4B3fgHIgsYh1VT3V9txblpQHq+g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -5186,8 +5626,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- esquery@1.6.0:
- resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
+ esquery@1.5.0:
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
esrecurse@4.3.0:
@@ -5206,6 +5646,10 @@ packages:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
+ event-target-shim@5.0.1:
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
+
eventemitter2@6.4.9:
resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==}
@@ -5238,8 +5682,8 @@ packages:
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- fast-glob@3.3.3:
- resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
+ fast-glob@3.3.2:
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
fast-json-stable-stringify@2.1.0:
@@ -5274,8 +5718,8 @@ packages:
fastify@5.2.1:
resolution: {integrity: sha512-rslrNBF67eg8/Gyn7P2URV8/6pz8kSAscFL4EThZJ8JBMaXacVdVE4hmUcnPNKERl5o/xTiBSLfdowBRhVF1WA==}
- fastq@1.19.0:
- resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==}
+ fastq@1.17.1:
+ resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
@@ -5302,6 +5746,10 @@ packages:
filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
+ fill-range@7.0.1:
+ resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ engines: {node: '>=8'}
+
fill-range@7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
@@ -5329,11 +5777,11 @@ packages:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- flatted@3.3.3:
- resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
+ flatted@3.2.9:
+ resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
- follow-redirects@1.15.9:
- resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
+ follow-redirects@1.15.6:
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -5341,12 +5789,11 @@ packages:
debug:
optional: true
- for-each@0.3.5:
- resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
- engines: {node: '>= 0.4'}
+ for-each@0.3.3:
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
- foreground-child@3.3.0:
- resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
+ foreground-child@3.1.1:
+ resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
engines: {node: '>=14'}
fork-ts-checker-webpack-plugin@9.0.2:
@@ -5356,12 +5803,12 @@ packages:
typescript: '>3.6.0'
webpack: ^5.11.0
- form-data@4.0.2:
- resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
+ form-data@4.0.0:
+ resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
- formidable@3.5.2:
- resolution: {integrity: sha512-Jqc1btCy3QzRbJaICGwKcBfGWuLADRerLzDqi2NwSt/UkXLsHJw2TVResiaoBufHVHy9aSgClOHCeJsSsFLTbg==}
+ formidable@3.5.1:
+ resolution: {integrity: sha512-WJWKelbRHN41m5dumb0/k8TeAx7Id/y3a+Z7QfhxP/htI9Js5zYaEDtG8uMgG0vM0lOlqnmjE99/kfpOYi/0Og==}
fractional-indexing-jittered@1.0.0:
resolution: {integrity: sha512-0tLU0FOedVY7lrvN4LK0DVj6FTuYM0pWDpN97/8UTZE2lx1+OwX8+2uL7IOWc2PmktYTHQjMT6FvZZ3SGCdZdg==}
@@ -5384,8 +5831,8 @@ packages:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
- fs-monkey@1.0.6:
- resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
+ fs-monkey@1.0.5:
+ resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==}
fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -5398,8 +5845,8 @@ packages:
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- function.prototype.name@1.1.8:
- resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
+ function.prototype.name@1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
engines: {node: '>= 0.4'}
functions-have-names@1.2.3:
@@ -5418,8 +5865,8 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-intrinsic@1.2.7:
- resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
+ get-intrinsic@1.2.4:
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
get-nonce@1.0.1:
@@ -5430,20 +5877,16 @@ packages:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
- get-proto@1.0.1:
- resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
- engines: {node: '>= 0.4'}
-
get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- get-symbol-description@1.1.0:
- resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
+ get-symbol-description@1.0.2:
+ resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.10.0:
- resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
+ get-tsconfig@4.7.5:
+ resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==}
git-diff@2.0.6:
resolution: {integrity: sha512-/Iu4prUrydE3Pb3lCBMbcSNIf81tgGt0W1ZwknnyF62t3tHmtiJTRj0f+1ZIhp3+Rh0ktz1pJVoa7ZXUCskivA==}
@@ -5486,6 +5929,10 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
+ globals@15.13.0:
+ resolution: {integrity: sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==}
+ engines: {node: '>=18'}
+
globals@15.15.0:
resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
engines: {node: '>=18'}
@@ -5507,13 +5954,12 @@ packages:
hachure-fill@0.5.2:
resolution: {integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==}
- happy-dom@15.11.7:
- resolution: {integrity: sha512-KyrFvnl+J9US63TEzwoiJOQzZBJY7KgBushJA8X61DMbNsH+2ONkDuLDnCnwUiPTF42tLoEmrPyoqbenVA5zrg==}
+ happy-dom@15.11.6:
+ resolution: {integrity: sha512-elX7iUTu+5+3b2+NGQc0L3eWyq9jKhuJJ4GpOMxxT/c2pg9O3L5H3ty2VECX0XXZgRmmRqXyOK8brA2hDI6LsQ==}
engines: {node: '>=18.0.0'}
- has-bigints@1.1.0:
- resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
- engines: {node: '>= 0.4'}
+ has-bigints@1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
@@ -5530,12 +5976,12 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.2.0:
- resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
+ has-proto@1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
- has-symbols@1.1.0:
- resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ has-symbols@1.0.3:
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
has-tostringtag@1.0.2:
@@ -5549,19 +5995,19 @@ packages:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
- hexoid@2.0.0:
- resolution: {integrity: sha512-qlspKUK7IlSQv2o+5I7yhUd7TxlOG2Vr5LTa3ve2XSNVKAL/n/u/7KLvKmFNimomDIKvZFXWHv0T12mv7rT8Aw==}
+ hexoid@1.0.0:
+ resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==}
engines: {node: '>=8'}
- highlight.js@11.11.1:
- resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==}
+ highlight.js@11.10.0:
+ resolution: {integrity: sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==}
engines: {node: '>=12.0.0'}
hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
- hosted-git-info@7.0.2:
- resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
+ hosted-git-info@7.0.1:
+ resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
engines: {node: ^16.14.0 || >=18.0.0}
html-encoding-sniffer@4.0.0:
@@ -5596,19 +6042,19 @@ packages:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
- https-proxy-agent@7.0.6:
- resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ https-proxy-agent@7.0.5:
+ resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
engines: {node: '>= 14'}
human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- i18next-http-backend@2.7.3:
- resolution: {integrity: sha512-FgZxrXdRA5u44xfYsJlEBL4/KH3f2IluBpgV/7riW0YW2VEyM8FzVt2XHAOi6id0Ppj7vZvCZVpp5LrGXnc8Ig==}
+ i18next-http-backend@2.6.1:
+ resolution: {integrity: sha512-rCilMAnlEQNeKOZY1+x8wLM5IpYOj10guGvEpeC59tNjj6MMreLIjIW8D1RclhD3ifLwn6d/Y9HEM1RUE6DSog==}
- i18next@23.16.8:
- resolution: {integrity: sha512-06r/TitrM88Mg5FdUXAKL96dJMzgqLE5dv3ryBAra4KCwD9mJ4ndOTS95ZuymIGoE+2hzfdaMak2X11/es7ZWg==}
+ i18next@23.14.0:
+ resolution: {integrity: sha512-Y5GL4OdA8IU2geRrt2+Uc1iIhsjICdHZzT9tNwQ3TVqdNzgxHToGCKf/TPRP80vTCAP6svg2WbbJL+Gx5MFQVA==}
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
@@ -5621,19 +6067,24 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore@5.3.2:
- resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
+ ignore@5.3.1:
+ resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
engines: {node: '>= 4'}
+ image-size@0.5.5:
+ resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+
immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
- import-fresh@3.3.1:
- resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
+ import-fresh@3.3.0:
+ resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- import-local@3.2.0:
- resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
+ import-local@3.1.0:
+ resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
engines: {node: '>=8'}
hasBin: true
@@ -5651,8 +6102,8 @@ packages:
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- internal-slot@1.1.0:
- resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
+ internal-slot@1.0.7:
+ resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
internmap@1.0.1:
@@ -5673,23 +6124,23 @@ packages:
resolution: {integrity: sha512-3GYo0GJtLqgNXj4YhrisLaNNvWSNwSS2wS4OELGfGxH8I69+XfNdnmV1AyN+ZqMh0i7eX+SWjrwFKDBDgfBC1A==}
engines: {node: '>=6'}
- ioredis@5.5.0:
- resolution: {integrity: sha512-7CutT89g23FfSa8MDoIFs2GYYa0PaNiW/OrT+nRyjRXHDZd17HmIgy+reOQ/yhh72NznNjGuS8kbCAcA4Ro4mw==}
+ ioredis@5.4.1:
+ resolution: {integrity: sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==}
engines: {node: '>=12.22.0'}
ipaddr.js@2.2.0:
resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
engines: {node: '>= 10'}
- is-array-buffer@3.0.5:
- resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
+ 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.1.1:
- resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
+ is-async-function@2.0.0:
+ resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
engines: {node: '>= 0.4'}
is-bigint@1.1.0:
@@ -5700,24 +6151,23 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-boolean-object@1.2.2:
- resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
+ is-boolean-object@1.2.0:
+ resolution: {integrity: sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==}
engines: {node: '>= 0.4'}
is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- is-core-module@2.16.1:
- resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ is-core-module@2.13.1:
+ resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+
+ is-data-view@1.0.1:
+ resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
engines: {node: '>= 0.4'}
- is-data-view@1.0.2:
- resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
- engines: {node: '>= 0.4'}
-
- is-date-object@1.1.0:
- resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
+ is-date-object@1.0.5:
+ resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
is-docker@2.2.1:
@@ -5729,8 +6179,8 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- is-finalizationregistry@1.1.1:
- resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
+ is-finalizationregistry@1.1.0:
+ resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==}
engines: {node: '>= 0.4'}
is-fullwidth-code-point@3.0.0:
@@ -5741,8 +6191,8 @@ packages:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
- is-generator-function@1.1.0:
- resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
+ is-generator-function@1.0.10:
+ resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
engines: {node: '>= 0.4'}
is-glob@4.0.3:
@@ -5757,8 +6207,12 @@ packages:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
- is-number-object@1.1.1:
- resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
+ is-negative-zero@2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
+ engines: {node: '>= 0.4'}
+
+ is-number-object@1.1.0:
+ resolution: {integrity: sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==}
engines: {node: '>= 0.4'}
is-number@7.0.0:
@@ -5768,32 +6222,32 @@ packages:
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
- is-regex@1.2.1:
- resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
+ is-regex@1.2.0:
+ resolution: {integrity: sha512-B6ohK4ZmoftlUe+uvenXSbPJFo6U37BH7oO1B3nQH8f/7h27N56s85MhUtbFJAziz5dcmuR3i8ovUl35zp8pFA==}
engines: {node: '>= 0.4'}
is-set@2.0.3:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
- is-shared-array-buffer@1.0.4:
- resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
+ is-shared-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
engines: {node: '>= 0.4'}
is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- is-string@1.1.1:
- resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
+ is-string@1.1.0:
+ resolution: {integrity: sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==}
engines: {node: '>= 0.4'}
- is-symbol@1.1.1:
- resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
+ is-symbol@1.1.0:
+ resolution: {integrity: sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A==}
engines: {node: '>= 0.4'}
- is-typed-array@1.1.15:
- resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
+ is-typed-array@1.1.13:
+ resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
is-unicode-supported@0.1.0:
@@ -5804,13 +6258,15 @@ packages:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
- is-weakref@1.1.1:
- resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
+ is-weakref@1.0.2:
+ resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+
+ is-weakset@2.0.3:
+ resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
engines: {node: '>= 0.4'}
- is-weakset@2.0.4:
- resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
- engines: {node: '>= 0.4'}
+ is-what@3.14.1:
+ resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
@@ -5836,8 +6292,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
- istanbul-lib-instrument@6.0.3:
- resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
+ istanbul-lib-instrument@6.0.2:
+ resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==}
engines: {node: '>=10'}
istanbul-lib-report@3.0.1:
@@ -5856,8 +6312,8 @@ packages:
resolution: {integrity: sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==}
engines: {node: '>=6'}
- iterator.prototype@1.1.5:
- resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
+ iterator.prototype@1.1.3:
+ resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
engines: {node: '>= 0.4'}
jackspeak@2.3.6:
@@ -5871,8 +6327,8 @@ packages:
resolution: {integrity: sha512-oSwM7q8PTHQWuZAlp995iPpPJ4Vkl7qT0ZRD+9duL9j2oBy6KcTfyxc8mEuHJYC+z/kbps80aJLkaNzTOrf/kw==}
engines: {node: 20 || >=22}
- jake@10.9.2:
- resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
+ jake@10.8.7:
+ resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
engines: {node: '>=10'}
hasBin: true
@@ -6009,6 +6465,13 @@ packages:
node-notifier:
optional: true
+ jiti@1.21.0:
+ resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
+ hasBin: true
+
+ jose@4.15.9:
+ resolution: {integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==}
+
jotai-optics@0.4.0:
resolution: {integrity: sha512-osbEt9AgS55hC4YTZDew2urXKZkaiLmLqkTS/wfW5/l0ib8bmmQ7kBXSFaosV6jDDWSp00IipITcJARFHdp42g==}
peerDependencies:
@@ -6027,8 +6490,8 @@ packages:
react:
optional: true
- js-beautify@1.15.3:
- resolution: {integrity: sha512-rKKGuyTxGNlyN4EQKWzNndzXpi0bOl8Gl8YQAW1as/oMz0XhD6sHJO1hTvoBDOSzKuJb9WkwoAb34FfdkKMv2A==}
+ js-beautify@1.15.1:
+ resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==}
engines: {node: '>=14'}
hasBin: true
@@ -6056,13 +6519,17 @@ packages:
canvas:
optional: true
- jsesc@3.0.2:
- resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
- engines: {node: '>=6'}
+ jsesc@0.5.0:
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- jsesc@3.1.0:
- resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ jsesc@2.5.2:
+ resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
engines: {node: '>=6'}
hasBin: true
@@ -6122,6 +6589,9 @@ packages:
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ keyv@5.2.3:
+ resolution: {integrity: sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw==}
+
khroma@2.1.0:
resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==}
@@ -6195,6 +6665,11 @@ packages:
leac@0.6.0:
resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==}
+ less@4.2.0:
+ resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
@@ -6203,13 +6678,18 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- lib0@0.2.99:
- resolution: {integrity: sha512-vwztYuUf1uf/1zQxfzRfO5yzfNKhTtgOByCruuiQQxWQXnPb8Itaube5ylofcV0oM0aKal9Mv+S1s1Ky0UYP1w==}
+ lib0@0.2.88:
+ resolution: {integrity: sha512-KyroiEvCeZcZEMx5Ys+b4u4eEBbA1ch7XUaBhYpwa/nPMrzTjUhI4RfcytmQfYoTBPcdyx+FX6WFNIoNuJzJfQ==}
engines: {node: '>=16'}
hasBin: true
- libphonenumber-js@1.11.20:
- resolution: {integrity: sha512-/ipwAMvtSZRdiQBHqW1qxqeYiBMzncOQLVA+62MWYr7N4m7Q2jqpJ0WgT7zlOEOpyLRSqrMXidbJpC0J77AaKA==}
+ lib0@0.2.98:
+ resolution: {integrity: sha512-XteTiNO0qEXqqweWx+b21p/fBnNHUA1NwAtJNJek1oPrewEZs2uiT4gWivHKr9GqCjDPAhchz0UQO8NwU3bBNA==}
+ engines: {node: '>=16'}
+ hasBin: true
+
+ libphonenumber-js@1.10.58:
+ resolution: {integrity: sha512-53A0IpJFL9LdHbpeatwizf8KSwPICrqn9H0g3Y7WQ+Jgeu9cQ4Ew3WrRtrLBu/CX2lXd5+rgT01/tGlkbkzOjw==}
lie@3.3.0:
resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
@@ -6234,8 +6714,8 @@ packages:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- local-pkg@1.0.0:
- resolution: {integrity: sha512-bbgPw/wmroJsil/GgL4qjDzs5YLTBMQ99weRsok1XCDccQeehbHA/I1oRvk2NPtr7KGZgT/Y5tPRnAtMqeG2Kg==}
+ local-pkg@0.5.1:
+ resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
engines: {node: '>=14'}
locate-path@5.0.0:
@@ -6298,16 +6778,16 @@ packages:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
- loglevel@1.9.2:
- resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
+ loglevel@1.9.1:
+ resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==}
engines: {node: '>= 0.6.0'}
loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- lowlight@3.3.0:
- resolution: {integrity: sha512-0JNhgFoPvP6U6lE/UdVsSq99tn6DhjjpAj5MxG49ewd2mOBVtwWYIT8ClyABhq198aXXODMU6Ox8DrGy/CpTZQ==}
+ lowlight@3.2.0:
+ resolution: {integrity: sha512-8Me8xHTCBYEXwcJIPcurnXTeERl3plwb4207v6KPye48kX/oaYDiwXy+OCm3M/pyAPUrkMhalKsbYPm24f/UDg==}
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
@@ -6319,13 +6799,21 @@ packages:
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- luxon@3.5.0:
- resolution: {integrity: sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==}
+ lru-cache@6.0.0:
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
+
+ luxon@3.4.4:
+ resolution: {integrity: sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==}
engines: {node: '>=12'}
magic-string@0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+ make-dir@2.1.0:
+ resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+ engines: {node: '>=6'}
+
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
@@ -6354,10 +6842,6 @@ packages:
engines: {node: '>= 16'}
hasBin: true
- math-intrinsics@1.1.0:
- resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
- engines: {node: '>= 0.4'}
-
md-to-react-email@5.0.2:
resolution: {integrity: sha512-x6kkpdzIzUhecda/yahltfEl53mH26QdWu4abUF9+S0Jgam8P//Ciro8cdhyMHnT5MQUJYrIbO6ORM2UxPiNNA==}
peerDependencies:
@@ -6387,6 +6871,10 @@ packages:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
+ micromatch@4.0.5:
+ 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'}
@@ -6399,6 +6887,11 @@ packages:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
+ mime@1.6.0:
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
+ engines: {node: '>=4'}
+ hasBin: true
+
mime@2.6.0:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
engines: {node: '>=4.0.0'}
@@ -6432,8 +6925,8 @@ packages:
resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
engines: {node: '>=16 || 14 >=14.17'}
- minimatch@9.0.5:
- resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ minimatch@9.0.4:
+ resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
engines: {node: '>=16 || 14 >=14.17'}
minimist@1.2.8:
@@ -6460,17 +6953,20 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.7.4:
- resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
+ mlly@1.7.3:
+ resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
mnemonist@0.39.8:
resolution: {integrity: sha512-vyWo2K3fjrUw8YeeZ1zF0fy6Mu59RHokURlld8ymdUPjMlD9EC9ov1/YPqTgqRvUN9nTr3Gqfz29LYAmu0PHPQ==}
+ ms@2.1.2:
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- msgpackr-extract@3.0.3:
- resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==}
+ msgpackr-extract@3.0.2:
+ resolution: {integrity: sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A==}
hasBin: true
msgpackr@1.11.2:
@@ -6480,6 +6976,11 @@ packages:
resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+
nanoid@3.3.8:
resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -6493,6 +6994,11 @@ packages:
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ needle@3.3.1:
+ resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
+ engines: {node: '>= 4.4.x'}
+ hasBin: true
+
negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
@@ -6544,8 +7050,8 @@ packages:
encoding:
optional: true
- node-gyp-build-optional-packages@5.2.2:
- resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
+ node-gyp-build-optional-packages@5.0.7:
+ resolution: {integrity: sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w==}
hasBin: true
node-int64@0.4.0:
@@ -6554,8 +7060,11 @@ packages:
node-machine-id@1.1.12:
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
- node-releases@2.0.19:
- resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+ node-releases@2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
nodemailer@6.10.0:
resolution: {integrity: sha512-SQ3wZCExjeSatLE/HBaXS5vqUOQk6GtBdIIKxiFdmm01mOQZX/POJkO3SUX1wDiYcwUOJwT23scFSC9fY2H8IA==}
@@ -6566,9 +7075,9 @@ packages:
engines: {node: '>=6'}
hasBin: true
- nopt@8.1.0:
- resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ nopt@7.2.0:
+ resolution: {integrity: sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
normalize-path@3.0.0:
@@ -6605,24 +7114,31 @@ packages:
'@swc/core':
optional: true
+ oauth@0.10.0:
+ resolution: {integrity: sha512-1orQ9MT1vHFGQxhuy7E/0gECD3fd2fCC+PIX+/jgmU/gI3EpRocXtmtvxCO5x3WZ443FLTLFWNDjl5MPJf9u+Q==}
+
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
+ object-hash@2.2.0:
+ resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==}
+ engines: {node: '>= 6'}
+
object-hash@3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- object-inspect@1.13.4:
- resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
+ object-inspect@1.13.3:
+ resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
engines: {node: '>= 0.4'}
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- object.assign@4.1.7:
- resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
+ object.assign@4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
engines: {node: '>= 0.4'}
object.entries@1.1.8:
@@ -6633,16 +7149,20 @@ packages:
resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
engines: {node: '>= 0.4'}
- object.values@1.2.1:
- resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
+ object.values@1.2.0:
+ resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
- obliterator@2.0.5:
- resolution: {integrity: sha512-42CPE9AhahZRsMNslczq0ctAEtqk8Eka26QofnqC346BZdHDySk3LWka23LI7ULIw11NmltpiLagIq8gBozxTw==}
+ obliterator@2.0.4:
+ resolution: {integrity: sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==}
obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
+ oidc-token-hash@5.0.3:
+ resolution: {integrity: sha512-IF4PcGgzAr6XXSff26Sk/+P4KZFJVuHAJZj3wgO3vX2bMdNVp/QXTP3P7CEm9V1IdG8lDLY3HhiqpsE/nOwpPw==}
+ engines: {node: ^10.13.0 || >=12.0.0}
+
on-exit-leak-free@2.1.2:
resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
engines: {node: '>=14.0.0'}
@@ -6658,11 +7178,14 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
+ openid-client@5.7.1:
+ resolution: {integrity: sha512-jDBPgSVfTnkIh71Hg9pRvtJc6wTwqjRkN88+gCFtYWrlP4Yx2Dsrow8uPi3qLr/aeymPF3o2+dS+wOpglK04ew==}
+
optics-ts@2.4.1:
resolution: {integrity: sha512-HaYzMHvC80r7U/LqAd4hQyopDezC60PO2qF5GuIwALut2cl5rK1VWHsqTp0oqoJJWjiv6uXKqsO+Q2OO0C3MmQ==}
- optionator@0.9.4:
- resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
+ optionator@0.9.3:
+ resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
engines: {node: '>= 0.8.0'}
ora@5.3.0:
@@ -6680,10 +7203,6 @@ packages:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- own-keys@1.0.1:
- resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
- engines: {node: '>= 0.4'}
-
p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
@@ -6708,11 +7227,11 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- package-json-from-dist@1.0.1:
- resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+ package-json-from-dist@1.0.0:
+ resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
- package-manager-detector@0.2.9:
- resolution: {integrity: sha512-+vYvA/Y31l8Zk8dwxHhL3JfTuHPm6tlxM2A3GeQyl7ovYnSp1+mzAxClxaOr0qO1TtPxbQxetI7v5XqKLJZk7Q==}
+ package-manager-detector@0.2.5:
+ resolution: {integrity: sha512-3dS7y28uua+UDbRCLBqltMBrbI+A5U2mI9YuxHRxIWYmLj3DwntEBmERYzIAQ4DMeuCUOBSak7dBHHoXKpOTYQ==}
pako@1.0.11:
resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
@@ -6725,15 +7244,27 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
- parse5@7.2.1:
- resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
+ parse-node-version@1.0.1:
+ resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
+ engines: {node: '>= 0.10'}
+
+ parse5@7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
parseley@0.12.1:
resolution: {integrity: sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw==}
+ passport-google-oauth20@2.0.0:
+ resolution: {integrity: sha512-KSk6IJ15RoxuGq7D1UKK/8qKhNfzbLeLrG3gkLZ7p4A6DBCcv7xpyQwuXtWdpyR0+E0mwkpjY1VfPOhxQrKzdQ==}
+ engines: {node: '>= 0.4.0'}
+
passport-jwt@4.0.1:
resolution: {integrity: sha512-UCKMDYhNuGOBE9/9Ycuoyh7vP6jpeTp/+sfMJl7nLff/t6dps+iaeE0hhNkKN8/HZHcJ7lCdOyDxHdDoxoSvdQ==}
+ passport-oauth2@1.8.0:
+ resolution: {integrity: sha512-cjsQbOrXIDE4P8nNb3FQRCCmJJ/utnFKEz2NX209f7KOHPoX18gF7gBzBbLLsj2/je4KrgiwLLGjf0lm9rtTBA==}
+ engines: {node: '>= 0.4.0'}
+
passport-strategy@1.0.0:
resolution: {integrity: sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==}
engines: {node: '>= 0.4.0'}
@@ -6776,8 +7307,8 @@ packages:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- pathe@2.0.3:
- resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
+ pathe@1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
pause@0.0.1:
resolution: {integrity: sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==}
@@ -6804,6 +7335,9 @@ packages:
peerDependencies:
pg: '>=8.0'
+ pg-protocol@1.7.0:
+ resolution: {integrity: sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ==}
+
pg-protocol@1.7.1:
resolution: {integrity: sha512-gjTHWGYWsEgy9MsY0Gp6ZJxV24IjDqdpTW7Eh0x+WfJLFsm/TJx1MzL6T0D88mBvkpxotCQ6TwW6N+Kko7lhgQ==}
@@ -6831,6 +7365,12 @@ packages:
pgpass@1.0.5:
resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
+ picocolors@1.0.0:
+ resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+
+ picocolors@1.0.1:
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -6842,14 +7382,18 @@ packages:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'}
- pino-abstract-transport@2.0.0:
- resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==}
+ pify@4.0.1:
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
+
+ pino-abstract-transport@1.2.0:
+ resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==}
pino-std-serializers@7.0.0:
resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==}
- pino@9.6.0:
- resolution: {integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==}
+ pino@9.1.0:
+ resolution: {integrity: sha512-qUcgfrlyOtjwhNLdbhoL7NR4NkHjzykAPw0V2QLFbvu/zss29h4NkRnibyFzBrNCbzCOY3WZ9hhKSwfOkNggYA==}
hasBin: true
pirates@4.0.6:
@@ -6860,8 +7404,8 @@ packages:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
- pkg-types@1.3.1:
- resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
+ pkg-types@1.2.1:
+ resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
@@ -6873,8 +7417,8 @@ packages:
points-on-path@0.2.1:
resolution: {integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==}
- possible-typed-array-names@1.1.0:
- resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
+ possible-typed-array-names@1.0.0:
+ resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
postcss-js@4.0.1:
@@ -6889,8 +7433,8 @@ packages:
peerDependencies:
postcss: ^8.2.14
- postcss-nested@6.2.0:
- resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
+ postcss-nested@6.0.1:
+ resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
@@ -6900,8 +7444,8 @@ packages:
peerDependencies:
postcss: '>=8.0.0'
- postcss-selector-parser@6.1.2:
- resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
+ postcss-selector-parser@6.0.15:
+ resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
engines: {node: '>=4'}
postcss-simple-vars@7.0.1:
@@ -6914,8 +7458,12 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.5.3:
- resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+ postcss@8.4.49:
+ resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ postcss@8.5.2:
+ resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==}
engines: {node: ^10 || ^12 || >=14}
postgres-array@2.0.0:
@@ -6960,6 +7508,11 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
+ prettier@3.4.1:
+ resolution: {integrity: sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==}
+ engines: {node: '>=14'}
+ hasBin: true
+
prettier@3.5.1:
resolution: {integrity: sha512-hPpFQvHwL3Qv5AdRvBFMhnKo4tYxp0ReXiPn2bxkiohEX6mBeBwEpBSQTkD458RaaDKQMYSp4hX4UtfUTA5wDw==}
engines: {node: '>=14'}
@@ -6980,8 +7533,15 @@ packages:
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- process-warning@4.0.1:
- resolution: {integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==}
+ process-warning@3.0.0:
+ resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==}
+
+ process-warning@4.0.0:
+ resolution: {integrity: sha512-/MyYDxttz7DfGMMHiysAsFE4qF+pQYAA8ziO/3NcRVrQ5fSk+Mns4QZA/oRPFzvcqNoVJXQNWNAsdwBXLUkQKw==}
+
+ process@0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
@@ -6996,8 +7556,8 @@ packages:
prosemirror-collab@1.3.1:
resolution: {integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==}
- prosemirror-commands@1.7.0:
- resolution: {integrity: sha512-6toodS4R/Aah5pdsrIwnTYPEjW70SlO5a66oo5Kk+CIrgJz3ukOoS+FYDGqvQlAX5PxoGWDX1oD++tn5X3pyRA==}
+ prosemirror-commands@1.6.2:
+ resolution: {integrity: sha512-0nDHH++qcf/BuPLYvmqZTUUsPJUCPBUXt0J1ErTcDIS369CTp773itzLGIgIXG4LJXOlwYCr44+Mh4ii6MP1QA==}
prosemirror-dropcursor@1.8.1:
resolution: {integrity: sha512-M30WJdJZLyXHi3N8vxN6Zh5O8ZBbQCz0gURTfPmTIBNQ5pxrdU7A58QkNqfa98YEjSAL1HUyyU34f6Pm5xBSGw==}
@@ -7020,20 +7580,20 @@ packages:
prosemirror-menu@1.2.4:
resolution: {integrity: sha512-S/bXlc0ODQup6aiBbWVsX/eM+xJgCTAfMq/nLqaO5ID/am4wS0tTCIkzwytmao7ypEtjj39i7YbJjAgO20mIqA==}
- prosemirror-model@1.24.1:
- resolution: {integrity: sha512-YM053N+vTThzlWJ/AtPtF1j0ebO36nvbmDy4U7qA2XQB8JVaQp1FmB9Jhrps8s+z+uxhhVTny4m20ptUvhk0Mg==}
+ prosemirror-model@1.23.0:
+ resolution: {integrity: sha512-Q/fgsgl/dlOAW9ILu4OOhYWQbc7TQd4BwKH/RwmUjyVf8682Be4zj3rOYdLnYEcGzyg8LL9Q5IWYKD8tdToreQ==}
prosemirror-schema-basic@1.2.3:
resolution: {integrity: sha512-h+H0OQwZVqMon1PNn0AG9cTfx513zgIG2DY00eJ00Yvgb3UD+GQ/VlWW5rcaxacpCGT1Yx8nuhwXk4+QbXUfJA==}
- prosemirror-schema-list@1.5.0:
- resolution: {integrity: sha512-gg1tAfH1sqpECdhIHOA/aLg2VH3ROKBWQ4m8Qp9mBKrOxQRW61zc+gMCI8nh22gnBzd1t2u1/NPLmO3nAa3ssg==}
+ prosemirror-schema-list@1.4.1:
+ resolution: {integrity: sha512-jbDyaP/6AFfDfu70VzySsD75Om2t3sXTOdl5+31Wlxlg62td1haUpty/ybajSfJ1pkGadlOfwQq9kgW5IMo1Rg==}
prosemirror-state@1.4.3:
resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==}
- prosemirror-tables@1.6.4:
- resolution: {integrity: sha512-TkDY3Gw52gRFRfRn2f4wJv5WOgAOXLJA2CQJYIJ5+kdFbfj3acR4JUW6LX2e1hiEBiUwvEhzH5a3cZ5YSztpIA==}
+ prosemirror-tables@1.6.1:
+ resolution: {integrity: sha512-p8WRJNA96jaNQjhJolmbxTzd6M4huRE5xQ8OxjvMhQUP0Nzpo4zz6TztEiwk6aoqGBhz9lxRWR1yRZLlpQN98w==}
prosemirror-trailing-node@3.0.0:
resolution: {integrity: sha512-xiun5/3q0w5eRnGYfNlW1uU9W6x5MoFKWwq/0TIRgt09lv7Hcser2QYV8t4muXbEr+Fwo0geYn79Xs4GKywrRQ==}
@@ -7045,8 +7605,8 @@ packages:
prosemirror-transform@1.10.2:
resolution: {integrity: sha512-2iUq0wv2iRoJO/zj5mv8uDUriOHWzXRnOTVgCzSXnktS/2iQRa3UUQwVlkBlYZFtygw6Nh1+X4mGqoYBINn5KQ==}
- prosemirror-view@1.38.0:
- resolution: {integrity: sha512-O45kxXQTaP9wPdXhp8TKqCR+/unS/gnfg9Q93svQcB3j0mlp2XSPAmsPefxHADwzC+fbNS404jqRxm3UQaGvgw==}
+ prosemirror-view@1.37.0:
+ resolution: {integrity: sha512-z2nkKI1sJzyi7T47Ji/ewBPuIma1RNvQCCYVdV+MqWBV7o4Sa1n94UJCJJ1aQRF/xRkFfyqLGlGFWitIcCOtbg==}
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
@@ -7054,6 +7614,9 @@ packages:
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ prr@1.0.1:
+ resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
+
punycode.js@2.3.1:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
engines: {node: '>=6'}
@@ -7065,8 +7628,8 @@ packages:
pure-rand@6.1.0:
resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
- qs@6.14.0:
- resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
+ qs@6.12.0:
+ resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==}
engines: {node: '>=0.6'}
queue-microtask@1.2.3:
@@ -7084,12 +7647,12 @@ packages:
react: '>= 16.14'
react-dom: '>= 16.14'
- react-clear-modal@2.0.13:
- resolution: {integrity: sha512-9QxY4IkYN8dXl5jt8+aaiz1x4CfVMRaD8XKAvt3Rc3j/noIUceq3rcwyw/vU3Jqq/41xOTsoAUePBhMtNr9aAw==}
+ react-clear-modal@2.0.11:
+ resolution: {integrity: sha512-fR6vl7hugeHYtZC9dfF1hZrS/63j5E0pyFLNZXYy6Dtr07eQdkALAH0bnnWPiiFAo3ZYztCKMBDkkjfjnZfWoQ==}
peerDependencies:
- '@types/react': ^16.8 || ^17 || ^18 || ^19
- react: ^16.8 || ^17 || ^18 || ^19
- react-dom: ^16.8 || ^17 || ^18 || ^19
+ '@types/react': ^16.8 || ^17 || ^18
+ react: ^16.8 || ^17 || ^18
+ react-dom: ^16.8 || ^17 || ^18
peerDependenciesMeta:
'@types/react':
optional: true
@@ -7117,10 +7680,10 @@ packages:
peerDependencies:
react: ^18.3.1
- react-drawio@1.0.3:
- resolution: {integrity: sha512-Tp7CsVzo11EWssXSW1m0zK7+awjVjVlGXsmDABa7SBaOTiLrBO9ESU4TraNP4oBdIX8N7wz5Iw10Ek+itVDmEw==}
+ react-drawio@1.0.1:
+ resolution: {integrity: sha512-/oldXDR2WbDkhnnDqNVZH2oqzKX/JrDk1QdeRG4uoUEJ8f8o8Fxlq7sS7U7X1UCjgv80cN+lLWAzRI6phoOtKA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-email@3.0.2:
resolution: {integrity: sha512-R7Doynb6NbnDvHx+9dWxkiWN2eaq9hj4MxRdkS94cVD/WDaIzESSLm62GtAAyLJ65xA2ROJydFlcYsDq4hGi4Q==}
@@ -7140,8 +7703,8 @@ packages:
peerDependencies:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
- react-i18next@15.4.1:
- resolution: {integrity: sha512-ahGab+IaSgZmNPYXdV1n+OYky95TGpFwnKRflX/16dY04DsYYKHtVLjeny7sBSCREEcoMbAgSkFiGLF5g5Oofw==}
+ react-i18next@15.0.1:
+ resolution: {integrity: sha512-NwxLqNM6CLbeGA9xPsjits0EnXdKgCRSS6cgkgOdNcPXqL+1fYNl8fBg1wmnnHvFy812Bt4IWTPE9zjoPmFj3w==}
peerDependencies:
i18next: '>= 23.2.3'
react: '>= 16.8.0'
@@ -7156,8 +7719,8 @@ packages:
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- react-is@18.3.1:
- resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+ react-is@18.2.0:
+ resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
react-number-format@5.4.3:
resolution: {integrity: sha512-VCY5hFg/soBighAoGcdE+GagkJq0230qN6jcS5sp8wQX1qy1fYN/RX7/BXkrs0oyzzwqR8/+eSUrqXbGeywdUQ==}
@@ -7192,15 +7755,15 @@ packages:
'@types/react':
optional: true
- react-router-dom@7.2.0:
- resolution: {integrity: sha512-cU7lTxETGtQRQbafJubvZKHEn5izNABxZhBY0Jlzdv0gqQhCPQt2J8aN5ZPjS6mQOXn5NnirWNh+FpE8TTYN0Q==}
+ react-router-dom@7.0.1:
+ resolution: {integrity: sha512-duBzwAAiIabhFPZfDjcYpJ+f08TMbPMETgq254GWne2NW1ZwRHhZLj7tpSp8KGb7JvZzlLcjGUnqLxpZQVEPng==}
engines: {node: '>=20.0.0'}
peerDependencies:
react: '>=18'
react-dom: '>=18'
- react-router@7.2.0:
- resolution: {integrity: sha512-fXyqzPgCPZbqhrk7k3hPcCpYIlQ2ugIXDboHUzhJISFVy2DEPsmHgN588MyGmkIOv3jDgNfUE3kJi83L28s/LQ==}
+ react-router@7.0.1:
+ resolution: {integrity: sha512-WVAhv9oWCNsja5AkK6KLpXJDSJCQizOIyOd4vvB/+eHGbYx5vkhcmcmwWjQ9yqkRClogi+xjEg9fNEOd5EX/tw==}
engines: {node: '>=20.0.0'}
peerDependencies:
react: '>=18'
@@ -7231,12 +7794,12 @@ packages:
react: '>=16.6.0'
react-dom: '>=16.6.0'
- react-window@1.8.11:
- resolution: {integrity: sha512-+SRbUVT2scadgFSWx+R1P754xHPEqvcfSfVX10QYg6POOz+WNgkN48pS+BtZNIMGiL1HYrSEiCkwsMS15QogEQ==}
+ react-window@1.8.10:
+ resolution: {integrity: sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==}
engines: {node: '>8.0.0'}
peerDependencies:
- react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.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@18.3.1:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
@@ -7249,13 +7812,17 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
+ readable-stream@4.5.2:
+ resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- readdirp@4.1.2:
- resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
- engines: {node: '>= 14.18.0'}
+ readdirp@4.0.2:
+ resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
+ engines: {node: '>= 14.16.0'}
real-require@0.2.0:
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
@@ -7289,12 +7856,12 @@ packages:
reflect-metadata@0.2.2:
resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
- reflect.getprototypeof@1.0.10:
- resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
+ reflect.getprototypeof@1.0.7:
+ resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==}
engines: {node: '>= 0.4'}
- regenerate-unicode-properties@10.2.0:
- resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ regenerate-unicode-properties@10.1.1:
+ resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
engines: {node: '>=4'}
regenerate@1.4.2:
@@ -7306,19 +7873,16 @@ packages:
regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
- regexp.prototype.flags@1.5.4:
- resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
+ regexp.prototype.flags@1.5.3:
+ resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
engines: {node: '>= 0.4'}
- regexpu-core@6.2.0:
- resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
+ regexpu-core@5.3.2:
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
- regjsgen@0.8.0:
- resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
-
- regjsparser@0.12.0:
- resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
+ regjsparser@0.9.1:
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
repeat-string@1.6.1:
@@ -7348,13 +7912,16 @@ packages:
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
+ resolve.exports@2.0.2:
+ resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
+ engines: {node: '>=10'}
+
resolve.exports@2.0.3:
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
engines: {node: '>=10'}
- resolve@1.22.10:
- resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
- engines: {node: '>= 0.4'}
+ resolve@1.22.8:
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
resolve@2.0.0-next.5:
@@ -7373,8 +7940,8 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- rfdc@1.4.1:
- resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+ rfdc@1.3.1:
+ resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
@@ -7384,8 +7951,8 @@ packages:
robust-predicates@3.0.2:
resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
- rollup@4.34.8:
- resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==}
+ rollup@4.34.7:
+ resolution: {integrity: sha512-8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -7410,8 +7977,8 @@ packages:
rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
- safe-array-concat@1.1.3:
- resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
+ safe-array-concat@1.1.2:
+ resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
engines: {node: '>=0.4'}
safe-buffer@5.1.2:
@@ -7420,19 +7987,15 @@ packages:
safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safe-push-apply@1.0.0:
- resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
- engines: {node: '>= 0.4'}
-
- safe-regex-test@1.1.0:
- resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
+ safe-regex-test@1.0.3:
+ resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
engines: {node: '>= 0.4'}
safe-regex2@4.0.1:
resolution: {integrity: sha512-goqsB+bSlOmVX+CiFX2PFc1OV88j5jvBqIM+DgqrucHnUguAUNtiNOs+aTadq2NqsLQ+TQ3UEVG3gtSFcdlkCg==}
- safe-stable-stringify@2.5.0:
- resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
+ safe-stable-stringify@2.4.3:
+ resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==}
engines: {node: '>=10'}
safer-buffer@2.1.2:
@@ -7441,6 +8004,9 @@ packages:
sanitize-filename-ts@1.0.2:
resolution: {integrity: sha512-bON2VOJoappmaBHlnxvBNk5R7HkUAsirf5m1M5Kz15uZykDGbHfGPCQNcEQKR8HrQhgh9CmQ6Xe9y71yM9ywkw==}
+ sax@1.4.1:
+ resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
+
saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
@@ -7462,12 +8028,16 @@ packages:
selderee@0.11.0:
resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==}
+ semver@5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+ hasBin: true
+
semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.7.1:
- resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
@@ -7477,8 +8047,8 @@ packages:
set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
- set-cookie-parser@2.7.1:
- resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==}
+ set-cookie-parser@2.6.0:
+ resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==}
set-function-length@1.2.2:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
@@ -7488,10 +8058,6 @@ packages:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
- set-proto@1.0.0:
- resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
- engines: {node: '>= 0.4'}
-
setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
@@ -7509,9 +8075,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.2:
- resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
- engines: {node: '>= 0.4'}
+ shell-quote@1.8.1:
+ resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
shelljs.exec@1.1.8:
resolution: {integrity: sha512-vFILCw+lzUtiwBAHV8/Ex8JsFjelFMdhONIsgKNLgTzeRckp2AOYRQtHJE/9LhNvdMmE27AGtzWx0+DHpwIwSw==}
@@ -7522,20 +8087,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- side-channel-list@1.0.0:
- resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
- engines: {node: '>= 0.4'}
-
- side-channel-map@1.0.1:
- resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
- engines: {node: '>= 0.4'}
-
- side-channel-weakmap@1.0.2:
- resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
- engines: {node: '>= 0.4'}
-
- side-channel@1.1.0:
- resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+ side-channel@1.0.6:
+ resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
engines: {node: '>= 0.4'}
signal-exit@3.0.7:
@@ -7552,8 +8105,8 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- socket.io-adapter@2.5.5:
- resolution: {integrity: sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==}
+ socket.io-adapter@2.5.4:
+ resolution: {integrity: sha512-wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg==}
socket.io-client@4.8.1:
resolution: {integrity: sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==}
@@ -7571,8 +8124,8 @@ packages:
resolution: {integrity: sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==}
engines: {node: '>=10.2.0'}
- sonic-boom@4.2.0:
- resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==}
+ sonic-boom@4.0.1:
+ resolution: {integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==}
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
@@ -7629,20 +8182,19 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string.prototype.matchall@4.0.12:
- resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
+ 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.trim@1.2.10:
- resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
+ string.prototype.trim@1.2.9:
+ resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
engines: {node: '>= 0.4'}
- string.prototype.trimend@1.0.9:
- resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
- engines: {node: '>= 0.4'}
+ string.prototype.trimend@1.0.8:
+ resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
string.prototype.trimstart@1.0.8:
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
@@ -7678,8 +8230,12 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- strnum@1.1.1:
- resolution: {integrity: sha512-O7aCHfYCamLCctjAiaucmE+fHf2DYHkus2OKCn4Wv03sykfFtgeECn505X6K4mPl8CRNd/qurC9guq+ynoN4pw==}
+ stripe@17.5.0:
+ resolution: {integrity: sha512-kcyeAkDFjGsVl17FqnG7q/+xIjt0ZjOo9Dm+q8deAvs2Xe4iAHrhxyoP4etUVFc+/LZJANjIPVR+ZOnt9hr/Ug==}
+ engines: {node: '>=12.*'}
+
+ strnum@1.0.5:
+ resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
styled-jsx@5.1.1:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
@@ -7694,8 +8250,8 @@ packages:
babel-plugin-macros:
optional: true
- stylis@4.3.6:
- resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==}
+ stylis@4.3.3:
+ resolution: {integrity: sha512-VtF42zBHvdPi561i9mAcPlWOUonfbCtXa7qdGI+Ro4qMP8TEb+7GpbGWD1+v2TS4nohQ0m8g1FhTVmRdcIsxdQ==}
sugarss@4.0.1:
resolution: {integrity: sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==}
@@ -7774,11 +8330,11 @@ packages:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
- thread-stream@3.1.0:
- resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==}
+ thread-stream@3.0.2:
+ resolution: {integrity: sha512-cBL4xF2A3lSINV4rD5tyqnKH4z/TgWPvT+NaVhJDSwK962oo/Ye7cHSMbDzwcu7tAE1SfU6Q4XtV6Hucmi6Hlw==}
- tinyexec@0.3.2:
- resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
+ tinyexec@0.3.1:
+ resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
tinyglobby@0.2.12:
resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
@@ -7787,27 +8343,31 @@ packages:
tippy.js@6.3.7:
resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==}
- tiptap-extension-global-drag-handle@0.1.18:
- resolution: {integrity: sha512-jwFuy1K8DP3a4bFy76Hpc63w1Sil0B7uZ3mvhQomVvUFCU787Lg2FowNhn7NFzeyok761qY2VG+PZ/FDthWUdg==}
+ tiptap-extension-global-drag-handle@0.1.16:
+ resolution: {integrity: sha512-Toke8gAgvgmSTmpU5Zome29ywdcIPxVZVkzI3GpUbaX8DF7o2ukyb+g/x5PAwBWQt/E4nhX91QlClo96psSYHQ==}
- tldts-core@6.1.78:
- resolution: {integrity: sha512-jS0svNsB99jR6AJBmfmEWuKIgz91Haya91Z43PATaeHJ24BkMoNRb/jlaD37VYjb0mYf6gRL/HOnvS1zEnYBiw==}
+ tldts-core@6.1.72:
+ resolution: {integrity: sha512-FW3H9aCaGTJ8l8RVCR3EX8GxsxDbQXuwetwwgXA2chYdsX+NY1ytCBl61narjjehWmCw92tc1AxlcY3668CU8g==}
- tldts@6.1.78:
- resolution: {integrity: sha512-fSgYrW0ITH0SR/CqKMXIruYIPpNu5aDgUp22UhYoSrnUQwc7SBqifEBFNce7AAcygUPBo6a/gbtcguWdmko4RQ==}
+ tldts@6.1.72:
+ resolution: {integrity: sha512-QNtgIqSUb9o2CoUjX9T5TwaIvUUJFU1+12PJkgt42DFV2yf9J6549yTF2uGloQsJ/JOC8X+gIB81ind97hRiIQ==}
hasBin: true
tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
- tmp@0.2.3:
- resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
- engines: {node: '>=14.14'}
+ tmp@0.2.1:
+ resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
+ engines: {node: '>=8.17.0'}
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
+ 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'}
@@ -7820,8 +8380,8 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- tough-cookie@5.1.1:
- resolution: {integrity: sha512-Ek7HndSVkp10hmHP9V4qZO1u+pn1RU5sI0Fw+jCU3lyvuMZcgqsNgc6CmJJZyByK4Vm/qotGRJlfgAX8q+4JiA==}
+ tough-cookie@5.1.0:
+ resolution: {integrity: sha512-rvZUv+7MoBYTiDmFPBrhL7Ujx9Sk+q9wwm22x8c8T5IJaR+Wsyc7TNxbVxo84kZoRJZZMazowFLqpankBEQrGg==}
engines: {node: '>=16'}
tr46@0.0.3:
@@ -7838,6 +8398,12 @@ packages:
truncate-utf8-bytes@1.0.2:
resolution: {integrity: sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==}
+ ts-api-utils@1.3.0:
+ resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ typescript: '>=4.2.0'
+
ts-api-utils@2.0.1:
resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
engines: {node: '>=18.12'}
@@ -7915,6 +8481,12 @@ packages:
resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
engines: {node: '>=6'}
+ tslib@2.6.2:
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+
+ tslib@2.8.0:
+ resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==}
+
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
@@ -7942,26 +8514,36 @@ packages:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- type-fest@4.35.0:
- resolution: {integrity: sha512-2/AwEFQDFEy30iOLjrvHDIH7e4HEWH+f1Yl1bI5XMqzuoCUqwYCdxachgsgv0og/JdVZUhbfjcJAoHj5L1753A==}
+ type-fest@4.28.1:
+ resolution: {integrity: sha512-LO/+yb3mf46YqfUC7QkkoAlpa7CTYh//V1Xy9+NQ+pKqDqXIq0NTfPfQRwFfCt+if4Qkwb9gzZfsl6E5TkXZGw==}
engines: {node: '>=16'}
- typed-array-buffer@1.0.3:
- resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
+ typed-array-buffer@1.0.2:
+ resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
engines: {node: '>= 0.4'}
- typed-array-byte-length@1.0.3:
- resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
+ typed-array-byte-length@1.0.1:
+ resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.4:
- resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
+ typed-array-byte-offset@1.0.3:
+ resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==}
engines: {node: '>= 0.4'}
typed-array-length@1.0.7:
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
engines: {node: '>= 0.4'}
+ typescript-eslint@8.17.0:
+ resolution: {integrity: sha512-409VXvFd/f1br1DCbuKNFqQpXICoTB+V51afcwG1pn1a3Cp92MqAUges3YjwEdQ0cMUoCIodjVDAYzyD8h3SYA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
typescript-eslint@8.24.1:
resolution: {integrity: sha512-cw3rEdzDqBs70TIcb0Gdzbt6h11BSs2pS0yaq7hDWDBtCCSei1pPSUXE9qUdQ/Wm9NgFg8mKtMt1b8fTHIl1jA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -7969,6 +8551,11 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ typescript@5.7.2:
+ resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
typescript@5.7.3:
resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
engines: {node: '>=14.17'}
@@ -7980,6 +8567,9 @@ packages:
ufo@1.5.4:
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
+ uid2@0.0.4:
+ resolution: {integrity: sha512-IevTus0SbGwQzYh3+fRsAMTVVPOoIVufzacXcHPmdlle1jUpq7BRL+mw3dgeLanvGZdwwbWhRV6XrcFNdBmjWA==}
+
uid2@1.0.0:
resolution: {integrity: sha512-+I6aJUv63YAcY9n4mQreLUt0d4lvwkkopDNmpomkAUz0fAkEMV9pRWxN0EjhW1YfRhcuyHg2v3mwddCDW1+LFQ==}
engines: {node: '>= 4.0.0'}
@@ -7988,23 +8578,22 @@ packages:
resolution: {integrity: sha512-u3xV3X7uzvi5b1MncmZo3i2Aw222Zk1keqLA1YkHldREkAhAqi65wuPfe7lHx8H/Wzy+8CE7S7uS3jekIM5s8g==}
engines: {node: '>=8'}
- unbox-primitive@1.1.0:
- resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
- engines: {node: '>= 0.4'}
+ unbox-primitive@1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
undici-types@6.20.0:
resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
- unicode-canonical-property-names-ecmascript@2.0.1:
- resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
+ unicode-canonical-property-names-ecmascript@2.0.0:
+ resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.2.0:
- resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
+ unicode-match-property-value-ecmascript@2.1.0:
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
unicode-property-aliases-ecmascript@2.1.0:
@@ -8015,8 +8604,14 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- update-browserslist-db@1.1.2:
- resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==}
+ update-browserslist-db@1.0.13:
+ resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -8034,29 +8629,25 @@ packages:
'@types/react':
optional: true
- use-composed-ref@1.4.0:
- resolution: {integrity: sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==}
+ use-composed-ref@1.3.0:
+ resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+
+ use-isomorphic-layout-effect@1.1.2:
+ resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- use-isomorphic-layout-effect@1.2.0:
- resolution: {integrity: sha512-q6ayo8DWoPZT0VdG4u3D3uxcgONP3Mevx2i2b0434cwWBoL+aelL1DzkXI6w3PhTZzUeR2kaVlZn70iCiseP6w==}
+ use-latest@1.2.1:
+ resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
peerDependencies:
'@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-latest@1.3.0:
- resolution: {integrity: sha512-mhg3xdm9NaM8q+gLT8KryJPnRFOz1/5XPBhmDEVZK1webPzDjrPk7f/mbpeLqTgB9msytYWANxgALOCJKnLvcQ==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -8071,13 +8662,13 @@ packages:
'@types/react':
optional: true
- use-sync-external-store@1.4.0:
- resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==}
+ use-sync-external-store@1.2.2:
+ resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
- utf8-byte-length@1.0.5:
- resolution: {integrity: sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==}
+ utf8-byte-length@1.0.4:
+ resolution: {integrity: sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==}
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
@@ -8097,12 +8688,12 @@ packages:
v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
- v8-to-istanbul@9.3.0:
- resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
+ v8-to-istanbul@9.2.0:
+ resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==}
engines: {node: '>=10.12.0'}
- validate-npm-package-name@5.0.1:
- resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
+ validate-npm-package-name@5.0.0:
+ resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
validator@13.12.0:
@@ -8113,8 +8704,8 @@ packages:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- vite@6.1.1:
- resolution: {integrity: sha512-4GgM54XrwRfrOp297aIYspIti66k56v16ZnqHvrIM7mG+HjDlAwS7p+Srr7J6fGvEdOJ5JcQ/D9T7HhtdXDTzA==}
+ vite@6.1.0:
+ resolution: {integrity: sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -8187,8 +8778,8 @@ packages:
walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
- watchpack@2.4.2:
- resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
+ watchpack@2.4.1:
+ resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
engines: {node: '>=10.13.0'}
wcwidth@1.0.1:
@@ -8231,27 +8822,27 @@ packages:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
engines: {node: '>=18'}
- whatwg-url@14.1.1:
- resolution: {integrity: sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==}
+ whatwg-url@14.0.0:
+ resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
engines: {node: '>=18'}
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
- which-boxed-primitive@1.1.1:
- resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
+ which-boxed-primitive@1.1.0:
+ resolution: {integrity: sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==}
engines: {node: '>= 0.4'}
- which-builtin-type@1.2.1:
- resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
+ which-builtin-type@1.2.0:
+ resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==}
engines: {node: '>= 0.4'}
which-collection@1.0.2:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
- which-typed-array@1.1.18:
- resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
+ which-typed-array@1.1.16:
+ resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==}
engines: {node: '>= 0.4'}
which@2.0.2:
@@ -8266,10 +8857,6 @@ packages:
resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
engines: {node: '>=8'}
- 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'}
@@ -8289,6 +8876,18 @@ packages:
resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ ws@8.11.0:
+ resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
ws@8.17.1:
resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
engines: {node: '>=10.0.0'}
@@ -8301,8 +8900,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.1:
- resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -8313,10 +8912,29 @@ packages:
utf-8-validate:
optional: true
+ xml-crypto@6.0.0:
+ resolution: {integrity: sha512-L3RgnkaDrHaYcCnoENv4Idzt1ZRj5U1z1BDH98QdDTQfssScx8adgxhd9qwyYo+E3fXbQZjEQH7aiXHLVgxGvw==}
+ engines: {node: '>=16'}
+
+ xml-encryption@3.1.0:
+ resolution: {integrity: sha512-PV7qnYpoAMXbf1kvQkqMScLeQpjCMixddAKq9PtqVrho8HnYbBOWNfG0kA4R7zxQDo7w9kiYAyzS/ullAyO55Q==}
+
xml-name-validator@5.0.0:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
+ xml2js@0.6.2:
+ resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==}
+ engines: {node: '>=4.0.0'}
+
+ xmlbuilder@11.0.1:
+ resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
+ engines: {node: '>=4.0'}
+
+ xmlbuilder@15.1.1:
+ resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==}
+ engines: {node: '>=8.0'}
+
xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
@@ -8324,6 +8942,18 @@ packages:
resolution: {integrity: sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==}
engines: {node: '>=0.4.0'}
+ xpath@0.0.32:
+ resolution: {integrity: sha512-rxMJhSIoiO8vXcWvSifKqhvV96GjiD5wYb8/QHdoRyQvraTpp4IEv944nhGausZZ3u7dhQXteZuZbaqfpB7uYw==}
+ engines: {node: '>=0.6.0'}
+
+ xpath@0.0.33:
+ resolution: {integrity: sha512-NNXnzrkDrAzalLhIUc01jO2mOzXGXh1JwPgkihcLLzw98c0WgYDmmjSh1Kl3wzaxSVWMuA+fe0WTWOBDWCBmNA==}
+ engines: {node: '>=0.6.0'}
+
+ xpath@0.0.34:
+ resolution: {integrity: sha512-FxF6+rkr1rNSQrhUNYrAFJpRXNzlDoMxeXN5qI84939ylEv3qqPFKa85Oxr6tDaJKqwW6KKyo2v26TSv3k6LeA==}
+ engines: {node: '>=0.6.0'}
+
xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
@@ -8334,8 +8964,8 @@ packages:
peerDependencies:
yjs: ^13.0.0
- y-prosemirror@1.2.15:
- resolution: {integrity: sha512-XDdrytq2M5bIy3qusQvfRclLu2eWZYPA+BbGWAb9FFWEhOB5FCrnzez2vsA+gvAd0FJTAcr89mjJ5g45r0j7TQ==}
+ y-prosemirror@1.2.3:
+ resolution: {integrity: sha512-0e9QB78hcAT3l+ml26x+f7K9xmP1tqHGzbKTfe+JuPpKFBLpr2NUwH7D+J7uKhtMAmOhHUMFtd7Zd2mNKyP2+A==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
peerDependencies:
prosemirror-model: ^1.7.1
@@ -8377,8 +9007,8 @@ packages:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
- yjs@13.6.23:
- resolution: {integrity: sha512-ExtnT5WIOVpkL56bhLeisG/N5c4fmzKn4k0ROVfJa5TY2QHbH7F0Wu2T5ZhR7ErsFWQEFafyrnSI8TPKVF9Few==}
+ yjs@13.6.20:
+ resolution: {integrity: sha512-Z2YZI+SYqK7XdWlloI3lhMiKnCdFCVC4PchpdO+mCYwtiTwncjUbnRK9R1JmkNfdmHyDXuWN3ibJAt0wsqTbLQ==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
yn@3.1.1:
@@ -8397,16 +9027,18 @@ packages:
resolution: {integrity: sha512-dtZ0aQSFyZmoJS0m06/xBN1SazUBPL5HpzlAcs/KcRW0rzadYw12deQBjeMhGKMMeGEp7bA9vmikMLaO4exBcg==}
engines: {node: '>=14.13.1'}
- zod@3.24.2:
- resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==}
+ zod@3.23.8:
+ resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
snapshots:
- '@adobe/css-tools@4.4.0': {}
+ '@aashutoshrathi/word-wrap@1.2.6': {}
+
+ '@adobe/css-tools@4.3.3': {}
'@ampproject/remapping@2.3.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
'@angular-devkit/core@19.1.7(chokidar@4.0.3)':
@@ -8442,12 +9074,12 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@antfu/install-pkg@1.0.0':
+ '@antfu/install-pkg@0.4.1':
dependencies:
- package-manager-detector: 0.2.9
- tinyexec: 0.3.2
+ package-manager-detector: 0.2.5
+ tinyexec: 0.3.1
- '@antfu/utils@8.1.1': {}
+ '@antfu/utils@0.7.10': {}
'@asamuzakjp/css-color@2.8.3':
dependencies:
@@ -8460,21 +9092,21 @@ snapshots:
'@aws-crypto/crc32@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.696.0
+ '@aws-sdk/types': 3.734.0
tslib: 2.8.1
'@aws-crypto/crc32c@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.696.0
+ '@aws-sdk/types': 3.734.0
tslib: 2.8.1
'@aws-crypto/sha1-browser@5.2.0':
dependencies:
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.696.0
- '@aws-sdk/util-locate-window': 3.723.0
+ '@aws-sdk/types': 3.734.0
+ '@aws-sdk/util-locate-window': 3.535.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
@@ -8483,15 +9115,15 @@ snapshots:
'@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.696.0
- '@aws-sdk/util-locate-window': 3.723.0
+ '@aws-sdk/types': 3.734.0
+ '@aws-sdk/util-locate-window': 3.535.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.696.0
+ '@aws-sdk/types': 3.734.0
tslib: 2.8.1
'@aws-crypto/supports-web-crypto@5.2.0':
@@ -8500,7 +9132,7 @@ snapshots:
'@aws-crypto/util@5.2.0':
dependencies:
- '@aws-sdk/types': 3.696.0
+ '@aws-sdk/types': 3.734.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
@@ -8940,6 +9572,11 @@ snapshots:
'@smithy/types': 3.7.2
tslib: 2.8.1
+ '@aws-sdk/types@3.734.0':
+ dependencies:
+ '@smithy/types': 4.1.0
+ tslib: 2.8.1
+
'@aws-sdk/util-arn-parser@3.693.0':
dependencies:
tslib: 2.8.1
@@ -8958,7 +9595,7 @@ snapshots:
'@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/util-locate-window@3.723.0':
+ '@aws-sdk/util-locate-window@3.535.0':
dependencies:
tslib: 2.8.1
@@ -8982,838 +9619,1197 @@ snapshots:
'@smithy/types': 3.7.2
tslib: 2.8.1
+ '@babel/code-frame@7.24.2':
+ dependencies:
+ '@babel/highlight': 7.24.2
+ picocolors: 1.0.0
+
'@babel/code-frame@7.26.2':
dependencies:
'@babel/helper-validator-identifier': 7.25.9
js-tokens: 4.0.0
- picocolors: 1.1.1
+ picocolors: 1.0.1
- '@babel/compat-data@7.26.8': {}
+ '@babel/compat-data@7.23.5': {}
+
+ '@babel/compat-data@7.26.2': {}
+
+ '@babel/core@7.24.3':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.2
+ '@babel/generator': 7.24.1
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/helpers': 7.24.1
+ '@babel/parser': 7.24.1
+ '@babel/template': 7.24.0
+ '@babel/traverse': 7.24.1
+ '@babel/types': 7.24.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/core@7.24.5':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/generator': 7.26.2
+ '@babel/helper-compilation-targets': 7.25.9
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.5)
- '@babel/helpers': 7.26.9
- '@babel/parser': 7.26.9
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@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.4.0
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/core@7.26.9':
+ '@babel/core@7.24.6':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helpers': 7.26.9
- '@babel/parser': 7.26.9
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/generator': 7.24.6
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
+ '@babel/helpers': 7.24.6
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.24.6
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.24.6
convert-source-map: 2.0.0
- debug: 4.4.0
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.26.9':
+ '@babel/core@7.26.0':
dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
- '@jridgewell/gen-mapping': 0.3.8
+ '@ampproject/remapping': 2.3.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.24.1':
+ dependencies:
+ '@babel/types': 7.24.0
+ '@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.1.0
+ jsesc: 2.5.2
- '@babel/helper-annotate-as-pure@7.25.9':
+ '@babel/generator@7.24.6':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.0
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 2.5.2
- '@babel/helper-compilation-targets@7.26.5':
+ '@babel/generator@7.26.2':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.4
+ '@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-annotate-as-pure@7.22.5':
+ dependencies:
+ '@babel/types': 7.26.0
+
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
+ dependencies:
+ '@babel/types': 7.26.0
+
+ '@babel/helper-compilation-targets@7.23.6':
+ dependencies:
+ '@babel/compat-data': 7.23.5
+ '@babel/helper-validator-option': 7.23.5
+ browserslist: 4.23.0
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.26.9(@babel/core@7.26.9)':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.9
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- regexpu-core: 6.2.0
+ '@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-define-polyfill-provider@0.6.3(@babel/core@7.26.9)':
+ '@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- debug: 4.4.0
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.24.6
+ semver: 6.3.1
+
+ '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+
+ '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ debug: 4.3.7
lodash.debounce: 4.0.8
- resolve: 1.22.10
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.25.9':
+ '@babel/helper-environment-visitor@7.22.20': {}
+
+ '@babel/helper-environment-visitor@7.24.6': {}
+
+ '@babel/helper-function-name@7.23.0':
dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/template': 7.22.15
+ '@babel/types': 7.24.0
+
+ '@babel/helper-function-name@7.24.6':
+ dependencies:
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
+
+ '@babel/helper-hoist-variables@7.22.5':
+ dependencies:
+ '@babel/types': 7.24.0
+
+ '@babel/helper-hoist-variables@7.24.6':
+ dependencies:
+ '@babel/types': 7.24.6
+
+ '@babel/helper-member-expression-to-functions@7.23.0':
+ dependencies:
+ '@babel/types': 7.26.0
+
+ '@babel/helper-module-imports@7.22.15':
+ dependencies:
+ '@babel/types': 7.23.6
+
+ '@babel/helper-module-imports@7.24.6':
+ dependencies:
+ '@babel/types': 7.26.0
'@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3)':
+ dependencies:
+ '@babel/core': 7.24.3
+ '@babel/helper-environment-visitor': 7.22.20
+ '@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.20
+
+ '@babel/helper-module-transforms@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@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.20
+
+ '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-simple-access': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
+
'@babel/helper-module-transforms@7.26.0(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.26.0
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.25.9':
+ '@babel/helper-optimise-call-expression@7.22.5':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.0
- '@babel/helper-plugin-utils@7.26.5': {}
+ '@babel/helper-plugin-utils@7.24.0': {}
- '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.9)':
+ '@babel/helper-plugin-utils@7.25.9': {}
+
+ '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-wrap-function': 7.22.20
- '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.9)':
+ '@babel/helper-replace-supers@7.22.20(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ '@babel/helper-simple-access@7.22.5':
dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.24.0
+
+ '@babel/helper-simple-access@7.24.6':
+ dependencies:
+ '@babel/types': 7.26.0
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
+ dependencies:
+ '@babel/types': 7.26.0
+
+ '@babel/helper-split-export-declaration@7.22.6':
+ dependencies:
+ '@babel/types': 7.24.0
+
+ '@babel/helper-split-export-declaration@7.24.6':
+ dependencies:
+ '@babel/types': 7.24.6
+
+ '@babel/helper-string-parser@7.23.4': {}
+
+ '@babel/helper-string-parser@7.24.1': {}
+
+ '@babel/helper-string-parser@7.24.6': {}
'@babel/helper-string-parser@7.25.9': {}
+ '@babel/helper-validator-identifier@7.22.20': {}
+
+ '@babel/helper-validator-identifier@7.24.6': {}
+
'@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-option@7.23.5': {}
+
'@babel/helper-validator-option@7.25.9': {}
- '@babel/helper-wrap-function@7.25.9':
+ '@babel/helper-wrap-function@7.22.20':
dependencies:
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/helper-function-name': 7.24.6
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+
+ '@babel/helpers@7.24.1':
+ dependencies:
+ '@babel/template': 7.24.0
+ '@babel/traverse': 7.24.1
+ '@babel/types': 7.24.0
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.26.9':
+ '@babel/helpers@7.24.6':
dependencies:
- '@babel/template': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+
+ '@babel/helpers@7.26.0':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+
+ '@babel/highlight@7.24.2':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.20
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ picocolors: 1.0.0
+
+ '@babel/parser@7.24.1':
+ dependencies:
+ '@babel/types': 7.24.0
'@babel/parser@7.24.5':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.26.0
- '@babel/parser@7.26.9':
+ '@babel/parser@7.24.6':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.24.6
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.9)':
+ '@babel/parser@7.26.2':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.26.0
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-decorators@7.23.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.26.0)
- '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.24.3)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9)
+ '@babel/core': 7.26.0
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.6)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.6)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9)
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3)':
+ dependencies:
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3)':
+ dependencies:
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3)':
+ dependencies:
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3)':
+ dependencies:
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3)':
+ dependencies:
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3)':
+ dependencies:
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.26.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+
+ '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
'@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.9)':
+ '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.9)':
+ '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-classes@7.23.8(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
- '@babel/traverse': 7.26.9
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.26.0)
+ '@babel/helper-split-export-declaration': 7.24.6
globals: 11.12.0
+
+ '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
+
+ '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+
+ '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.0)
+
+ '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+
+ '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
+
+ '@babel/plugin-transform-literals@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+
+ '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.3)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/template': 7.26.9
+ '@babel/core': 7.24.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-simple-access': 7.22.5
- '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-simple-access': 7.22.5
- '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-hoist-variables': 7.24.6
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.9)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9)
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.26.0)
- '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.9)':
+ '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-runtime@7.23.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-runtime@7.26.9(@babel/core@7.26.9)':
- dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.26.0
'@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.9)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9)
+ '@babel/helper-plugin-utils': 7.25.9
+ babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-spread@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typescript@7.26.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-typescript@7.23.6(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/preset-env@7.26.9(@babel/core@7.26.9)':
+ '@babel/preset-env@7.23.8(@babel/core@7.26.0)':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.9)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.9)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.9)
- '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.9)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.9)
- '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.9)
- '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.9)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.9)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9)
- core-js-compat: 3.40.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.26.0)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.26.0)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.26.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.26.0)
+ core-js-compat: 3.35.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.9)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.26.9
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/types': 7.26.0
esutils: 2.0.3
- '@babel/preset-typescript@7.26.0(@babel/core@7.26.9)':
+ '@babel/preset-typescript@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.9)
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.26.0)
- '@babel/runtime@7.26.9':
+ '@babel/regjsgen@0.8.0': {}
+
+ '@babel/runtime@7.23.7':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.26.9':
+ '@babel/runtime@7.25.6':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
+ regenerator-runtime: 0.14.1
- '@babel/traverse@7.26.9':
+ '@babel/template@7.22.15':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/parser': 7.26.9
- '@babel/template': 7.26.9
- '@babel/types': 7.26.9
- debug: 4.4.0
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.24.0
+
+ '@babel/template@7.24.0':
+ dependencies:
+ '@babel/code-frame': 7.24.2
+ '@babel/parser': 7.24.1
+ '@babel/types': 7.24.0
+
+ '@babel/template@7.24.6':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+
+ '@babel/template@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+
+ '@babel/traverse@7.24.1':
+ dependencies:
+ '@babel/code-frame': 7.24.2
+ '@babel/generator': 7.24.1
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/parser': 7.24.1
+ '@babel/types': 7.24.0
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.9':
+ '@babel/traverse@7.25.9':
+ dependencies:
+ '@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
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/types@7.23.6':
+ dependencies:
+ '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+
+ '@babel/types@7.24.0':
+ dependencies:
+ '@babel/helper-string-parser': 7.24.1
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+
+ '@babel/types@7.24.6':
+ dependencies:
+ '@babel/helper-string-parser': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
+ to-fast-properties: 2.0.0
+
+ '@babel/types@7.26.0':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
'@bcoe/v8-coverage@0.2.3': {}
- '@braintree/sanitize-url@7.1.1': {}
+ '@braintree/sanitize-url@7.1.0': {}
+
+ '@casl/ability@6.7.2':
+ dependencies:
+ '@ucast/mongo2js': 1.3.4
'@casl/ability@6.7.3':
dependencies:
'@ucast/mongo2js': 1.3.4
- '@casl/react@4.0.0(@casl/ability@6.7.3)(react@18.3.1)':
+ '@casl/react@4.0.0(@casl/ability@6.7.2)(react@18.3.1)':
dependencies:
- '@casl/ability': 6.7.3
+ '@casl/ability': 6.7.2
react: 18.3.1
'@chevrotain/cst-dts-gen@11.0.3':
@@ -9864,12 +10860,12 @@ snapshots:
'@csstools/css-tokenizer@3.0.3': {}
- '@emnapi/core@1.3.1':
+ '@emnapi/core@1.2.0':
dependencies:
'@emnapi/wasi-threads': 1.0.1
tslib: 2.8.1
- '@emnapi/runtime@1.3.1':
+ '@emnapi/runtime@1.2.0':
dependencies:
tslib: 2.8.1
@@ -10103,17 +11099,22 @@ snapshots:
'@esbuild/win32-x64@0.25.0':
optional: true
- '@eslint-community/eslint-utils@4.4.1(eslint@9.20.1)':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.15.0(jiti@1.21.0))':
dependencies:
- eslint: 9.20.1
+ eslint: 9.15.0(jiti@1.21.0)
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.20.1(jiti@1.21.0))':
+ dependencies:
+ eslint: 9.20.1(jiti@1.21.0)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/config-array@0.19.2':
+ '@eslint/config-array@0.19.0':
dependencies:
- '@eslint/object-schema': 2.1.6
- debug: 4.4.0
+ '@eslint/object-schema': 2.1.4
+ debug: 4.3.4
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -10122,31 +11123,37 @@ snapshots:
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/core@0.12.0':
- dependencies:
- '@types/json-schema': 7.0.15
+ '@eslint/core@0.9.0': {}
'@eslint/eslintrc@3.2.0':
dependencies:
ajv: 6.12.6
- debug: 4.4.0
+ debug: 4.3.4
espree: 10.3.0
globals: 14.0.0
- ignore: 5.3.2
- import-fresh: 3.3.1
+ ignore: 5.3.1
+ import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
+ '@eslint/js@9.15.0': {}
+
+ '@eslint/js@9.16.0': {}
+
'@eslint/js@9.20.0': {}
- '@eslint/object-schema@2.1.6': {}
+ '@eslint/object-schema@2.1.4': {}
- '@eslint/plugin-kit@0.2.7':
+ '@eslint/plugin-kit@0.2.3':
dependencies:
- '@eslint/core': 0.12.0
+ levn: 0.4.1
+
+ '@eslint/plugin-kit@0.2.6':
+ dependencies:
+ '@eslint/core': 0.11.0
levn: 0.4.1
'@excalidraw/excalidraw@0.17.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
@@ -10158,8 +11165,8 @@ snapshots:
'@fastify/ajv-compiler@4.0.2':
dependencies:
- ajv: 8.17.1
- ajv-formats: 3.0.1(ajv@8.17.1)
+ ajv: 8.12.0
+ ajv-formats: 3.0.1(ajv@8.12.0)
fast-uri: 3.0.6
'@fastify/busboy@3.1.1': {}
@@ -10227,112 +11234,111 @@ snapshots:
'@fastify/send': 3.3.1
content-disposition: 0.5.4
fastify-plugin: 5.0.1
- fastq: 1.19.0
+ fastq: 1.17.1
glob: 11.0.1
- '@floating-ui/core@1.6.9':
+ '@floating-ui/core@1.5.3':
dependencies:
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/utils': 0.2.8
- '@floating-ui/dom@1.6.13':
+ '@floating-ui/dom@1.6.3':
dependencies:
- '@floating-ui/core': 1.6.9
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/core': 1.5.3
+ '@floating-ui/utils': 0.2.8
'@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.6.13
+ '@floating-ui/dom': 1.6.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@floating-ui/react@0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/utils': 0.2.8
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
tabbable: 6.2.0
- '@floating-ui/utils@0.2.9': {}
+ '@floating-ui/utils@0.2.8': {}
'@hocuspocus/common@2.15.2':
dependencies:
- lib0: 0.2.99
+ lib0: 0.2.98
- '@hocuspocus/extension-redis@2.15.2(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)':
+ '@hocuspocus/extension-redis@2.15.2(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)':
dependencies:
- '@hocuspocus/server': 2.15.2(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)
+ '@hocuspocus/server': 2.15.2(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)
ioredis: 4.28.5
kleur: 4.1.5
lodash.debounce: 4.0.8
redlock: 4.2.0
uuid: 11.1.0
- y-protocols: 1.0.6(yjs@13.6.23)
- yjs: 13.6.23
+ y-protocols: 1.0.6(yjs@13.6.20)
+ yjs: 13.6.20
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- '@hocuspocus/provider@2.15.2(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)':
+ '@hocuspocus/provider@2.15.2(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)':
dependencies:
'@hocuspocus/common': 2.15.2
- '@lifeomic/attempt': 3.1.0
- lib0: 0.2.99
- ws: 8.18.1
- y-protocols: 1.0.6(yjs@13.6.23)
- yjs: 13.6.23
+ '@lifeomic/attempt': 3.0.3
+ lib0: 0.2.98
+ ws: 8.18.0
+ y-protocols: 1.0.6(yjs@13.6.20)
+ yjs: 13.6.20
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@hocuspocus/server@2.15.2(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)':
+ '@hocuspocus/server@2.15.2(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)':
dependencies:
'@hocuspocus/common': 2.15.2
async-lock: 1.4.1
kleur: 4.1.5
- lib0: 0.2.99
+ lib0: 0.2.98
uuid: 11.1.0
- ws: 8.18.1
- y-protocols: 1.0.6(yjs@13.6.23)
- yjs: 13.6.23
+ ws: 8.18.0
+ y-protocols: 1.0.6(yjs@13.6.20)
+ yjs: 13.6.20
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@hocuspocus/transformer@2.15.2(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)(y-prosemirror@1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23))(yjs@13.6.23)':
+ '@hocuspocus/transformer@2.15.2(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)(y-prosemirror@1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20))(yjs@13.6.20)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
- '@tiptap/starter-kit': 2.11.5
- y-prosemirror: 1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)
- yjs: 13.6.23
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
+ '@tiptap/starter-kit': 2.10.3
+ y-prosemirror: 1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)
+ yjs: 13.6.20
'@humanfs/core@0.19.1': {}
'@humanfs/node@0.16.6':
dependencies:
'@humanfs/core': 0.19.1
- '@humanwhocodes/retry': 0.3.1
+ '@humanwhocodes/retry': 0.3.0
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/retry@0.3.1': {}
+ '@humanwhocodes/retry@0.3.0': {}
- '@humanwhocodes/retry@0.4.2': {}
+ '@humanwhocodes/retry@0.4.1': {}
'@iconify/types@2.0.0': {}
- '@iconify/utils@2.3.0':
+ '@iconify/utils@2.1.33':
dependencies:
- '@antfu/install-pkg': 1.0.0
- '@antfu/utils': 8.1.1
+ '@antfu/install-pkg': 0.4.1
+ '@antfu/utils': 0.7.10
'@iconify/types': 2.0.0
- debug: 4.4.0
- globals: 15.15.0
+ debug: 4.3.7
kolorist: 1.8.0
- local-pkg: 1.0.0
- mlly: 1.7.4
+ local-pkg: 0.5.1
+ mlly: 1.7.3
transitivePeerDependencies:
- supports-color
@@ -10496,7 +11502,7 @@ snapshots:
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))':
+ '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0
@@ -10510,7 +11516,7 @@ snapshots:
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))
+ jest-config: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -10522,7 +11528,7 @@ snapshots:
jest-util: 29.7.0
jest-validate: 29.7.0
jest-watcher: 29.7.0
- micromatch: 4.0.8
+ micromatch: 4.0.5
pretty-format: 29.7.0
slash: 3.0.0
strip-ansi: 6.0.1
@@ -10582,7 +11588,7 @@ snapshots:
glob: 7.2.3
graceful-fs: 4.2.11
istanbul-lib-coverage: 3.2.2
- istanbul-lib-instrument: 6.0.3
+ istanbul-lib-instrument: 6.0.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
istanbul-reports: 3.1.7
@@ -10592,7 +11598,7 @@ snapshots:
slash: 3.0.0
string-length: 4.0.2
strip-ansi: 6.0.1
- v8-to-istanbul: 9.3.0
+ v8-to-istanbul: 9.2.0
transitivePeerDependencies:
- supports-color
@@ -10622,7 +11628,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.24.6
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -10646,14 +11652,14 @@ snapshots:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
'@types/node': 22.13.4
- '@types/yargs': 17.0.33
+ '@types/yargs': 17.0.32
chalk: 4.1.2
- '@joplin/turndown-plugin-gfm@1.0.61': {}
+ '@joplin/turndown-plugin-gfm@1.0.56': {}
- '@joplin/turndown@4.0.79':
+ '@joplin/turndown@4.0.74':
dependencies:
- '@adobe/css-tools': 4.4.0
+ '@adobe/css-tools': 4.3.3
html-entities: 1.4.0
jsdom: 25.0.1
transitivePeerDependencies:
@@ -10662,40 +11668,48 @@ snapshots:
- supports-color
- utf-8-validate
- '@jridgewell/gen-mapping@0.3.8':
+ '@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/resolve-uri@3.1.1': {}
+
'@jridgewell/resolve-uri@3.1.2': {}
'@jridgewell/set-array@1.2.1': {}
'@jridgewell/source-map@0.3.6':
dependencies:
- '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/sourcemap-codec@1.4.15': {}
+
'@jridgewell/sourcemap-codec@1.5.0': {}
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping@0.3.9':
dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/sourcemap-codec': 1.4.15
- '@lifeomic/attempt@3.1.0': {}
+ '@keyv/serialize@1.0.3':
+ dependencies:
+ buffer: 6.0.3
+
+ '@lifeomic/attempt@3.0.3': {}
'@lukeed/csprng@1.1.0': {}
'@lukeed/ms@2.0.2': {}
- '@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react': 0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/hooks': 7.17.0(react@18.3.1)
@@ -10703,9 +11717,9 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-number-format: 5.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-remove-scroll: 2.6.3(@types/react@18.3.18)(react@18.3.1)
- react-textarea-autosize: 8.5.6(@types/react@18.3.18)(react@18.3.1)
- type-fest: 4.35.0
+ react-remove-scroll: 2.6.3(@types/react@18.3.12)(react@18.3.1)
+ react-textarea-autosize: 8.5.6(@types/react@18.3.12)(react@18.3.1)
+ type-fest: 4.28.1
transitivePeerDependencies:
- '@types/react'
@@ -10719,25 +11733,25 @@ snapshots:
dependencies:
react: 18.3.1
- '@mantine/modals@7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mantine/modals@7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@mantine/core': 7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mantine/core': 7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/hooks': 7.17.0(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@mantine/notifications@7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mantine/notifications@7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@mantine/core': 7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mantine/core': 7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/hooks': 7.17.0(react@18.3.1)
'@mantine/store': 7.17.0(react@18.3.1)
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)
- '@mantine/spotlight@7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mantine/spotlight@7.17.0(@mantine/core@7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.17.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@mantine/core': 7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mantine/core': 7.17.0(@mantine/hooks@7.17.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/hooks': 7.17.0(react@18.3.1)
'@mantine/store': 7.17.0(react@18.3.1)
react: 18.3.1
@@ -10756,7 +11770,7 @@ snapshots:
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.7.1
+ semver: 7.6.3
tar: 6.2.1
transitivePeerDependencies:
- encoding
@@ -10766,28 +11780,28 @@ snapshots:
dependencies:
langium: 3.0.0
- '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2':
optional: true
- '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2':
optional: true
- '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2':
optional: true
- '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2':
optional: true
- '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2':
optional: true
- '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2':
optional: true
'@napi-rs/wasm-runtime@0.2.4':
dependencies:
- '@emnapi/core': 1.3.1
- '@emnapi/runtime': 1.3.1
+ '@emnapi/core': 1.2.0
+ '@emnapi/runtime': 1.2.0
'@tybys/wasm-util': 0.9.0
'@nestjs/bull-shared@11.0.2(@nestjs/common@11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@11.0.10)':
@@ -10796,15 +11810,15 @@ snapshots:
'@nestjs/core': 11.0.10(@nestjs/common@11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/websockets@11.0.10)(reflect-metadata@0.2.2)(rxjs@7.8.1)
tslib: 2.8.1
- '@nestjs/bullmq@11.0.2(@nestjs/common@11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@11.0.10)(bullmq@5.41.4)':
+ '@nestjs/bullmq@11.0.2(@nestjs/common@11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@11.0.10)(bullmq@5.41.3)':
dependencies:
'@nestjs/bull-shared': 11.0.2(@nestjs/common@11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@11.0.10)
'@nestjs/common': 11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1)
'@nestjs/core': 11.0.10(@nestjs/common@11.0.10(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/websockets@11.0.10)(reflect-metadata@0.2.2)(rxjs@7.8.1)
- bullmq: 5.41.4
+ bullmq: 5.41.3
tslib: 2.8.1
- '@nestjs/cli@11.0.4(@types/node@22.13.4)':
+ '@nestjs/cli@11.0.4(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)':
dependencies:
'@angular-devkit/core': 19.1.7(chokidar@4.0.3)
'@angular-devkit/schematics': 19.1.7(chokidar@4.0.3)
@@ -10815,7 +11829,7 @@ snapshots:
chokidar: 4.0.3
cli-table3: 0.6.5
commander: 4.1.1
- fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.7.3)(webpack@5.98.0)
+ fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.7.3)(webpack@5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5)))
glob: 11.0.1
node-emoji: 1.11.0
ora: 5.4.1
@@ -10823,8 +11837,10 @@ snapshots:
tsconfig-paths: 4.2.0
tsconfig-paths-webpack-plugin: 4.2.0
typescript: 5.7.3
- webpack: 5.98.0
+ webpack: 5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5))
webpack-node-externals: 3.0.0
+ optionalDependencies:
+ '@swc/core': 1.5.25(@swc/helpers@0.5.5)
transitivePeerDependencies:
- '@types/node'
- esbuild
@@ -10982,6 +11998,34 @@ snapshots:
'@next/swc-win32-x64-msvc@14.2.10':
optional: true
+ '@node-saml/node-saml@5.0.0':
+ dependencies:
+ '@types/debug': 4.1.12
+ '@types/qs': 6.9.14
+ '@types/xml-encryption': 1.2.4
+ '@types/xml2js': 0.4.14
+ '@xmldom/is-dom-node': 1.0.1
+ '@xmldom/xmldom': 0.8.10
+ debug: 4.3.7
+ xml-crypto: 6.0.0
+ xml-encryption: 3.1.0
+ xml2js: 0.6.2
+ xmlbuilder: 15.1.1
+ xpath: 0.0.34
+ transitivePeerDependencies:
+ - supports-color
+
+ '@node-saml/passport-saml@5.0.0':
+ dependencies:
+ '@node-saml/node-saml': 5.0.0
+ '@types/express': 4.17.21
+ '@types/passport': 1.0.16
+ '@types/passport-strategy': 0.2.38
+ passport: 0.7.0
+ passport-strategy: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+
'@nodelib/fs.scandir@2.1.5':
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -10992,56 +12036,56 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.19.0
+ fastq: 1.17.1
'@nuxt/opencollective@0.4.1':
dependencies:
consola: 3.4.0
- '@nx/devkit@20.4.5(nx@20.4.5)':
+ '@nx/devkit@20.4.5(nx@20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5)))':
dependencies:
ejs: 3.1.10
enquirer: 2.3.6
- ignore: 5.3.2
+ ignore: 5.3.1
minimatch: 9.0.3
- nx: 20.4.5
- semver: 7.7.1
- tmp: 0.2.3
- tslib: 2.8.1
+ nx: 20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5))
+ semver: 7.6.3
+ tmp: 0.2.1
+ tslib: 2.8.0
yargs-parser: 21.1.1
- '@nx/js@20.4.5(@babel/traverse@7.26.9)(@types/node@22.13.4)(nx@20.4.5)(typescript@5.7.3)':
+ '@nx/js@20.4.5(@babel/traverse@7.25.9)(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(nx@20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5)))(typescript@5.7.3)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-runtime': 7.26.9(@babel/core@7.26.9)
- '@babel/preset-env': 7.26.9(@babel/core@7.26.9)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.26.9)
- '@babel/runtime': 7.26.9
- '@nx/devkit': 20.4.5(nx@20.4.5)
- '@nx/workspace': 20.4.5
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-decorators': 7.23.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.23.7(@babel/core@7.26.0)
+ '@babel/preset-env': 7.23.8(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.26.0)
+ '@babel/runtime': 7.25.6
+ '@nx/devkit': 20.4.5(nx@20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5)))
+ '@nx/workspace': 20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5))
'@zkochan/js-yaml': 0.0.7
- babel-plugin-const-enum: 1.2.0(@babel/core@7.26.9)
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.26.0)
babel-plugin-macros: 3.1.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.26.9)
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.0)(@babel/traverse@7.25.9)
chalk: 4.1.2
columnify: 1.6.0
- detect-port: 1.6.1
+ detect-port: 1.5.1
enquirer: 2.3.6
- ignore: 5.3.2
+ ignore: 5.3.1
js-tokens: 4.0.0
jsonc-parser: 3.2.0
minimatch: 9.0.3
npm-package-arg: 11.0.1
npm-run-path: 4.0.1
ora: 5.3.0
- semver: 7.7.1
+ semver: 7.6.3
source-map-support: 0.5.19
tinyglobby: 0.2.12
- ts-node: 10.9.1(@types/node@22.13.4)(typescript@5.7.3)
+ ts-node: 10.9.1(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3)
tsconfig-paths: 4.2.0
- tslib: 2.8.1
+ tslib: 2.8.0
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -11083,13 +12127,13 @@ snapshots:
'@nx/nx-win32-x64-msvc@20.4.5':
optional: true
- '@nx/workspace@20.4.5':
+ '@nx/workspace@20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5))':
dependencies:
- '@nx/devkit': 20.4.5(nx@20.4.5)
+ '@nx/devkit': 20.4.5(nx@20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5)))
chalk: 4.1.2
enquirer: 2.3.6
- nx: 20.4.5
- tslib: 2.8.1
+ nx: 20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5))
+ tslib: 2.8.0
yargs-parser: 21.1.1
transitivePeerDependencies:
- '@swc-node/register'
@@ -11203,7 +12247,7 @@ snapshots:
'@react-email/render@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
html-to-text: 9.0.5
- js-beautify: 1.15.3
+ js-beautify: 1.15.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-promise-suspense: 0.3.4
@@ -11226,61 +12270,61 @@ snapshots:
'@remirror/core-constants@3.0.0': {}
- '@rollup/rollup-android-arm-eabi@4.34.8':
+ '@rollup/rollup-android-arm-eabi@4.34.7':
optional: true
- '@rollup/rollup-android-arm64@4.34.8':
+ '@rollup/rollup-android-arm64@4.34.7':
optional: true
- '@rollup/rollup-darwin-arm64@4.34.8':
+ '@rollup/rollup-darwin-arm64@4.34.7':
optional: true
- '@rollup/rollup-darwin-x64@4.34.8':
+ '@rollup/rollup-darwin-x64@4.34.7':
optional: true
- '@rollup/rollup-freebsd-arm64@4.34.8':
+ '@rollup/rollup-freebsd-arm64@4.34.7':
optional: true
- '@rollup/rollup-freebsd-x64@4.34.8':
+ '@rollup/rollup-freebsd-x64@4.34.7':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.7':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.34.8':
+ '@rollup/rollup-linux-arm-musleabihf@4.34.7':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.34.8':
+ '@rollup/rollup-linux-arm64-gnu@4.34.7':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.34.8':
+ '@rollup/rollup-linux-arm64-musl@4.34.7':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.7':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.7':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.34.8':
+ '@rollup/rollup-linux-riscv64-gnu@4.34.7':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.34.8':
+ '@rollup/rollup-linux-s390x-gnu@4.34.7':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.34.8':
+ '@rollup/rollup-linux-x64-gnu@4.34.7':
optional: true
- '@rollup/rollup-linux-x64-musl@4.34.8':
+ '@rollup/rollup-linux-x64-musl@4.34.7':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.34.8':
+ '@rollup/rollup-win32-arm64-msvc@4.34.7':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.34.8':
+ '@rollup/rollup-win32-ia32-msvc@4.34.7':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.34.8':
+ '@rollup/rollup-win32-x64-msvc@4.34.7':
optional: true
'@selderee/plugin-htmlparser2@0.11.0':
@@ -11535,6 +12579,10 @@ snapshots:
dependencies:
tslib: 2.8.1
+ '@smithy/types@4.1.0':
+ dependencies:
+ tslib: 2.8.1
+
'@smithy/url-parser@3.0.11':
dependencies:
'@smithy/querystring-parser': 3.0.11
@@ -11639,17 +12687,65 @@ snapshots:
'@smithy/types': 3.7.2
tslib: 2.8.1
- '@socket.io/component-emitter@3.1.2': {}
+ '@socket.io/component-emitter@3.1.0': {}
- '@socket.io/redis-adapter@8.3.0(socket.io-adapter@2.5.5)':
+ '@socket.io/redis-adapter@8.3.0(socket.io-adapter@2.5.4)':
dependencies:
- debug: 4.3.7
+ debug: 4.3.4
notepack.io: 3.0.1
- socket.io-adapter: 2.5.5
+ socket.io-adapter: 2.5.4
uid2: 1.0.0
transitivePeerDependencies:
- supports-color
+ '@swc/core-darwin-arm64@1.5.25':
+ optional: true
+
+ '@swc/core-darwin-x64@1.5.25':
+ optional: true
+
+ '@swc/core-linux-arm-gnueabihf@1.5.25':
+ optional: true
+
+ '@swc/core-linux-arm64-gnu@1.5.25':
+ optional: true
+
+ '@swc/core-linux-arm64-musl@1.5.25':
+ optional: true
+
+ '@swc/core-linux-x64-gnu@1.5.25':
+ optional: true
+
+ '@swc/core-linux-x64-musl@1.5.25':
+ optional: true
+
+ '@swc/core-win32-arm64-msvc@1.5.25':
+ optional: true
+
+ '@swc/core-win32-ia32-msvc@1.5.25':
+ optional: true
+
+ '@swc/core-win32-x64-msvc@1.5.25':
+ optional: true
+
+ '@swc/core@1.5.25(@swc/helpers@0.5.5)':
+ dependencies:
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.7
+ optionalDependencies:
+ '@swc/core-darwin-arm64': 1.5.25
+ '@swc/core-darwin-x64': 1.5.25
+ '@swc/core-linux-arm-gnueabihf': 1.5.25
+ '@swc/core-linux-arm64-gnu': 1.5.25
+ '@swc/core-linux-arm64-musl': 1.5.25
+ '@swc/core-linux-x64-gnu': 1.5.25
+ '@swc/core-linux-x64-musl': 1.5.25
+ '@swc/core-win32-arm64-msvc': 1.5.25
+ '@swc/core-win32-ia32-msvc': 1.5.25
+ '@swc/core-win32-x64-msvc': 1.5.25
+ '@swc/helpers': 0.5.5
+ optional: true
+
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.5':
@@ -11657,233 +12753,238 @@ snapshots:
'@swc/counter': 0.1.3
tslib: 2.8.1
- '@tabler/icons-react@3.30.0(react@18.3.1)':
+ '@swc/types@0.1.7':
dependencies:
- '@tabler/icons': 3.30.0
+ '@swc/counter': 0.1.3
+ optional: true
+
+ '@tabler/icons-react@3.22.0(react@18.3.1)':
+ dependencies:
+ '@tabler/icons': 3.22.0
react: 18.3.1
- '@tabler/icons@3.30.0': {}
+ '@tabler/icons@3.22.0': {}
- '@tanstack/eslint-plugin-query@5.66.1(eslint@9.20.1)(typescript@5.7.3)':
+ '@tanstack/eslint-plugin-query@5.62.1(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/utils': 8.24.1(eslint@9.20.1)(typescript@5.7.3)
- eslint: 9.20.1
+ '@typescript-eslint/utils': 8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
+ eslint: 9.15.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- '@tanstack/query-core@5.66.4': {}
+ '@tanstack/query-core@5.61.4': {}
- '@tanstack/react-query@5.66.8(react@18.3.1)':
+ '@tanstack/react-query@5.61.4(react@18.3.1)':
dependencies:
- '@tanstack/query-core': 5.66.4
+ '@tanstack/query-core': 5.61.4
react: 18.3.1
- '@tiptap/core@2.11.5(@tiptap/pm@2.11.5)':
+ '@tiptap/core@2.10.3(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/pm': 2.11.5
+ '@tiptap/pm': 2.10.3
- '@tiptap/extension-blockquote@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-blockquote@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-bold@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-bold@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-bubble-menu@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-bubble-menu@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
tippy.js: 6.3.7
- '@tiptap/extension-bullet-list@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-bullet-list@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-code-block-lowlight@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/extension-code-block@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)(highlight.js@11.11.1)(lowlight@3.3.0)':
+ '@tiptap/extension-code-block-lowlight@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/extension-code-block@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)(highlight.js@11.10.0)(lowlight@3.2.0)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/extension-code-block': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
- highlight.js: 11.11.1
- lowlight: 3.3.0
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/extension-code-block': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
+ highlight.js: 11.10.0
+ lowlight: 3.2.0
- '@tiptap/extension-code-block@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-code-block@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
- '@tiptap/extension-code@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-code@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(y-prosemirror@1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23))':
+ '@tiptap/extension-collaboration-cursor@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(y-prosemirror@1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- y-prosemirror: 1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ y-prosemirror: 1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)
- '@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)(y-prosemirror@1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23))':
+ '@tiptap/extension-collaboration@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)(y-prosemirror@1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
- y-prosemirror: 1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
+ y-prosemirror: 1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20)
- '@tiptap/extension-color@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/extension-text-style@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5)))':
+ '@tiptap/extension-color@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/extension-text-style@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3)))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/extension-text-style': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/extension-text-style': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
- '@tiptap/extension-document@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-document@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-dropcursor@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-dropcursor@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
- '@tiptap/extension-floating-menu@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-floating-menu@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
tippy.js: 6.3.7
- '@tiptap/extension-gapcursor@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-gapcursor@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
- '@tiptap/extension-hard-break@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-hard-break@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-heading@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-heading@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-highlight@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-highlight@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-history@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-history@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
- '@tiptap/extension-horizontal-rule@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-horizontal-rule@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
- '@tiptap/extension-image@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-image@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-italic@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-italic@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-link@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-link@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
linkifyjs: 4.2.0
- '@tiptap/extension-list-item@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-list-item@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-list-keymap@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-list-keymap@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-ordered-list@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-ordered-list@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-paragraph@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-paragraph@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-placeholder@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-placeholder@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
- '@tiptap/extension-strike@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-strike@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-subscript@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-subscript@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-superscript@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-superscript@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-table-cell@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-table-cell@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-table-header@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-table-header@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-table-row@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-table-row@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-table@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-table@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
- '@tiptap/extension-task-item@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/extension-task-item@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
- '@tiptap/extension-task-list@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-task-list@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-text-align@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-text-align@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-text-style@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-text-style@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-text@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-text@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-typography@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-typography@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-underline@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-underline@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/extension-youtube@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))':
+ '@tiptap/extension-youtube@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
- '@tiptap/html@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/html@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
zeed-dom: 0.15.1
- '@tiptap/pm@2.11.5':
+ '@tiptap/pm@2.10.3':
dependencies:
prosemirror-changeset: 2.2.1
prosemirror-collab: 1.3.1
- prosemirror-commands: 1.7.0
+ prosemirror-commands: 1.6.2
prosemirror-dropcursor: 1.8.1
prosemirror-gapcursor: 1.3.2
prosemirror-history: 1.4.1
@@ -11891,57 +12992,57 @@ snapshots:
prosemirror-keymap: 1.2.2
prosemirror-markdown: 1.13.1
prosemirror-menu: 1.2.4
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-schema-basic: 1.2.3
- prosemirror-schema-list: 1.5.0
+ prosemirror-schema-list: 1.4.1
prosemirror-state: 1.4.3
- prosemirror-tables: 1.6.4
- prosemirror-trailing-node: 3.0.0(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)
+ prosemirror-tables: 1.6.1
+ prosemirror-trailing-node: 3.0.0(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)
prosemirror-transform: 1.10.2
- prosemirror-view: 1.38.0
+ prosemirror-view: 1.37.0
- '@tiptap/react@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tiptap/react@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/extension-bubble-menu': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
- '@tiptap/extension-floating-menu': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/extension-bubble-menu': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
+ '@tiptap/extension-floating-menu': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
'@types/use-sync-external-store': 0.0.6
fast-deep-equal: 3.1.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- use-sync-external-store: 1.4.0(react@18.3.1)
+ use-sync-external-store: 1.2.2(react@18.3.1)
- '@tiptap/starter-kit@2.11.5':
+ '@tiptap/starter-kit@2.10.3':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/extension-blockquote': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-bold': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-bullet-list': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-code': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-code-block': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
- '@tiptap/extension-document': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-dropcursor': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
- '@tiptap/extension-gapcursor': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
- '@tiptap/extension-hard-break': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-heading': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-history': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
- '@tiptap/extension-horizontal-rule': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)
- '@tiptap/extension-italic': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-list-item': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-ordered-list': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-paragraph': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-strike': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-text': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/extension-text-style': 2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/extension-blockquote': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-bold': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-bullet-list': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-code': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-code-block': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
+ '@tiptap/extension-document': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-dropcursor': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
+ '@tiptap/extension-gapcursor': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
+ '@tiptap/extension-hard-break': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-heading': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-history': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
+ '@tiptap/extension-horizontal-rule': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)
+ '@tiptap/extension-italic': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-list-item': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-ordered-list': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-paragraph': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-strike': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-text': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/extension-text-style': 2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))
+ '@tiptap/pm': 2.10.3
- '@tiptap/suggestion@2.11.5(@tiptap/core@2.11.5(@tiptap/pm@2.11.5))(@tiptap/pm@2.11.5)':
+ '@tiptap/suggestion@2.10.3(@tiptap/core@2.10.3(@tiptap/pm@2.10.3))(@tiptap/pm@2.10.3)':
dependencies:
- '@tiptap/core': 2.11.5(@tiptap/pm@2.11.5)
- '@tiptap/pm': 2.11.5
+ '@tiptap/core': 2.10.3(@tiptap/pm@2.10.3)
+ '@tiptap/pm': 2.10.3
- '@tsconfig/node10@1.0.11': {}
+ '@tsconfig/node10@1.0.9': {}
'@tsconfig/node12@1.0.11': {}
@@ -11955,24 +13056,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.6
+ '@types/babel__traverse': 7.20.5
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.24.6
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
- '@types/babel__traverse@7.20.6':
+ '@types/babel__traverse@7.20.5':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.24.6
'@types/bcrypt@5.0.2':
dependencies:
@@ -11989,6 +13090,8 @@ snapshots:
dependencies:
'@types/node': 22.13.4
+ '@types/cookie@0.4.1': {}
+
'@types/cookie@0.6.0': {}
'@types/cookiejar@2.1.5': {}
@@ -12014,7 +13117,7 @@ snapshots:
'@types/d3-contour@3.0.6':
dependencies:
'@types/d3-array': 3.2.1
- '@types/geojson': 7946.0.16
+ '@types/geojson': 7946.0.14
'@types/d3-delaunay@6.0.4': {}
@@ -12038,7 +13141,7 @@ snapshots:
'@types/d3-geo@3.1.0':
dependencies:
- '@types/geojson': 7946.0.16
+ '@types/geojson': 7946.0.14
'@types/d3-hierarchy@3.1.7': {}
@@ -12046,7 +13149,7 @@ snapshots:
dependencies:
'@types/d3-color': 3.1.3
- '@types/d3-path@3.1.1': {}
+ '@types/d3-path@3.1.0': {}
'@types/d3-polygon@3.0.2': {}
@@ -12054,17 +13157,17 @@ snapshots:
'@types/d3-random@3.0.3': {}
- '@types/d3-scale-chromatic@3.1.0': {}
+ '@types/d3-scale-chromatic@3.0.3': {}
- '@types/d3-scale@4.0.9':
+ '@types/d3-scale@4.0.8':
dependencies:
'@types/d3-time': 3.0.4
'@types/d3-selection@3.0.11': {}
- '@types/d3-shape@3.1.7':
+ '@types/d3-shape@3.1.6':
dependencies:
- '@types/d3-path': 3.1.1
+ '@types/d3-path': 3.1.0
'@types/d3-time-format@4.0.3': {}
@@ -12100,14 +13203,14 @@ snapshots:
'@types/d3-geo': 3.1.0
'@types/d3-hierarchy': 3.1.7
'@types/d3-interpolate': 3.0.4
- '@types/d3-path': 3.1.1
+ '@types/d3-path': 3.1.0
'@types/d3-polygon': 3.0.2
'@types/d3-quadtree': 3.0.6
'@types/d3-random': 3.0.3
- '@types/d3-scale': 4.0.9
- '@types/d3-scale-chromatic': 3.1.0
+ '@types/d3-scale': 4.0.8
+ '@types/d3-scale-chromatic': 3.0.3
'@types/d3-selection': 3.0.11
- '@types/d3-shape': 3.1.7
+ '@types/d3-shape': 3.1.6
'@types/d3-time': 3.0.4
'@types/d3-time-format': 4.0.3
'@types/d3-timer': 3.0.2
@@ -12116,31 +13219,35 @@ snapshots:
'@types/debounce@1.2.4': {}
+ '@types/debug@4.1.12':
+ dependencies:
+ '@types/ms': 2.1.0
+
'@types/eslint-scope@3.7.7':
dependencies:
- '@types/eslint': 9.6.1
+ '@types/eslint': 8.56.10
'@types/estree': 1.0.6
- '@types/eslint@9.6.1':
+ '@types/eslint@8.56.10':
dependencies:
'@types/estree': 1.0.6
'@types/json-schema': 7.0.15
'@types/estree@1.0.6': {}
- '@types/express-serve-static-core@5.0.6':
+ '@types/express-serve-static-core@4.17.43':
dependencies:
'@types/node': 22.13.4
- '@types/qs': 6.9.18
+ '@types/qs': 6.9.14
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
- '@types/express@5.0.0':
+ '@types/express@4.17.21':
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 5.0.6
- '@types/qs': 6.9.18
- '@types/serve-static': 1.15.7
+ '@types/express-serve-static-core': 4.17.43
+ '@types/qs': 6.9.14
+ '@types/serve-static': 1.15.5
'@types/file-saver@2.0.7': {}
@@ -12149,7 +13256,7 @@ snapshots:
'@types/jsonfile': 6.1.4
'@types/node': 22.13.4
- '@types/geojson@7946.0.16': {}
+ '@types/geojson@7946.0.14': {}
'@types/graceful-fs@4.1.9':
dependencies:
@@ -12157,7 +13264,7 @@ snapshots:
'@types/hast@3.0.4':
dependencies:
- '@types/unist': 3.0.3
+ '@types/unist': 3.0.2
'@types/http-errors@2.0.4': {}
@@ -12184,13 +13291,12 @@ snapshots:
dependencies:
'@types/node': 22.13.4
- '@types/jsonwebtoken@9.0.7':
+ '@types/jsonwebtoken@9.0.6':
dependencies:
'@types/node': 22.13.4
- '@types/jsonwebtoken@9.0.8':
+ '@types/jsonwebtoken@9.0.7':
dependencies:
- '@types/ms': 2.1.0
'@types/node': 22.13.4
'@types/katex@0.16.7': {}
@@ -12210,6 +13316,8 @@ snapshots:
'@types/mime@1.3.5': {}
+ '@types/mime@3.0.4': {}
+
'@types/ms@2.1.0': {}
'@types/node@22.10.0':
@@ -12224,41 +13332,57 @@ snapshots:
dependencies:
'@types/node': 22.13.4
+ '@types/oauth@0.9.6':
+ dependencies:
+ '@types/node': 22.13.4
+
'@types/parse-json@4.0.2': {}
+ '@types/passport-google-oauth20@2.0.16':
+ dependencies:
+ '@types/express': 4.17.21
+ '@types/passport': 1.0.16
+ '@types/passport-oauth2': 1.4.17
+
'@types/passport-jwt@4.0.1':
dependencies:
- '@types/jsonwebtoken': 9.0.8
+ '@types/jsonwebtoken': 9.0.6
'@types/passport-strategy': 0.2.38
+ '@types/passport-oauth2@1.4.17':
+ dependencies:
+ '@types/express': 4.17.21
+ '@types/oauth': 0.9.6
+ '@types/passport': 1.0.16
+
'@types/passport-strategy@0.2.38':
dependencies:
- '@types/express': 5.0.0
- '@types/passport': 1.0.17
+ '@types/express': 4.17.21
+ '@types/passport': 1.0.16
- '@types/passport@1.0.17':
+ '@types/passport@1.0.16':
dependencies:
- '@types/express': 5.0.0
+ '@types/express': 4.17.21
'@types/pg@8.11.11':
dependencies:
'@types/node': 22.13.4
- pg-protocol: 1.7.1
+ pg-protocol: 1.7.0
pg-types: 4.0.2
- '@types/prop-types@15.7.14': {}
+ '@types/prop-types@15.7.11': {}
- '@types/qs@6.9.18': {}
+ '@types/qs@6.9.14': {}
'@types/range-parser@1.2.7': {}
- '@types/react-dom@18.3.5(@types/react@18.3.18)':
+ '@types/react-dom@18.3.1':
dependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
- '@types/react@18.3.18':
+ '@types/react@18.3.12':
dependencies:
- '@types/prop-types': 15.7.14
+ '@types/prop-types': 15.7.11
csstype: 3.1.3
'@types/send@0.17.4':
@@ -12266,119 +13390,208 @@ snapshots:
'@types/mime': 1.3.5
'@types/node': 22.13.4
- '@types/serve-static@1.15.7':
+ '@types/serve-static@1.15.5':
dependencies:
'@types/http-errors': 2.0.4
+ '@types/mime': 3.0.4
'@types/node': 22.13.4
- '@types/send': 0.17.4
'@types/stack-utils@2.0.3': {}
- '@types/superagent@8.1.9':
+ '@types/superagent@8.1.6':
dependencies:
'@types/cookiejar': 2.1.5
'@types/methods': 1.1.4
'@types/node': 22.13.4
- form-data: 4.0.2
'@types/supertest@6.0.2':
dependencies:
'@types/methods': 1.1.4
- '@types/superagent': 8.1.9
+ '@types/superagent': 8.1.6
'@types/trusted-types@2.0.7':
optional: true
- '@types/unist@3.0.3': {}
+ '@types/unist@3.0.2': {}
'@types/use-sync-external-store@0.0.6': {}
'@types/uuid@10.0.0': {}
- '@types/validator@13.12.2': {}
+ '@types/validator@13.12.0': {}
'@types/ws@8.5.14':
dependencies:
'@types/node': 22.13.4
+ '@types/xml-encryption@1.2.4':
+ dependencies:
+ '@types/node': 22.13.4
+
+ '@types/xml2js@0.4.14':
+ dependencies:
+ '@types/node': 22.13.4
+
'@types/yargs-parser@21.0.3': {}
- '@types/yargs@17.0.33':
+ '@types/yargs@17.0.32':
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1)(typescript@5.7.3))(eslint@9.20.1)(typescript@5.7.3)':
+ '@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.24.1(eslint@9.20.1)(typescript@5.7.3)
- '@typescript-eslint/scope-manager': 8.24.1
- '@typescript-eslint/type-utils': 8.24.1(eslint@9.20.1)(typescript@5.7.3)
- '@typescript-eslint/utils': 8.24.1(eslint@9.20.1)(typescript@5.7.3)
- '@typescript-eslint/visitor-keys': 8.24.1
- eslint: 9.20.1
+ '@typescript-eslint/parser': 8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
+ '@typescript-eslint/scope-manager': 8.17.0
+ '@typescript-eslint/type-utils': 8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.17.0
+ eslint: 9.15.0(jiti@1.21.0)
graphemer: 1.4.0
- ignore: 5.3.2
+ ignore: 5.3.1
+ natural-compare: 1.4.0
+ ts-api-utils: 1.3.0(typescript@5.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3))(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)
+ '@typescript-eslint/scope-manager': 8.24.1
+ '@typescript-eslint/type-utils': 8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)
+ '@typescript-eslint/visitor-keys': 8.24.1
+ eslint: 9.20.1(jiti@1.21.0)
+ graphemer: 1.4.0
+ ignore: 5.3.1
natural-compare: 1.4.0
ts-api-utils: 2.0.1(typescript@5.7.3)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.24.1(eslint@9.20.1)(typescript@5.7.3)':
+ '@typescript-eslint/parser@8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.17.0
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.17.0
+ debug: 4.3.7
+ eslint: 9.15.0(jiti@1.21.0)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.24.1
'@typescript-eslint/types': 8.24.1
'@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3)
'@typescript-eslint/visitor-keys': 8.24.1
- debug: 4.4.0
- eslint: 9.20.1
+ debug: 4.3.7
+ eslint: 9.20.1(jiti@1.21.0)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/scope-manager@8.17.0':
+ dependencies:
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/visitor-keys': 8.17.0
+
'@typescript-eslint/scope-manager@8.24.1':
dependencies:
'@typescript-eslint/types': 8.24.1
'@typescript-eslint/visitor-keys': 8.24.1
- '@typescript-eslint/type-utils@8.24.1(eslint@9.20.1)(typescript@5.7.3)':
+ '@typescript-eslint/type-utils@8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
+ debug: 4.3.7
+ eslint: 9.15.0(jiti@1.21.0)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/type-utils@8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)':
dependencies:
'@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3)
- '@typescript-eslint/utils': 8.24.1(eslint@9.20.1)(typescript@5.7.3)
- debug: 4.4.0
- eslint: 9.20.1
+ '@typescript-eslint/utils': 8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)
+ debug: 4.3.7
+ eslint: 9.20.1(jiti@1.21.0)
ts-api-utils: 2.0.1(typescript@5.7.3)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/types@8.17.0': {}
+
'@typescript-eslint/types@8.24.1': {}
+ '@typescript-eslint/typescript-estree@8.17.0(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/visitor-keys': 8.17.0
+ debug: 4.3.7
+ fast-glob: 3.3.2
+ is-glob: 4.0.3
+ minimatch: 9.0.4
+ semver: 7.6.3
+ ts-api-utils: 1.3.0(typescript@5.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/typescript-estree@8.24.1(typescript@5.7.3)':
dependencies:
'@typescript-eslint/types': 8.24.1
'@typescript-eslint/visitor-keys': 8.24.1
- debug: 4.4.0
- fast-glob: 3.3.3
+ debug: 4.3.7
+ fast-glob: 3.3.2
is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
+ minimatch: 9.0.4
+ semver: 7.6.3
ts-api-utils: 2.0.1(typescript@5.7.3)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.24.1(eslint@9.20.1)(typescript@5.7.3)':
+ '@typescript-eslint/utils@8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.15.0(jiti@1.21.0))
+ '@typescript-eslint/scope-manager': 8.17.0
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
+ eslint: 9.15.0(jiti@1.21.0)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.20.1(jiti@1.21.0))
'@typescript-eslint/scope-manager': 8.24.1
'@typescript-eslint/types': 8.24.1
'@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3)
- eslint: 9.20.1
+ eslint: 9.20.1(jiti@1.21.0)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/visitor-keys@8.17.0':
+ dependencies:
+ '@typescript-eslint/types': 8.17.0
+ eslint-visitor-keys: 4.2.0
+
'@typescript-eslint/visitor-keys@8.24.1':
dependencies:
'@typescript-eslint/types': 8.24.1
@@ -12400,14 +13613,14 @@ snapshots:
dependencies:
'@ucast/core': 1.10.2
- '@vitejs/plugin-react@4.3.4(vite@6.1.1(@types/node@22.10.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))':
+ '@vitejs/plugin-react@4.3.4(vite@6.1.0(@types/node@22.10.0)(jiti@1.21.0)(less@4.2.0)(sugarss@4.0.1(postcss@8.4.49))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))':
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.9)
+ '@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: 6.1.1(@types/node@22.10.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.1.0(@types/node@22.10.0)(jiti@1.21.0)(less@4.2.0)(sugarss@4.0.1(postcss@8.4.49))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
@@ -12487,6 +13700,10 @@ snapshots:
'@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
+ '@xmldom/is-dom-node@1.0.1': {}
+
+ '@xmldom/xmldom@0.8.10': {}
+
'@xtuc/ieee754@1.2.0': {}
'@xtuc/long@4.2.2': {}
@@ -12504,7 +13721,11 @@ snapshots:
abbrev@1.1.1: {}
- abbrev@3.0.0: {}
+ abbrev@2.0.0: {}
+
+ abort-controller@3.0.0:
+ dependencies:
+ event-target-shim: 5.0.1
abstract-logging@2.0.1: {}
@@ -12517,9 +13738,9 @@ snapshots:
dependencies:
acorn: 8.14.0
- acorn-walk@8.3.4:
- dependencies:
- acorn: 8.14.0
+ acorn-walk@8.3.2: {}
+
+ acorn@8.11.3: {}
acorn@8.14.0: {}
@@ -12527,15 +13748,23 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.4.0
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
- agent-base@7.1.3: {}
+ agent-base@7.1.1:
+ dependencies:
+ debug: 4.3.7
+ transitivePeerDependencies:
+ - supports-color
- ajv-formats@2.1.1(ajv@8.17.1):
+ ajv-formats@2.1.1(ajv@8.12.0):
optionalDependencies:
- ajv: 8.17.1
+ ajv: 8.12.0
+
+ ajv-formats@3.0.1(ajv@8.12.0):
+ optionalDependencies:
+ ajv: 8.12.0
ajv-formats@3.0.1(ajv@8.17.1):
optionalDependencies:
@@ -12545,9 +13774,9 @@ snapshots:
dependencies:
ajv: 6.12.6
- ajv-keywords@5.1.0(ajv@8.17.1):
+ ajv-keywords@5.1.0(ajv@8.12.0):
dependencies:
- ajv: 8.17.1
+ ajv: 8.12.0
fast-deep-equal: 3.1.3
ajv@6.12.6:
@@ -12557,6 +13786,13 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
+ ajv@8.12.0:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
@@ -12576,7 +13812,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.1.0: {}
+ ansi-regex@6.0.1: {}
ansi-styles@3.2.1:
dependencies:
@@ -12612,70 +13848,69 @@ snapshots:
argparse@2.0.1: {}
- array-buffer-byte-length@1.0.2:
+ array-buffer-byte-length@1.0.1:
dependencies:
- call-bound: 1.0.3
- is-array-buffer: 3.0.5
+ call-bind: 1.0.7
+ is-array-buffer: 3.0.4
array-includes@3.1.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
- es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
- is-string: 1.1.1
+ es-abstract: 1.23.5
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
+ is-string: 1.1.0
array-timsort@1.0.3: {}
array.prototype.findlast@1.2.5:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.5
es-errors: 1.3.0
- es-object-atoms: 1.1.1
- es-shim-unscopables: 1.1.0
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
- array.prototype.flat@1.3.3:
+ array.prototype.flat@1.3.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
- es-shim-unscopables: 1.1.0
+ es-abstract: 1.23.5
+ es-shim-unscopables: 1.0.2
- array.prototype.flatmap@1.3.3:
+ array.prototype.flatmap@1.3.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
- es-shim-unscopables: 1.1.0
+ es-abstract: 1.23.5
+ es-shim-unscopables: 1.0.2
array.prototype.tosorted@1.1.4:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.5
es-errors: 1.3.0
- es-shim-unscopables: 1.1.0
+ es-shim-unscopables: 1.0.2
- arraybuffer.prototype.slice@1.0.4:
+ arraybuffer.prototype.slice@1.0.3:
dependencies:
- array-buffer-byte-length: 1.0.2
- call-bind: 1.0.8
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.5
es-errors: 1.3.0
- get-intrinsic: 1.2.7
- is-array-buffer: 3.0.5
+ get-intrinsic: 1.2.4
+ is-array-buffer: 3.0.4
+ is-shared-array-buffer: 1.0.3
asap@2.0.6: {}
- async-function@1.0.0: {}
-
async-lock@1.4.1: {}
- async@3.2.6: {}
+ async@3.2.5: {}
asynckit@0.4.0: {}
@@ -12683,46 +13918,68 @@ snapshots:
available-typed-arrays@1.0.7:
dependencies:
- possible-typed-array-names: 1.1.0
+ possible-typed-array-names: 1.0.0
avvio@9.1.0:
dependencies:
'@fastify/error': 4.0.0
- fastq: 1.19.0
+ fastq: 1.17.1
- axios@1.7.9:
+ axios@1.7.8:
dependencies:
- follow-redirects: 1.15.9
- form-data: 4.0.2
+ follow-redirects: 1.15.6
+ form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- babel-jest@29.7.0(@babel/core@7.26.9):
+ axios@1.7.9:
dependencies:
- '@babel/core': 7.26.9
+ follow-redirects: 1.15.6
+ form-data: 4.0.0
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+
+ babel-jest@29.7.0(@babel/core@7.24.3):
+ dependencies:
+ '@babel/core': 7.24.3
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.26.9)
+ babel-preset-jest: 29.6.3(@babel/core@7.24.3)
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ babel-jest@29.7.0(@babel/core@7.24.6):
+ dependencies:
+ '@babel/core': 7.24.6
+ '@jest/transform': 29.7.0
+ '@types/babel__core': 7.20.5
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 29.6.3(@babel/core@7.24.6)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-plugin-const-enum@1.2.0(@babel/core@7.26.9):
+ babel-plugin-const-enum@1.2.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.9)
- '@babel/traverse': 7.26.9
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-plugin-utils': 7.25.9
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -12732,80 +13989,93 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.6
+ '@types/babel__traverse': 7.20.5
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.25.6
cosmiconfig: 7.1.0
- resolve: 1.22.10
+ resolve: 1.22.8
- babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.9):
+ babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.26.0):
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.9):
+ babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
- core-js-compat: 3.40.0
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.26.0)
+ core-js-compat: 3.35.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.9):
+ babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
- core-js-compat: 3.40.0
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.9):
+ babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.26.0)(@babel/traverse@7.25.9):
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.26.9)(@babel/traverse@7.26.9):
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
optionalDependencies:
- '@babel/traverse': 7.26.9
+ '@babel/traverse': 7.25.9
- babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.9):
+ babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.3):
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9)
+ '@babel/core': 7.24.3
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3)
+ optional: true
- babel-preset-jest@29.6.3(@babel/core@7.26.9):
+ babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.6):
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.24.6
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6)
+
+ babel-preset-jest@29.6.3(@babel/core@7.24.3):
+ dependencies:
+ '@babel/core': 7.24.3
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.9)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3)
+ optional: true
+
+ babel-preset-jest@29.6.3(@babel/core@7.24.6):
+ dependencies:
+ '@babel/core': 7.24.6
+ babel-plugin-jest-hoist: 29.6.3
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.6)
balanced-match@1.0.2: {}
@@ -12813,6 +14083,8 @@ snapshots:
base64id@2.0.0: {}
+ base64url@3.0.1: {}
+
bcrypt@5.1.1:
dependencies:
'@mapbox/node-pre-gyp': 1.0.11
@@ -12853,16 +14125,27 @@ snapshots:
dependencies:
balanced-match: 1.0.2
+ braces@3.0.2:
+ dependencies:
+ fill-range: 7.0.1
+
braces@3.0.3:
dependencies:
fill-range: 7.1.1
- browserslist@4.24.4:
+ browserslist@4.23.0:
dependencies:
- caniuse-lite: 1.0.30001700
- electron-to-chromium: 1.5.102
- node-releases: 2.0.19
- update-browserslist-db: 1.1.2(browserslist@4.24.4)
+ caniuse-lite: 1.0.30001600
+ electron-to-chromium: 1.4.715
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.13(browserslist@4.23.0)
+
+ browserslist@4.24.2:
+ dependencies:
+ caniuse-lite: 1.0.30001684
+ electron-to-chromium: 1.5.65
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
bs-logger@0.2.6:
dependencies:
@@ -12881,14 +14164,23 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- bullmq@5.41.4:
+ buffer@6.0.3:
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+
+ builtins@5.0.1:
+ dependencies:
+ semver: 7.6.3
+
+ bullmq@5.41.3:
dependencies:
cron-parser: 4.9.0
- ioredis: 5.5.0
+ ioredis: 5.4.1
msgpackr: 1.11.2
node-abort-controller: 3.1.1
- semver: 7.7.1
- tslib: 2.8.1
+ semver: 7.6.3
+ tslib: 2.8.0
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
@@ -12899,23 +14191,18 @@ snapshots:
bytes@3.1.2: {}
- call-bind-apply-helpers@1.0.2:
+ cache-manager@6.4.0:
dependencies:
+ keyv: 5.2.3
+
+ call-bind@1.0.7:
+ dependencies:
+ es-define-property: 1.0.0
es-errors: 1.3.0
function-bind: 1.1.2
-
- call-bind@1.0.8:
- dependencies:
- call-bind-apply-helpers: 1.0.2
- es-define-property: 1.0.1
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.2.4
set-function-length: 1.2.2
- call-bound@1.0.3:
- dependencies:
- call-bind-apply-helpers: 1.0.2
- get-intrinsic: 1.2.7
-
callsites@3.1.0: {}
camelcase-css@2.0.1: {}
@@ -12924,7 +14211,9 @@ snapshots:
camelcase@6.3.0: {}
- caniuse-lite@1.0.30001700: {}
+ caniuse-lite@1.0.30001600: {}
+
+ caniuse-lite@1.0.30001684: {}
chalk@2.4.2:
dependencies:
@@ -12971,22 +14260,22 @@ snapshots:
chokidar@4.0.3:
dependencies:
- readdirp: 4.1.2
+ readdirp: 4.0.2
chownr@2.0.0: {}
- chrome-trace-event@1.0.4: {}
+ chrome-trace-event@1.0.3: {}
ci-info@3.9.0: {}
- cjs-module-lexer@1.4.3: {}
+ cjs-module-lexer@1.2.3: {}
class-transformer@0.5.1: {}
class-validator@0.14.1:
dependencies:
- '@types/validator': 13.12.2
- libphonenumber-js: 1.11.20
+ '@types/validator': 13.12.0
+ libphonenumber-js: 1.10.58
validator: 13.12.0
cli-boxes@2.2.1: {}
@@ -13077,7 +14366,7 @@ snapshots:
chalk: 4.1.2
lodash: 4.17.21
rxjs: 7.8.1
- shell-quote: 1.8.2
+ shell-quote: 1.8.1
supports-color: 8.1.1
tree-kill: 1.2.2
yargs: 17.7.2
@@ -13105,9 +14394,14 @@ snapshots:
cookiejar@2.1.4: {}
- core-js-compat@3.40.0:
+ copy-anything@2.0.6:
dependencies:
- browserslist: 4.24.4
+ is-what: 3.14.1
+ optional: true
+
+ core-js-compat@3.35.0:
+ dependencies:
+ browserslist: 4.24.2
core-util-is@1.0.3: {}
@@ -13127,27 +14421,27 @@ snapshots:
cosmiconfig@7.1.0:
dependencies:
'@types/parse-json': 4.0.2
- import-fresh: 3.3.1
+ import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
cosmiconfig@8.3.6(typescript@5.7.3):
dependencies:
- import-fresh: 3.3.1
+ import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
typescript: 5.7.3
- create-jest@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3)):
+ create-jest@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3)):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))
+ jest-config: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -13162,11 +14456,11 @@ snapshots:
cron-parser@4.9.0:
dependencies:
- luxon: 3.5.0
+ luxon: 3.4.4
cross-env@7.0.3:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
cross-fetch@4.0.0:
dependencies:
@@ -13174,6 +14468,12 @@ snapshots:
transitivePeerDependencies:
- encoding
+ cross-spawn@7.0.3:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+
cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
@@ -13191,17 +14491,17 @@ snapshots:
csstype@3.1.3: {}
- cytoscape-cose-bilkent@4.1.0(cytoscape@3.31.0):
+ cytoscape-cose-bilkent@4.1.0(cytoscape@3.30.2):
dependencies:
cose-base: 1.0.3
- cytoscape: 3.31.0
+ cytoscape: 3.30.2
- cytoscape-fcose@2.2.0(cytoscape@3.31.0):
+ cytoscape-fcose@2.2.0(cytoscape@3.30.2):
dependencies:
cose-base: 2.2.0
- cytoscape: 3.31.0
+ cytoscape: 3.30.2
- cytoscape@3.31.0: {}
+ cytoscape@3.30.2: {}
d3-array@2.12.1:
dependencies:
@@ -13378,25 +14678,25 @@ snapshots:
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.1
+ whatwg-url: 14.0.0
- data-view-buffer@1.0.2:
+ data-view-buffer@1.0.1:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-data-view: 1.0.2
+ is-data-view: 1.0.1
- data-view-byte-length@1.0.2:
+ data-view-byte-length@1.0.1:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-data-view: 1.0.2
+ is-data-view: 1.0.1
- data-view-byte-offset@1.0.1:
+ data-view-byte-offset@1.0.0:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-data-view: 1.0.2
+ is-data-view: 1.0.1
date-fns@4.1.0: {}
@@ -13404,17 +14704,17 @@ snapshots:
debounce@2.0.0: {}
+ debug@4.3.4:
+ dependencies:
+ ms: 2.1.2
+
debug@4.3.7:
dependencies:
ms: 2.1.3
- debug@4.4.0:
- dependencies:
- ms: 2.1.3
+ decimal.js@10.4.3: {}
- decimal.js@10.5.0: {}
-
- dedent@1.5.3(babel-plugin-macros@3.1.0):
+ dedent@1.5.1(babel-plugin-macros@3.1.0):
optionalDependencies:
babel-plugin-macros: 3.1.0
@@ -13428,7 +14728,7 @@ snapshots:
define-data-property@1.1.4:
dependencies:
- es-define-property: 1.0.1
+ es-define-property: 1.0.0
es-errors: 1.3.0
gopd: 1.2.0
@@ -13462,10 +14762,10 @@ snapshots:
detect-node-es@1.1.0: {}
- detect-port@1.6.1:
+ detect-port@1.5.1:
dependencies:
address: 1.2.2
- debug: 4.4.0
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -13496,7 +14796,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.25.6
csstype: 3.1.3
dom-serializer@2.0.0:
@@ -13511,31 +14811,31 @@ snapshots:
dependencies:
domelementtype: 2.3.0
+ dompurify@3.2.1:
+ optionalDependencies:
+ '@types/trusted-types': 2.0.7
+
dompurify@3.2.4:
optionalDependencies:
'@types/trusted-types': 2.0.7
- domutils@3.2.2:
+ domutils@3.1.0:
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
domhandler: 5.0.3
- dotenv-expand@11.0.7:
+ dotenv-expand@11.0.6:
dependencies:
- dotenv: 16.4.7
+ dotenv: 16.4.5
dotenv-expand@12.0.1:
dependencies:
dotenv: 16.4.7
- dotenv@16.4.7: {}
+ dotenv@16.4.5: {}
- dunder-proto@1.0.1:
- dependencies:
- call-bind-apply-helpers: 1.0.2
- es-errors: 1.3.0
- gopd: 1.2.0
+ dotenv@16.4.7: {}
eastasianwidth@0.2.0: {}
@@ -13548,13 +14848,15 @@ snapshots:
'@one-ini/wasm': 0.1.1
commander: 10.0.1
minimatch: 9.0.1
- semver: 7.7.1
+ semver: 7.6.3
ejs@3.1.10:
dependencies:
- jake: 10.9.2
+ jake: 10.8.7
- electron-to-chromium@1.5.102: {}
+ electron-to-chromium@1.4.715: {}
+
+ electron-to-chromium@1.5.65: {}
emittery@0.13.1: {}
@@ -13568,11 +14870,11 @@ snapshots:
dependencies:
once: 1.4.0
- engine.io-client@6.6.3:
+ engine.io-client@6.6.2:
dependencies:
- '@socket.io/component-emitter': 3.1.2
- debug: 4.3.7
- engine.io-parser: 5.2.3
+ '@socket.io/component-emitter': 3.1.0
+ debug: 4.3.4
+ engine.io-parser: 5.2.2
ws: 8.17.1
xmlhttprequest-ssl: 2.1.2
transitivePeerDependencies:
@@ -13580,25 +14882,26 @@ snapshots:
- supports-color
- utf-8-validate
- engine.io-parser@5.2.3: {}
+ engine.io-parser@5.2.2: {}
- engine.io@6.6.4:
+ engine.io@6.6.2:
dependencies:
+ '@types/cookie': 0.4.1
'@types/cors': 2.8.17
'@types/node': 22.13.4
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.7.2
cors: 2.8.5
- debug: 4.3.7
- engine.io-parser: 5.2.3
+ debug: 4.3.4
+ engine.io-parser: 5.2.2
ws: 8.17.1
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- enhanced-resolve@5.18.1:
+ enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -13611,109 +14914,109 @@ snapshots:
entities@5.0.0: {}
+ errno@0.1.8:
+ dependencies:
+ prr: 1.0.1
+ optional: true
+
error-ex@1.3.2:
dependencies:
is-arrayish: 0.2.1
- es-abstract@1.23.9:
+ es-abstract@1.23.5:
dependencies:
- array-buffer-byte-length: 1.0.2
- arraybuffer.prototype.slice: 1.0.4
+ array-buffer-byte-length: 1.0.1
+ arraybuffer.prototype.slice: 1.0.3
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- call-bound: 1.0.3
- data-view-buffer: 1.0.2
- data-view-byte-length: 1.0.2
- data-view-byte-offset: 1.0.1
- es-define-property: 1.0.1
+ 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.1.1
- es-set-tostringtag: 2.1.0
+ es-object-atoms: 1.0.0
+ es-set-tostringtag: 2.0.3
es-to-primitive: 1.3.0
- function.prototype.name: 1.1.8
- get-intrinsic: 1.2.7
- get-proto: 1.0.1
- get-symbol-description: 1.1.0
+ function.prototype.name: 1.1.6
+ get-intrinsic: 1.2.4
+ get-symbol-description: 1.0.2
globalthis: 1.0.4
gopd: 1.2.0
has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
hasown: 2.0.2
- internal-slot: 1.1.0
- is-array-buffer: 3.0.5
+ internal-slot: 1.0.7
+ is-array-buffer: 3.0.4
is-callable: 1.2.7
- is-data-view: 1.0.2
- is-regex: 1.2.1
- is-shared-array-buffer: 1.0.4
- is-string: 1.1.1
- is-typed-array: 1.1.15
- is-weakref: 1.1.1
- math-intrinsics: 1.1.0
- object-inspect: 1.13.4
+ is-data-view: 1.0.1
+ is-negative-zero: 2.0.3
+ is-regex: 1.2.0
+ is-shared-array-buffer: 1.0.3
+ is-string: 1.1.0
+ is-typed-array: 1.1.13
+ is-weakref: 1.0.2
+ object-inspect: 1.13.3
object-keys: 1.1.1
- object.assign: 4.1.7
- own-keys: 1.0.1
- regexp.prototype.flags: 1.5.4
- safe-array-concat: 1.1.3
- safe-push-apply: 1.0.0
- safe-regex-test: 1.1.0
- set-proto: 1.0.0
- string.prototype.trim: 1.2.10
- string.prototype.trimend: 1.0.9
+ 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.3
- typed-array-byte-length: 1.0.3
- typed-array-byte-offset: 1.0.4
+ typed-array-buffer: 1.0.2
+ typed-array-byte-length: 1.0.1
+ typed-array-byte-offset: 1.0.3
typed-array-length: 1.0.7
- unbox-primitive: 1.1.0
- which-typed-array: 1.1.18
+ unbox-primitive: 1.0.2
+ which-typed-array: 1.1.16
- es-define-property@1.0.1: {}
+ es-define-property@1.0.0:
+ dependencies:
+ get-intrinsic: 1.2.4
es-errors@1.3.0: {}
- es-iterator-helpers@1.2.1:
+ es-iterator-helpers@1.2.0:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.5
es-errors: 1.3.0
- es-set-tostringtag: 2.1.0
+ es-set-tostringtag: 2.0.3
function-bind: 1.1.2
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.2.4
globalthis: 1.0.4
gopd: 1.2.0
has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
- internal-slot: 1.1.0
- iterator.prototype: 1.1.5
- safe-array-concat: 1.1.3
+ 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-module-lexer@1.6.0: {}
+ es-module-lexer@1.4.2: {}
- es-object-atoms@1.1.1:
+ es-object-atoms@1.0.0:
dependencies:
es-errors: 1.3.0
- es-set-tostringtag@2.1.0:
+ es-set-tostringtag@2.0.3:
dependencies:
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.2.4
has-tostringtag: 1.0.2
hasown: 2.0.2
- es-shim-unscopables@1.1.0:
+ es-shim-unscopables@1.0.2:
dependencies:
hasown: 2.0.2
es-to-primitive@1.3.0:
dependencies:
is-callable: 1.2.7
- is-date-object: 1.1.0
- is-symbol: 1.1.1
+ is-date-object: 1.0.5
+ is-symbol: 1.1.0
esbuild@0.19.11:
optionalDependencies:
@@ -13797,6 +15100,8 @@ snapshots:
'@esbuild/win32-ia32': 0.25.0
'@esbuild/win32-x64': 0.25.0
+ escalade@3.1.1: {}
+
escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -13807,38 +15112,38 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-config-prettier@10.0.1(eslint@9.20.1):
+ eslint-config-prettier@10.0.1(eslint@9.20.1(jiti@1.21.0)):
dependencies:
- eslint: 9.20.1
+ eslint: 9.20.1(jiti@1.21.0)
- eslint-plugin-react-hooks@5.1.0(eslint@9.20.1):
+ eslint-plugin-react-hooks@5.1.0(eslint@9.15.0(jiti@1.21.0)):
dependencies:
- eslint: 9.20.1
+ eslint: 9.15.0(jiti@1.21.0)
- eslint-plugin-react-refresh@0.4.19(eslint@9.20.1):
+ eslint-plugin-react-refresh@0.4.16(eslint@9.15.0(jiti@1.21.0)):
dependencies:
- eslint: 9.20.1
+ eslint: 9.15.0(jiti@1.21.0)
- eslint-plugin-react@7.37.4(eslint@9.20.1):
+ eslint-plugin-react@7.37.2(eslint@9.15.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
- array.prototype.flatmap: 1.3.3
+ array.prototype.flatmap: 1.3.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.2.1
- eslint: 9.20.1
+ es-iterator-helpers: 1.2.0
+ eslint: 9.15.0(jiti@1.21.0)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
object.entries: 1.1.8
object.fromentries: 2.0.8
- object.values: 1.2.1
+ object.values: 1.2.0
prop-types: 15.8.1
resolve: 2.0.0-next.5
semver: 6.3.1
- string.prototype.matchall: 4.0.12
+ string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
eslint-scope@5.1.1:
@@ -13855,42 +15160,85 @@ snapshots:
eslint-visitor-keys@4.2.0: {}
- eslint@9.20.1:
+ eslint@9.15.0(jiti@1.21.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.15.0(jiti@1.21.0))
'@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.19.2
- '@eslint/core': 0.11.0
+ '@eslint/config-array': 0.19.0
+ '@eslint/core': 0.9.0
'@eslint/eslintrc': 3.2.0
- '@eslint/js': 9.20.0
- '@eslint/plugin-kit': 0.2.7
+ '@eslint/js': 9.15.0
+ '@eslint/plugin-kit': 0.2.3
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.2
+ '@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.6
- debug: 4.4.0
+ debug: 4.3.4
escape-string-regexp: 4.0.0
eslint-scope: 8.2.0
eslint-visitor-keys: 4.2.0
espree: 10.3.0
- esquery: 1.6.0
+ esquery: 1.5.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 8.0.0
find-up: 5.0.0
glob-parent: 6.0.2
- ignore: 5.3.2
+ ignore: 5.3.1
imurmurhash: 0.1.4
is-glob: 4.0.3
json-stable-stringify-without-jsonify: 1.0.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.4
+ optionator: 0.9.3
+ optionalDependencies:
+ jiti: 1.21.0
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint@9.20.1(jiti@1.21.0):
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.20.1(jiti@1.21.0))
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/config-array': 0.19.0
+ '@eslint/core': 0.11.0
+ '@eslint/eslintrc': 3.2.0
+ '@eslint/js': 9.20.0
+ '@eslint/plugin-kit': 0.2.6
+ '@humanfs/node': 0.16.6
+ '@humanwhocodes/module-importer': 1.0.1
+ '@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.6
+ debug: 4.3.7
+ escape-string-regexp: 4.0.0
+ eslint-scope: 8.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
+ esquery: 1.5.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 8.0.0
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ ignore: 5.3.1
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ json-stable-stringify-without-jsonify: 1.0.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.3
+ optionalDependencies:
+ jiti: 1.21.0
transitivePeerDependencies:
- supports-color
@@ -13902,7 +15250,7 @@ snapshots:
esprima@4.0.1: {}
- esquery@1.6.0:
+ esquery@1.5.0:
dependencies:
estraverse: 5.3.0
@@ -13916,6 +15264,8 @@ snapshots:
esutils@2.0.3: {}
+ event-target-shim@5.0.1: {}
+
eventemitter2@6.4.9: {}
events@3.3.0: {}
@@ -13954,24 +15304,24 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-glob@3.3.3:
+ fast-glob@3.3.2:
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.8
+ micromatch: 4.0.5
fast-json-stable-stringify@2.1.0: {}
fast-json-stringify@6.0.1:
dependencies:
'@fastify/merge-json-schemas': 0.2.1
- ajv: 8.17.1
- ajv-formats: 3.0.1(ajv@8.17.1)
+ ajv: 8.12.0
+ ajv-formats: 3.0.1(ajv@8.12.0)
fast-uri: 3.0.6
json-schema-ref-resolver: 2.0.1
- rfdc: 1.4.1
+ rfdc: 1.3.1
fast-levenshtein@2.0.6: {}
@@ -13987,7 +15337,7 @@ snapshots:
fast-xml-parser@4.4.1:
dependencies:
- strnum: 1.1.1
+ strnum: 1.0.5
fastify-plugin@5.0.1: {}
@@ -14002,14 +15352,14 @@ snapshots:
fast-json-stringify: 6.0.1
find-my-way: 9.2.0
light-my-request: 6.6.0
- pino: 9.6.0
- process-warning: 4.0.1
- rfdc: 1.4.1
+ pino: 9.1.0
+ process-warning: 4.0.0
+ rfdc: 1.3.1
secure-json-parse: 3.0.2
- semver: 7.7.1
+ semver: 7.6.3
toad-cache: 3.7.0
- fastq@1.19.0:
+ fastq@1.17.1:
dependencies:
reusify: 1.0.4
@@ -14035,6 +15385,10 @@ snapshots:
dependencies:
minimatch: 5.1.6
+ fill-range@7.0.1:
+ dependencies:
+ to-regex-range: 5.0.1
+
fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
@@ -14057,33 +15411,33 @@ snapshots:
fix-esm@1.0.1:
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.9)
+ '@babel/core': 7.24.3
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.3)
transitivePeerDependencies:
- supports-color
flat-cache@4.0.1:
dependencies:
- flatted: 3.3.3
+ flatted: 3.2.9
keyv: 4.5.4
flat@5.0.2: {}
- flatted@3.3.3: {}
+ flatted@3.2.9: {}
- follow-redirects@1.15.9: {}
+ follow-redirects@1.15.6: {}
- for-each@0.3.5:
+ for-each@0.3.3:
dependencies:
is-callable: 1.2.7
- foreground-child@3.3.0:
+ foreground-child@3.1.1:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
signal-exit: 4.1.0
- fork-ts-checker-webpack-plugin@9.0.2(typescript@5.7.3)(webpack@5.98.0):
+ fork-ts-checker-webpack-plugin@9.0.2(typescript@5.7.3)(webpack@5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5))):
dependencies:
'@babel/code-frame': 7.26.2
chalk: 4.1.2
@@ -14095,22 +15449,21 @@ snapshots:
minimatch: 3.1.2
node-abort-controller: 3.1.1
schema-utils: 3.3.0
- semver: 7.7.1
+ semver: 7.6.3
tapable: 2.2.1
typescript: 5.7.3
- webpack: 5.98.0
+ webpack: 5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5))
- form-data@4.0.2:
+ form-data@4.0.0:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
- es-set-tostringtag: 2.1.0
mime-types: 2.1.35
- formidable@3.5.2:
+ formidable@3.5.1:
dependencies:
dezalgo: 1.0.4
- hexoid: 2.0.0
+ hexoid: 1.0.0
once: 1.4.0
fractional-indexing-jittered@1.0.0: {}
@@ -14137,7 +15490,7 @@ snapshots:
dependencies:
minipass: 3.3.6
- fs-monkey@1.0.6: {}
+ fs-monkey@1.0.5: {}
fs.realpath@1.0.0: {}
@@ -14146,14 +15499,12 @@ snapshots:
function-bind@1.1.2: {}
- function.prototype.name@1.1.8:
+ function.prototype.name@1.1.6:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
+ es-abstract: 1.23.5
functions-have-names: 1.2.3
- hasown: 2.0.2
- is-callable: 1.2.7
functions-have-names@1.2.3: {}
@@ -14173,37 +15524,27 @@ snapshots:
get-caller-file@2.0.5: {}
- get-intrinsic@1.2.7:
+ get-intrinsic@1.2.4:
dependencies:
- call-bind-apply-helpers: 1.0.2
- es-define-property: 1.0.1
es-errors: 1.3.0
- es-object-atoms: 1.1.1
function-bind: 1.1.2
- get-proto: 1.0.1
- gopd: 1.2.0
- has-symbols: 1.1.0
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
hasown: 2.0.2
- math-intrinsics: 1.1.0
get-nonce@1.0.1: {}
get-package-type@0.1.0: {}
- get-proto@1.0.1:
- dependencies:
- dunder-proto: 1.0.1
- es-object-atoms: 1.1.1
-
get-stream@6.0.1: {}
- get-symbol-description@1.1.0:
+ get-symbol-description@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.2.4
- get-tsconfig@4.10.0:
+ get-tsconfig@4.7.5:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -14211,7 +15552,7 @@ snapshots:
dependencies:
chalk: 2.4.2
diff: 3.5.0
- loglevel: 1.9.2
+ loglevel: 1.9.1
shelljs: 0.8.5
shelljs.exec: 1.1.8
@@ -14227,28 +15568,28 @@ snapshots:
glob@10.3.4:
dependencies:
- foreground-child: 3.3.0
+ foreground-child: 3.1.1
jackspeak: 2.3.6
- minimatch: 9.0.5
+ minimatch: 9.0.4
minipass: 7.1.2
path-scurry: 1.11.1
glob@10.4.5:
dependencies:
- foreground-child: 3.3.0
+ foreground-child: 3.1.1
jackspeak: 3.4.3
- minimatch: 9.0.5
+ minimatch: 9.0.4
minipass: 7.1.2
- package-json-from-dist: 1.0.1
+ package-json-from-dist: 1.0.0
path-scurry: 1.11.1
glob@11.0.1:
dependencies:
- foreground-child: 3.3.0
+ foreground-child: 3.1.1
jackspeak: 4.0.3
minimatch: 10.0.1
minipass: 7.1.2
- package-json-from-dist: 1.0.1
+ package-json-from-dist: 1.0.0
path-scurry: 2.0.0
glob@7.2.3:
@@ -14264,6 +15605,8 @@ snapshots:
globals@14.0.0: {}
+ globals@15.13.0: {}
+
globals@15.15.0: {}
globalthis@1.0.4:
@@ -14279,13 +15622,13 @@ snapshots:
hachure-fill@0.5.2: {}
- happy-dom@15.11.7:
+ happy-dom@15.11.6:
dependencies:
entities: 4.5.0
webidl-conversions: 7.0.0
whatwg-mimetype: 3.0.0
- has-bigints@1.1.0: {}
+ has-bigints@1.0.2: {}
has-flag@3.0.0: {}
@@ -14295,17 +15638,15 @@ snapshots:
has-property-descriptors@1.0.2:
dependencies:
- es-define-property: 1.0.1
+ es-define-property: 1.0.0
- has-proto@1.2.0:
- dependencies:
- dunder-proto: 1.0.1
+ has-proto@1.0.3: {}
- has-symbols@1.1.0: {}
+ has-symbols@1.0.3: {}
has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.1.0
+ has-symbols: 1.0.3
has-unicode@2.0.1: {}
@@ -14313,15 +15654,15 @@ snapshots:
dependencies:
function-bind: 1.1.2
- hexoid@2.0.0: {}
+ hexoid@1.0.0: {}
- highlight.js@11.11.1: {}
+ highlight.js@11.10.0: {}
hoist-non-react-statics@3.3.2:
dependencies:
react-is: 16.13.1
- hosted-git-info@7.0.2:
+ hosted-git-info@7.0.1:
dependencies:
lru-cache: 10.4.3
@@ -14349,7 +15690,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.2.2
+ domutils: 3.1.0
entities: 4.5.0
http-errors@2.0.0:
@@ -14362,36 +15703,36 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.0
+ agent-base: 7.1.1
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.4.0
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
- https-proxy-agent@7.0.6:
+ https-proxy-agent@7.0.5:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.0
+ agent-base: 7.1.1
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
human-signals@2.1.0: {}
- i18next-http-backend@2.7.3:
+ i18next-http-backend@2.6.1:
dependencies:
cross-fetch: 4.0.0
transitivePeerDependencies:
- encoding
- i18next@23.16.8:
+ i18next@23.14.0:
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.23.7
iconv-lite@0.4.24:
dependencies:
@@ -14403,16 +15744,19 @@ snapshots:
ieee754@1.2.1: {}
- ignore@5.3.2: {}
+ ignore@5.3.1: {}
+
+ image-size@0.5.5:
+ optional: true
immediate@3.0.6: {}
- import-fresh@3.3.1:
+ import-fresh@3.3.0:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-local@3.2.0:
+ import-local@3.1.0:
dependencies:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
@@ -14428,11 +15772,11 @@ snapshots:
ini@1.3.8: {}
- internal-slot@1.1.0:
+ internal-slot@1.0.7:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
- side-channel: 1.1.0
+ side-channel: 1.0.6
internmap@1.0.1: {}
@@ -14447,7 +15791,7 @@ snapshots:
ioredis@4.28.5:
dependencies:
cluster-key-slot: 1.1.2
- debug: 4.4.0
+ debug: 4.3.7
denque: 1.5.1
lodash.defaults: 4.2.0
lodash.flatten: 4.4.0
@@ -14460,11 +15804,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ioredis@5.5.0:
+ ioredis@5.4.1:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
- debug: 4.4.0
+ debug: 4.3.4
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -14476,70 +15820,59 @@ snapshots:
ipaddr.js@2.2.0: {}
- is-array-buffer@3.0.5:
+ is-array-buffer@3.0.4:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-arrayish@0.2.1: {}
- is-async-function@2.1.1:
+ is-async-function@2.0.0:
dependencies:
- async-function: 1.0.0
- call-bound: 1.0.3
- get-proto: 1.0.1
has-tostringtag: 1.0.2
- safe-regex-test: 1.1.0
is-bigint@1.1.0:
dependencies:
- has-bigints: 1.1.0
+ has-bigints: 1.0.2
is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.3.0
- is-boolean-object@1.2.2:
+ is-boolean-object@1.2.0:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
has-tostringtag: 1.0.2
is-callable@1.2.7: {}
- is-core-module@2.16.1:
+ is-core-module@2.13.1:
dependencies:
hasown: 2.0.2
- is-data-view@1.0.2:
+ is-data-view@1.0.1:
dependencies:
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
- is-typed-array: 1.1.15
+ is-typed-array: 1.1.13
- is-date-object@1.1.0:
+ is-date-object@1.0.5:
dependencies:
- call-bound: 1.0.3
has-tostringtag: 1.0.2
is-docker@2.2.1: {}
is-extglob@2.1.1: {}
- is-finalizationregistry@1.1.1:
+ is-finalizationregistry@1.1.0:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
is-fullwidth-code-point@3.0.0: {}
is-generator-fn@2.1.0: {}
- is-generator-function@1.1.0:
+ is-generator-function@1.0.10:
dependencies:
- call-bound: 1.0.3
- get-proto: 1.0.1
has-tostringtag: 1.0.2
- safe-regex-test: 1.1.0
is-glob@4.0.3:
dependencies:
@@ -14549,57 +15882,62 @@ snapshots:
is-map@2.0.3: {}
- is-number-object@1.1.1:
+ is-negative-zero@2.0.3: {}
+
+ is-number-object@1.1.0:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
has-tostringtag: 1.0.2
is-number@7.0.0: {}
is-potential-custom-element-name@1.0.1: {}
- is-regex@1.2.1:
+ is-regex@1.2.0:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
gopd: 1.2.0
has-tostringtag: 1.0.2
hasown: 2.0.2
is-set@2.0.3: {}
- is-shared-array-buffer@1.0.4:
+ is-shared-array-buffer@1.0.3:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
is-stream@2.0.1: {}
- is-string@1.1.1:
+ is-string@1.1.0:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
has-tostringtag: 1.0.2
- is-symbol@1.1.1:
+ is-symbol@1.1.0:
dependencies:
- call-bound: 1.0.3
- has-symbols: 1.1.0
- safe-regex-test: 1.1.0
+ call-bind: 1.0.7
+ has-symbols: 1.0.3
+ safe-regex-test: 1.0.3
- is-typed-array@1.1.15:
+ is-typed-array@1.1.13:
dependencies:
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.16
is-unicode-supported@0.1.0: {}
is-weakmap@2.0.2: {}
- is-weakref@1.1.1:
+ is-weakref@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
- is-weakset@2.0.4:
+ is-weakset@2.0.3:
dependencies:
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+
+ is-what@3.14.1:
+ optional: true
is-wsl@2.2.0:
dependencies:
@@ -14617,21 +15955,21 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.26.9
- '@babel/parser': 7.26.9
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- istanbul-lib-instrument@6.0.3:
+ istanbul-lib-instrument@6.0.2:
dependencies:
- '@babel/core': 7.26.9
- '@babel/parser': 7.26.9
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.7.1
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
@@ -14643,7 +15981,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.4.0
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -14656,13 +15994,12 @@ snapshots:
iterare@1.2.1: {}
- iterator.prototype@1.1.5:
+ iterator.prototype@1.1.3:
dependencies:
- define-data-property: 1.1.4
- es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
- get-proto: 1.0.1
- has-symbols: 1.1.0
+ define-properties: 1.2.1
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ reflect.getprototypeof: 1.0.7
set-function-name: 2.0.2
jackspeak@2.3.6:
@@ -14681,9 +16018,9 @@ snapshots:
dependencies:
'@isaacs/cliui': 8.0.2
- jake@10.9.2:
+ jake@10.8.7:
dependencies:
- async: 3.2.6
+ async: 3.2.5
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -14703,7 +16040,7 @@ snapshots:
'@types/node': 22.13.4
chalk: 4.1.2
co: 4.6.0
- dedent: 1.5.3(babel-plugin-macros@3.1.0)
+ dedent: 1.5.1(babel-plugin-macros@3.1.0)
is-generator-fn: 2.1.0
jest-each: 29.7.0
jest-matcher-utils: 29.7.0
@@ -14720,16 +16057,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3)):
+ jest-cli@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3)):
dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))
+ create-jest: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))
exit: 0.1.2
- import-local: 3.2.0
- jest-config: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))
+ import-local: 3.1.0
+ jest-config: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -14739,12 +16076,12 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3)):
+ jest-config@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3)):
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.24.6
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.26.9)
+ babel-jest: 29.7.0(@babel/core@7.24.6)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -14765,7 +16102,7 @@ snapshots:
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 22.13.4
- ts-node: 10.9.2(@types/node@22.13.4)(typescript@5.7.3)
+ ts-node: 10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -14830,7 +16167,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.24.2
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -14867,8 +16204,8 @@ snapshots:
jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
jest-util: 29.7.0
jest-validate: 29.7.0
- resolve: 1.22.10
- resolve.exports: 2.0.3
+ resolve: 1.22.8
+ resolve.exports: 2.0.2
slash: 3.0.0
jest-runner@29.7.0:
@@ -14908,7 +16245,7 @@ snapshots:
'@jest/types': 29.6.3
'@types/node': 22.13.4
chalk: 4.1.2
- cjs-module-lexer: 1.4.3
+ cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
@@ -14926,15 +16263,15 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.26.9
- '@babel/generator': 7.26.9
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.9)
- '@babel/types': 7.26.9
+ '@babel/core': 7.24.6
+ '@babel/generator': 7.24.1
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.6)
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.6)
+ '@babel/types': 7.24.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.9)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.6)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -14945,7 +16282,7 @@ snapshots:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.7.1
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
@@ -14991,35 +16328,40 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3)):
+ jest@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3)):
dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))
'@jest/types': 29.6.3
- import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))
+ import-local: 3.1.0
+ jest-cli: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
- jotai-optics@0.4.0(jotai@2.12.1(@types/react@18.3.18)(react@18.3.1))(optics-ts@2.4.1):
+ jiti@1.21.0:
+ optional: true
+
+ jose@4.15.9: {}
+
+ jotai-optics@0.4.0(jotai@2.12.1(@types/react@18.3.12)(react@18.3.1))(optics-ts@2.4.1):
dependencies:
- jotai: 2.12.1(@types/react@18.3.18)(react@18.3.1)
+ jotai: 2.12.1(@types/react@18.3.12)(react@18.3.1)
optics-ts: 2.4.1
- jotai@2.12.1(@types/react@18.3.18)(react@18.3.1):
+ jotai@2.12.1(@types/react@18.3.12)(react@18.3.1):
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
react: 18.3.1
- js-beautify@1.15.3:
+ js-beautify@1.15.1:
dependencies:
config-chain: 1.1.13
editorconfig: 1.0.4
glob: 10.4.5
js-cookie: 3.0.5
- nopt: 8.1.0
+ nopt: 7.2.0
js-cookie@3.0.5: {}
@@ -15038,33 +16380,35 @@ snapshots:
dependencies:
cssstyle: 4.2.1
data-urls: 5.0.0
- decimal.js: 10.5.0
- form-data: 4.0.2
+ decimal.js: 10.4.3
+ form-data: 4.0.0
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6
+ https-proxy-agent: 7.0.5
is-potential-custom-element-name: 1.0.1
nwsapi: 2.2.16
- parse5: 7.2.1
+ parse5: 7.1.2
rrweb-cssom: 0.7.1
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 5.1.1
+ tough-cookie: 5.1.0
w3c-xmlserializer: 5.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.1
- ws: 8.18.1
+ whatwg-url: 14.0.0
+ ws: 8.18.0
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- jsesc@3.0.2: {}
+ jsesc@0.5.0: {}
- jsesc@3.1.0: {}
+ jsesc@2.5.2: {}
+
+ jsesc@3.0.2: {}
json-buffer@3.0.1: {}
@@ -15103,14 +16447,14 @@ snapshots:
lodash.isstring: 4.0.1
lodash.once: 4.1.1
ms: 2.1.3
- semver: 7.7.1
+ semver: 7.6.3
jsx-ast-utils@3.3.5:
dependencies:
array-includes: 3.1.8
- array.prototype.flat: 1.3.3
- object.assign: 4.1.7
- object.values: 1.2.1
+ array.prototype.flat: 1.3.2
+ object.assign: 4.1.5
+ object.values: 1.2.0
jszip@3.10.1:
dependencies:
@@ -15138,6 +16482,10 @@ snapshots:
dependencies:
json-buffer: 3.0.1
+ keyv@5.2.3:
+ dependencies:
+ '@keyv/serialize': 1.0.3
+
khroma@2.1.0: {}
kleur@3.0.3: {}
@@ -15151,8 +16499,8 @@ snapshots:
kysely-codegen@0.17.0(kysely@0.27.5)(pg@8.13.3):
dependencies:
chalk: 4.1.2
- dotenv: 16.4.7
- dotenv-expand: 11.0.7
+ dotenv: 16.4.5
+ dotenv-expand: 11.0.6
git-diff: 2.0.6
kysely: 0.27.5
micromatch: 4.0.8
@@ -15182,6 +16530,21 @@ snapshots:
leac@0.6.0: {}
+ less@4.2.0:
+ dependencies:
+ copy-anything: 2.0.6
+ parse-node-version: 1.0.1
+ tslib: 2.8.1
+ optionalDependencies:
+ errno: 0.1.8
+ graceful-fs: 4.2.11
+ image-size: 0.5.5
+ make-dir: 2.1.0
+ mime: 1.6.0
+ needle: 3.3.1
+ source-map: 0.6.1
+ optional: true
+
leven@3.1.0: {}
levn@0.4.1:
@@ -15189,11 +16552,15 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- lib0@0.2.99:
+ lib0@0.2.88:
dependencies:
isomorphic.js: 0.2.5
- libphonenumber-js@1.11.20: {}
+ lib0@0.2.98:
+ dependencies:
+ isomorphic.js: 0.2.5
+
+ libphonenumber-js@1.10.58: {}
lie@3.3.0:
dependencies:
@@ -15202,8 +16569,8 @@ snapshots:
light-my-request@6.6.0:
dependencies:
cookie: 1.0.2
- process-warning: 4.0.1
- set-cookie-parser: 2.7.1
+ process-warning: 4.0.0
+ set-cookie-parser: 2.6.0
lines-and-columns@1.2.4: {}
@@ -15217,10 +16584,10 @@ snapshots:
loader-runner@4.3.0: {}
- local-pkg@1.0.0:
+ local-pkg@0.5.1:
dependencies:
- mlly: 1.7.4
- pkg-types: 1.3.1
+ mlly: 1.7.3
+ pkg-types: 1.2.1
locate-path@5.0.0:
dependencies:
@@ -15267,17 +16634,17 @@ snapshots:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- loglevel@1.9.2: {}
+ loglevel@1.9.1: {}
loose-envify@1.4.0:
dependencies:
js-tokens: 4.0.0
- lowlight@3.3.0:
+ lowlight@3.2.0:
dependencies:
'@types/hast': 3.0.4
devlop: 1.1.0
- highlight.js: 11.11.1
+ highlight.js: 11.10.0
lru-cache@10.4.3: {}
@@ -15287,19 +16654,29 @@ snapshots:
dependencies:
yallist: 3.1.1
- luxon@3.5.0: {}
+ lru-cache@6.0.0:
+ dependencies:
+ yallist: 4.0.0
+
+ luxon@3.4.4: {}
magic-string@0.30.17:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
+ make-dir@2.1.0:
+ dependencies:
+ pify: 4.0.1
+ semver: 5.7.2
+ optional: true
+
make-dir@3.1.0:
dependencies:
semver: 6.3.1
make-dir@4.0.0:
dependencies:
- semver: 7.7.1
+ semver: 7.6.3
make-error@1.3.6: {}
@@ -15320,8 +16697,6 @@ snapshots:
marked@7.0.4: {}
- math-intrinsics@1.1.0: {}
-
md-to-react-email@5.0.2(react@18.3.1):
dependencies:
marked: 7.0.4
@@ -15331,7 +16706,7 @@ snapshots:
memfs@3.5.3:
dependencies:
- fs-monkey: 1.0.6
+ fs-monkey: 1.0.5
memoize-one@5.2.1: {}
@@ -15341,24 +16716,24 @@ snapshots:
mermaid@11.4.1:
dependencies:
- '@braintree/sanitize-url': 7.1.1
- '@iconify/utils': 2.3.0
+ '@braintree/sanitize-url': 7.1.0
+ '@iconify/utils': 2.1.33
'@mermaid-js/parser': 0.3.0
'@types/d3': 7.4.3
- cytoscape: 3.31.0
- cytoscape-cose-bilkent: 4.1.0(cytoscape@3.31.0)
- cytoscape-fcose: 2.2.0(cytoscape@3.31.0)
+ cytoscape: 3.30.2
+ cytoscape-cose-bilkent: 4.1.0(cytoscape@3.30.2)
+ cytoscape-fcose: 2.2.0(cytoscape@3.30.2)
d3: 7.9.0
d3-sankey: 0.12.3
dagre-d3-es: 7.0.11
dayjs: 1.11.13
- dompurify: 3.2.4
+ dompurify: 3.2.1
katex: 0.16.21
khroma: 2.1.0
lodash-es: 4.17.21
marked: 13.0.3
roughjs: 4.6.6
- stylis: 4.3.6
+ stylis: 4.3.3
ts-dedent: 2.2.0
uuid: 9.0.1
transitivePeerDependencies:
@@ -15366,6 +16741,11 @@ snapshots:
methods@1.1.2: {}
+ micromatch@4.0.5:
+ dependencies:
+ braces: 3.0.2
+ picomatch: 2.3.1
+
micromatch@4.0.8:
dependencies:
braces: 3.0.3
@@ -15377,6 +16757,9 @@ snapshots:
dependencies:
mime-db: 1.52.0
+ mime@1.6.0:
+ optional: true
+
mime@2.6.0: {}
mime@3.0.0: {}
@@ -15403,7 +16786,7 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@9.0.5:
+ minimatch@9.0.4:
dependencies:
brace-expansion: 2.0.1
@@ -15424,43 +16807,53 @@ snapshots:
mkdirp@1.0.4: {}
- mlly@1.7.4:
+ mlly@1.7.3:
dependencies:
acorn: 8.14.0
- pathe: 2.0.3
- pkg-types: 1.3.1
+ pathe: 1.1.2
+ pkg-types: 1.2.1
ufo: 1.5.4
mnemonist@0.39.8:
dependencies:
- obliterator: 2.0.5
+ obliterator: 2.0.4
+
+ ms@2.1.2: {}
ms@2.1.3: {}
- msgpackr-extract@3.0.3:
+ msgpackr-extract@3.0.2:
dependencies:
- node-gyp-build-optional-packages: 5.2.2
+ node-gyp-build-optional-packages: 5.0.7
optionalDependencies:
- '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.3
- '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.3
- '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.2
+ '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.2
+ '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.2
+ '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.2
+ '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.2
+ '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.2
optional: true
msgpackr@1.11.2:
optionalDependencies:
- msgpackr-extract: 3.0.3
+ msgpackr-extract: 3.0.2
mute-stream@2.0.0: {}
+ nanoid@3.3.7: {}
+
nanoid@3.3.8: {}
nanoid@5.1.0: {}
natural-compare@1.4.0: {}
+ needle@3.3.1:
+ dependencies:
+ iconv-lite: 0.6.3
+ sax: 1.4.1
+ optional: true
+
negotiator@0.6.3: {}
neo-async@2.6.2: {}
@@ -15477,7 +16870,7 @@ snapshots:
'@next/env': 14.2.10
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001700
+ caniuse-lite: 1.0.30001684
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
@@ -15510,16 +16903,16 @@ snapshots:
dependencies:
whatwg-url: 5.0.0
- node-gyp-build-optional-packages@5.2.2:
- dependencies:
- detect-libc: 2.0.3
+ node-gyp-build-optional-packages@5.0.7:
optional: true
node-int64@0.4.0: {}
node-machine-id@1.1.12: {}
- node-releases@2.0.19: {}
+ node-releases@2.0.14: {}
+
+ node-releases@2.0.18: {}
nodemailer@6.10.0: {}
@@ -15527,9 +16920,9 @@ snapshots:
dependencies:
abbrev: 1.1.1
- nopt@8.1.0:
+ nopt@7.2.0:
dependencies:
- abbrev: 3.0.0
+ abbrev: 2.0.0
normalize-path@3.0.0: {}
@@ -15537,10 +16930,10 @@ snapshots:
npm-package-arg@11.0.1:
dependencies:
- hosted-git-info: 7.0.2
+ hosted-git-info: 7.0.1
proc-log: 3.0.0
- semver: 7.7.1
- validate-npm-package-name: 5.0.1
+ semver: 7.6.3
+ validate-npm-package-name: 5.0.0
npm-run-path@4.0.1:
dependencies:
@@ -15555,7 +16948,7 @@ snapshots:
nwsapi@2.2.16: {}
- nx@20.4.5:
+ nx@20.4.5(@swc/core@1.5.25(@swc/helpers@0.5.5)):
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
'@yarnpkg/lockfile': 1.1.0
@@ -15566,13 +16959,13 @@ snapshots:
cli-cursor: 3.1.0
cli-spinners: 2.6.1
cliui: 8.0.1
- dotenv: 16.4.7
- dotenv-expand: 11.0.7
+ dotenv: 16.4.5
+ dotenv-expand: 11.0.6
enquirer: 2.3.6
figures: 3.2.0
flat: 5.0.2
front-matter: 4.0.2
- ignore: 5.3.2
+ ignore: 5.3.1
jest-diff: 29.7.0
jsonc-parser: 3.2.0
lines-and-columns: 2.0.3
@@ -15582,12 +16975,12 @@ snapshots:
open: 8.4.2
ora: 5.3.0
resolve.exports: 2.0.3
- semver: 7.7.1
+ semver: 7.6.3
string-width: 4.2.3
tar-stream: 2.2.0
- tmp: 0.2.3
+ tmp: 0.2.1
tsconfig-paths: 4.2.0
- tslib: 2.8.1
+ tslib: 2.8.0
yaml: 2.7.0
yargs: 17.7.2
yargs-parser: 21.1.1
@@ -15602,50 +16995,54 @@ snapshots:
'@nx/nx-linux-x64-musl': 20.4.5
'@nx/nx-win32-arm64-msvc': 20.4.5
'@nx/nx-win32-x64-msvc': 20.4.5
+ '@swc/core': 1.5.25(@swc/helpers@0.5.5)
transitivePeerDependencies:
- debug
+ oauth@0.10.0: {}
+
object-assign@4.1.1: {}
+ object-hash@2.2.0: {}
+
object-hash@3.0.0: {}
- object-inspect@1.13.4: {}
+ object-inspect@1.13.3: {}
object-keys@1.1.1: {}
- object.assign@4.1.7:
+ object.assign@4.1.5:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.1.1
- has-symbols: 1.1.0
+ has-symbols: 1.0.3
object-keys: 1.1.1
object.entries@1.1.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.1.1
+ es-object-atoms: 1.0.0
object.fromentries@2.0.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
- es-object-atoms: 1.1.1
+ es-abstract: 1.23.5
+ es-object-atoms: 1.0.0
- object.values@1.2.1:
+ object.values@1.2.0:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.1.1
+ es-object-atoms: 1.0.0
- obliterator@2.0.5: {}
+ obliterator@2.0.4: {}
obuf@1.1.2: {}
+ oidc-token-hash@5.0.3: {}
+
on-exit-leak-free@2.1.2: {}
once@1.4.0:
@@ -15662,16 +17059,23 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
+ openid-client@5.7.1:
+ dependencies:
+ jose: 4.15.9
+ lru-cache: 6.0.0
+ object-hash: 2.2.0
+ oidc-token-hash: 5.0.3
+
optics-ts@2.4.1: {}
- optionator@0.9.4:
+ optionator@0.9.3:
dependencies:
+ '@aashutoshrathi/word-wrap': 1.2.6
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.5
ora@5.3.0:
dependencies:
@@ -15700,12 +17104,6 @@ snapshots:
os-tmpdir@1.0.2: {}
- own-keys@1.0.1:
- dependencies:
- get-intrinsic: 1.2.7
- object-keys: 1.1.1
- safe-push-apply: 1.0.0
-
p-limit@2.3.0:
dependencies:
p-try: 2.2.0
@@ -15726,9 +17124,9 @@ snapshots:
p-try@2.2.0: {}
- package-json-from-dist@1.0.1: {}
+ package-json-from-dist@1.0.0: {}
- package-manager-detector@0.2.9: {}
+ package-manager-detector@0.2.5: {}
pako@1.0.11: {}
@@ -15743,7 +17141,10 @@ snapshots:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- parse5@7.2.1:
+ parse-node-version@1.0.1:
+ optional: true
+
+ parse5@7.1.2:
dependencies:
entities: 4.5.0
@@ -15752,11 +17153,23 @@ snapshots:
leac: 0.6.0
peberminta: 0.9.0
+ passport-google-oauth20@2.0.0:
+ dependencies:
+ passport-oauth2: 1.8.0
+
passport-jwt@4.0.1:
dependencies:
jsonwebtoken: 9.0.2
passport-strategy: 1.0.0
+ passport-oauth2@1.8.0:
+ dependencies:
+ base64url: 3.0.1
+ oauth: 0.10.0
+ passport-strategy: 1.0.0
+ uid2: 0.0.4
+ utils-merge: 1.0.1
+
passport-strategy@1.0.0: {}
passport@0.7.0:
@@ -15789,7 +17202,7 @@ snapshots:
path-type@4.0.0: {}
- pathe@2.0.3: {}
+ pathe@1.1.2: {}
pause@0.0.1: {}
@@ -15808,6 +17221,8 @@ snapshots:
dependencies:
pg: 8.13.3
+ pg-protocol@1.7.0: {}
+
pg-protocol@1.7.1: {}
pg-tsquery@8.4.2: {}
@@ -15844,31 +17259,39 @@ snapshots:
dependencies:
split2: 4.2.0
+ picocolors@1.0.0: {}
+
+ picocolors@1.0.1: {}
+
picocolors@1.1.1: {}
picomatch@2.3.1: {}
picomatch@4.0.2: {}
- pino-abstract-transport@2.0.0:
+ pify@4.0.1:
+ optional: true
+
+ pino-abstract-transport@1.2.0:
dependencies:
+ readable-stream: 4.5.2
split2: 4.2.0
pino-std-serializers@7.0.0: {}
- pino@9.6.0:
+ pino@9.1.0:
dependencies:
atomic-sleep: 1.0.0
fast-redact: 3.5.0
on-exit-leak-free: 2.1.2
- pino-abstract-transport: 2.0.0
+ pino-abstract-transport: 1.2.0
pino-std-serializers: 7.0.0
- process-warning: 4.0.1
+ process-warning: 3.0.0
quick-format-unescaped: 4.0.4
real-require: 0.2.0
- safe-stable-stringify: 2.5.0
- sonic-boom: 4.2.0
- thread-stream: 3.1.0
+ safe-stable-stringify: 2.4.3
+ sonic-boom: 4.0.1
+ thread-stream: 3.0.2
pirates@4.0.6: {}
@@ -15876,11 +17299,11 @@ snapshots:
dependencies:
find-up: 4.1.0
- pkg-types@1.3.1:
+ pkg-types@1.2.1:
dependencies:
confbox: 0.1.8
- mlly: 1.7.4
- pathe: 2.0.3
+ mlly: 1.7.3
+ pathe: 1.1.2
pluralize@8.0.0: {}
@@ -15891,40 +17314,40 @@ snapshots:
path-data-parser: 0.1.0
points-on-curve: 0.2.0
- possible-typed-array-names@1.1.0: {}
+ possible-typed-array-names@1.0.0: {}
- postcss-js@4.0.1(postcss@8.5.3):
+ postcss-js@4.0.1(postcss@8.4.49):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.5.3
+ postcss: 8.4.49
- postcss-mixins@9.0.4(postcss@8.5.3):
+ postcss-mixins@9.0.4(postcss@8.4.49):
dependencies:
- fast-glob: 3.3.3
- postcss: 8.5.3
- postcss-js: 4.0.1(postcss@8.5.3)
- postcss-simple-vars: 7.0.1(postcss@8.5.3)
- sugarss: 4.0.1(postcss@8.5.3)
+ fast-glob: 3.3.2
+ postcss: 8.4.49
+ postcss-js: 4.0.1(postcss@8.4.49)
+ postcss-simple-vars: 7.0.1(postcss@8.4.49)
+ sugarss: 4.0.1(postcss@8.4.49)
- postcss-nested@6.2.0(postcss@8.5.3):
+ postcss-nested@6.0.1(postcss@8.4.49):
dependencies:
- postcss: 8.5.3
- postcss-selector-parser: 6.1.2
+ postcss: 8.4.49
+ postcss-selector-parser: 6.0.15
- postcss-preset-mantine@1.17.0(postcss@8.5.3):
+ postcss-preset-mantine@1.17.0(postcss@8.4.49):
dependencies:
- postcss: 8.5.3
- postcss-mixins: 9.0.4(postcss@8.5.3)
- postcss-nested: 6.2.0(postcss@8.5.3)
+ postcss: 8.4.49
+ postcss-mixins: 9.0.4(postcss@8.4.49)
+ postcss-nested: 6.0.1(postcss@8.4.49)
- postcss-selector-parser@6.1.2:
+ postcss-selector-parser@6.0.15:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-simple-vars@7.0.1(postcss@8.5.3):
+ postcss-simple-vars@7.0.1(postcss@8.4.49):
dependencies:
- postcss: 8.5.3
+ postcss: 8.4.49
postcss@8.4.31:
dependencies:
@@ -15932,7 +17355,13 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.5.3:
+ postcss@8.4.49:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ postcss@8.5.2:
dependencies:
nanoid: 3.3.8
picocolors: 1.1.1
@@ -15962,19 +17391,21 @@ snapshots:
postmark@4.0.5:
dependencies:
- axios: 1.7.9
+ axios: 1.7.8
transitivePeerDependencies:
- debug
prelude-ls@1.2.1: {}
+ prettier@3.4.1: {}
+
prettier@3.5.1: {}
pretty-format@29.7.0:
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
- react-is: 18.3.1
+ react-is: 18.2.0
prismjs@1.29.0: {}
@@ -15982,7 +17413,11 @@ snapshots:
process-nextick-args@2.0.1: {}
- process-warning@4.0.1: {}
+ process-warning@3.0.0: {}
+
+ process-warning@4.0.0: {}
+
+ process@0.11.10: {}
prompts@2.4.2:
dependencies:
@@ -16003,9 +17438,9 @@ snapshots:
dependencies:
prosemirror-state: 1.4.3
- prosemirror-commands@1.7.0:
+ prosemirror-commands@1.6.2:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
@@ -16013,20 +17448,20 @@ snapshots:
dependencies:
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
- prosemirror-view: 1.38.0
+ prosemirror-view: 1.37.0
prosemirror-gapcursor@1.3.2:
dependencies:
prosemirror-keymap: 1.2.2
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
- prosemirror-view: 1.38.0
+ prosemirror-view: 1.37.0
prosemirror-history@1.4.1:
dependencies:
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
- prosemirror-view: 1.38.0
+ prosemirror-view: 1.37.0
rope-sequence: 1.3.4
prosemirror-inputrules@1.4.0:
@@ -16043,58 +17478,58 @@ snapshots:
dependencies:
'@types/markdown-it': 14.1.2
markdown-it: 14.1.0
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-menu@1.2.4:
dependencies:
crelt: 1.0.6
- prosemirror-commands: 1.7.0
+ prosemirror-commands: 1.6.2
prosemirror-history: 1.4.1
prosemirror-state: 1.4.3
- prosemirror-model@1.24.1:
+ prosemirror-model@1.23.0:
dependencies:
orderedmap: 2.1.1
prosemirror-schema-basic@1.2.3:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
- prosemirror-schema-list@1.5.0:
+ prosemirror-schema-list@1.4.1:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
prosemirror-state@1.4.3:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-transform: 1.10.2
- prosemirror-view: 1.38.0
+ prosemirror-view: 1.37.0
- prosemirror-tables@1.6.4:
+ prosemirror-tables@1.6.1:
dependencies:
prosemirror-keymap: 1.2.2
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
- prosemirror-view: 1.38.0
+ prosemirror-view: 1.37.0
- prosemirror-trailing-node@3.0.0(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0):
+ prosemirror-trailing-node@3.0.0(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0):
dependencies:
'@remirror/core-constants': 3.0.0
escape-string-regexp: 4.0.0
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
- prosemirror-view: 1.38.0
+ prosemirror-view: 1.37.0
prosemirror-transform@1.10.2:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
- prosemirror-view@1.38.0:
+ prosemirror-view@1.37.0:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
@@ -16102,15 +17537,18 @@ snapshots:
proxy-from-env@1.1.0: {}
+ prr@1.0.1:
+ optional: true
+
punycode.js@2.3.1: {}
punycode@2.3.1: {}
pure-rand@6.1.0: {}
- qs@6.14.0:
+ qs@6.12.0:
dependencies:
- side-channel: 1.1.0
+ side-channel: 1.0.6
queue-microtask@1.2.3: {}
@@ -16120,32 +17558,32 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- react-arborist@3.4.0(patch_hash=419b3b02e24afe928cc006a006f6e906666aff19aa6fd7daaa788ccc2202678a)(@types/node@22.10.0)(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-arborist@3.4.0(patch_hash=419b3b02e24afe928cc006a006f6e906666aff19aa6fd7daaa788ccc2202678a)(@types/node@22.10.0)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
- react-dnd: 14.0.5(@types/node@22.10.0)(@types/react@18.3.18)(react@18.3.1)
+ react-dnd: 14.0.5(@types/node@22.10.0)(@types/react@18.3.12)(react@18.3.1)
react-dnd-html5-backend: 14.1.0
react-dom: 18.3.1(react@18.3.1)
- react-window: 1.8.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-window: 1.8.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
redux: 5.0.1
- use-sync-external-store: 1.4.0(react@18.3.1)
+ use-sync-external-store: 1.2.2(react@18.3.1)
transitivePeerDependencies:
- '@types/hoist-non-react-statics'
- '@types/node'
- '@types/react'
- react-clear-modal@2.0.13(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-clear-modal@2.0.11(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
react-dnd-html5-backend@14.1.0:
dependencies:
dnd-core: 14.0.1
- react-dnd@14.0.5(@types/node@22.10.0)(@types/react@18.3.18)(react@18.3.1):
+ react-dnd@14.0.5(@types/node@22.10.0)(@types/react@18.3.12)(react@18.3.1):
dependencies:
'@react-dnd/invariant': 2.0.0
'@react-dnd/shallowequal': 2.0.0
@@ -16155,7 +17593,7 @@ snapshots:
react: 18.3.1
optionalDependencies:
'@types/node': 22.10.0
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
react-dom@18.3.1(react@18.3.1):
dependencies:
@@ -16163,7 +17601,7 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-drawio@1.0.3(react@18.3.1):
+ react-drawio@1.0.1(react@18.3.1):
dependencies:
react: 18.3.1
@@ -16196,7 +17634,7 @@ snapshots:
react-error-boundary@4.1.2(react@18.3.1):
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.23.7
react: 18.3.1
react-fast-compare@3.2.2: {}
@@ -16208,18 +17646,18 @@ snapshots:
react-fast-compare: 3.2.2
shallowequal: 1.1.0
- react-i18next@15.4.1(i18next@23.16.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-i18next@15.0.1(i18next@23.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.25.6
html-parse-stringify: 3.0.1
- i18next: 23.16.8
+ i18next: 23.14.0
react: 18.3.1
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
react-is@16.13.1: {}
- react-is@18.3.1: {}
+ react-is@18.2.0: {}
react-number-format@5.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -16232,70 +17670,70 @@ snapshots:
react-refresh@0.14.2: {}
- react-remove-scroll-bar@2.3.8(@types/react@18.3.18)(react@18.3.1):
+ react-remove-scroll-bar@2.3.8(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
- react-style-singleton: 2.2.3(@types/react@18.3.18)(react@18.3.1)
+ react-style-singleton: 2.2.3(@types/react@18.3.12)(react@18.3.1)
tslib: 2.8.1
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
- react-remove-scroll@2.6.3(@types/react@18.3.18)(react@18.3.1):
+ react-remove-scroll@2.6.3(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
- react-remove-scroll-bar: 2.3.8(@types/react@18.3.18)(react@18.3.1)
- react-style-singleton: 2.2.3(@types/react@18.3.18)(react@18.3.1)
+ react-remove-scroll-bar: 2.3.8(@types/react@18.3.12)(react@18.3.1)
+ react-style-singleton: 2.2.3(@types/react@18.3.12)(react@18.3.1)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@18.3.18)(react@18.3.1)
- use-sidecar: 1.1.3(@types/react@18.3.18)(react@18.3.1)
+ use-callback-ref: 1.3.3(@types/react@18.3.12)(react@18.3.1)
+ use-sidecar: 1.1.3(@types/react@18.3.12)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
- react-router-dom@7.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-router-dom@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-router: 7.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-router: 7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-router@7.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@types/cookie': 0.6.0
cookie: 1.0.2
react: 18.3.1
- set-cookie-parser: 2.7.1
+ set-cookie-parser: 2.6.0
turbo-stream: 2.4.0
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
- react-style-singleton@2.2.3(@types/react@18.3.18)(react@18.3.1):
+ react-style-singleton@2.2.3(@types/react@18.3.12)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
react: 18.3.1
tslib: 2.8.1
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
- react-textarea-autosize@8.5.6(@types/react@18.3.18)(react@18.3.1):
+ react-textarea-autosize@8.5.6(@types/react@18.3.12)(react@18.3.1):
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.25.6
react: 18.3.1
- use-composed-ref: 1.4.0(@types/react@18.3.18)(react@18.3.1)
- use-latest: 1.3.0(@types/react@18.3.18)(react@18.3.1)
+ use-composed-ref: 1.3.0(react@18.3.1)
+ use-latest: 1.2.1(@types/react@18.3.12)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.25.6
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-window@1.8.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-window@1.8.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.25.6
memoize-one: 5.2.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -16320,17 +17758,25 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ readable-stream@4.5.2:
+ dependencies:
+ abort-controller: 3.0.0
+ buffer: 6.0.3
+ events: 3.3.0
+ process: 0.11.10
+ string_decoder: 1.3.0
+
readdirp@3.6.0:
dependencies:
picomatch: 2.3.1
- readdirp@4.1.2: {}
+ readdirp@4.0.2: {}
real-require@0.2.0: {}
rechoir@0.6.2:
dependencies:
- resolve: 1.22.10
+ resolve: 1.22.8
redis-commands@1.7.0: {}
@@ -16346,24 +17792,23 @@ snapshots:
redux@4.2.1:
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.25.6
redux@5.0.1: {}
reflect-metadata@0.2.2: {}
- reflect.getprototypeof@1.0.10:
+ reflect.getprototypeof@1.0.7:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.5
es-errors: 1.3.0
- es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
- get-proto: 1.0.1
- which-builtin-type: 1.2.1
+ get-intrinsic: 1.2.4
+ gopd: 1.2.0
+ which-builtin-type: 1.2.0
- regenerate-unicode-properties@10.2.0:
+ regenerate-unicode-properties@10.1.1:
dependencies:
regenerate: 1.4.2
@@ -16373,31 +17818,27 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.26.9
+ '@babel/runtime': 7.25.6
- regexp.prototype.flags@1.5.4:
+ regexp.prototype.flags@1.5.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-errors: 1.3.0
- get-proto: 1.0.1
- gopd: 1.2.0
set-function-name: 2.0.2
- regexpu-core@6.2.0:
+ regexpu-core@5.3.2:
dependencies:
+ '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 10.2.0
- regjsgen: 0.8.0
- regjsparser: 0.12.0
+ regenerate-unicode-properties: 10.1.1
+ regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.2.0
+ unicode-match-property-value-ecmascript: 2.1.0
- regjsgen@0.8.0: {}
-
- regjsparser@0.12.0:
+ regjsparser@0.9.1:
dependencies:
- jsesc: 3.0.2
+ jsesc: 0.5.0
repeat-string@1.6.1: {}
@@ -16415,17 +17856,19 @@ snapshots:
resolve-pkg-maps@1.0.0: {}
+ resolve.exports@2.0.2: {}
+
resolve.exports@2.0.3: {}
- resolve@1.22.10:
+ resolve@1.22.8:
dependencies:
- is-core-module: 2.16.1
+ is-core-module: 2.13.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.16.1
+ is-core-module: 2.13.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -16438,7 +17881,7 @@ snapshots:
reusify@1.0.4: {}
- rfdc@1.4.1: {}
+ rfdc@1.3.1: {}
rimraf@3.0.2:
dependencies:
@@ -16446,29 +17889,29 @@ snapshots:
robust-predicates@3.0.2: {}
- rollup@4.34.8:
+ rollup@4.34.7:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.34.8
- '@rollup/rollup-android-arm64': 4.34.8
- '@rollup/rollup-darwin-arm64': 4.34.8
- '@rollup/rollup-darwin-x64': 4.34.8
- '@rollup/rollup-freebsd-arm64': 4.34.8
- '@rollup/rollup-freebsd-x64': 4.34.8
- '@rollup/rollup-linux-arm-gnueabihf': 4.34.8
- '@rollup/rollup-linux-arm-musleabihf': 4.34.8
- '@rollup/rollup-linux-arm64-gnu': 4.34.8
- '@rollup/rollup-linux-arm64-musl': 4.34.8
- '@rollup/rollup-linux-loongarch64-gnu': 4.34.8
- '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8
- '@rollup/rollup-linux-riscv64-gnu': 4.34.8
- '@rollup/rollup-linux-s390x-gnu': 4.34.8
- '@rollup/rollup-linux-x64-gnu': 4.34.8
- '@rollup/rollup-linux-x64-musl': 4.34.8
- '@rollup/rollup-win32-arm64-msvc': 4.34.8
- '@rollup/rollup-win32-ia32-msvc': 4.34.8
- '@rollup/rollup-win32-x64-msvc': 4.34.8
+ '@rollup/rollup-android-arm-eabi': 4.34.7
+ '@rollup/rollup-android-arm64': 4.34.7
+ '@rollup/rollup-darwin-arm64': 4.34.7
+ '@rollup/rollup-darwin-x64': 4.34.7
+ '@rollup/rollup-freebsd-arm64': 4.34.7
+ '@rollup/rollup-freebsd-x64': 4.34.7
+ '@rollup/rollup-linux-arm-gnueabihf': 4.34.7
+ '@rollup/rollup-linux-arm-musleabihf': 4.34.7
+ '@rollup/rollup-linux-arm64-gnu': 4.34.7
+ '@rollup/rollup-linux-arm64-musl': 4.34.7
+ '@rollup/rollup-linux-loongarch64-gnu': 4.34.7
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.34.7
+ '@rollup/rollup-linux-riscv64-gnu': 4.34.7
+ '@rollup/rollup-linux-s390x-gnu': 4.34.7
+ '@rollup/rollup-linux-x64-gnu': 4.34.7
+ '@rollup/rollup-linux-x64-musl': 4.34.7
+ '@rollup/rollup-win32-arm64-msvc': 4.34.7
+ '@rollup/rollup-win32-ia32-msvc': 4.34.7
+ '@rollup/rollup-win32-x64-msvc': 4.34.7
fsevents: 2.3.3
rope-sequence@1.3.4: {}
@@ -16492,36 +17935,30 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.8.1
+ tslib: 2.6.2
- safe-array-concat@1.1.3:
+ safe-array-concat@1.1.2:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
- has-symbols: 1.1.0
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
isarray: 2.0.5
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
- safe-push-apply@1.0.0:
+ safe-regex-test@1.0.3:
dependencies:
+ call-bind: 1.0.7
es-errors: 1.3.0
- isarray: 2.0.5
-
- safe-regex-test@1.1.0:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- is-regex: 1.2.1
+ is-regex: 1.2.0
safe-regex2@4.0.1:
dependencies:
ret: 0.5.0
- safe-stable-stringify@2.5.0: {}
+ safe-stable-stringify@2.4.3: {}
safer-buffer@2.1.2: {}
@@ -16529,6 +17966,8 @@ snapshots:
dependencies:
truncate-utf8-bytes: 1.0.2
+ sax@1.4.1: {}
+
saxes@6.0.0:
dependencies:
xmlchars: 2.2.0
@@ -16546,9 +17985,9 @@ snapshots:
schema-utils@4.3.0:
dependencies:
'@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1(ajv@8.17.1)
- ajv-keywords: 5.1.0(ajv@8.17.1)
+ ajv: 8.12.0
+ ajv-formats: 2.1.1(ajv@8.12.0)
+ ajv-keywords: 5.1.0(ajv@8.12.0)
secure-json-parse@3.0.2: {}
@@ -16556,9 +17995,12 @@ snapshots:
dependencies:
parseley: 0.12.1
+ semver@5.7.2:
+ optional: true
+
semver@6.3.1: {}
- semver@7.7.1: {}
+ semver@7.6.3: {}
serialize-javascript@6.0.2:
dependencies:
@@ -16566,14 +18008,14 @@ snapshots:
set-blocking@2.0.0: {}
- set-cookie-parser@2.7.1: {}
+ set-cookie-parser@2.6.0: {}
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.7
+ get-intrinsic: 1.2.4
gopd: 1.2.0
has-property-descriptors: 1.0.2
@@ -16584,12 +18026,6 @@ snapshots:
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
- set-proto@1.0.0:
- dependencies:
- dunder-proto: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
-
setimmediate@1.0.5: {}
setprototypeof@1.2.0: {}
@@ -16602,7 +18038,7 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.8.2: {}
+ shell-quote@1.8.1: {}
shelljs.exec@1.1.8: {}
@@ -16612,33 +18048,12 @@ snapshots:
interpret: 1.4.0
rechoir: 0.6.2
- side-channel-list@1.0.0:
+ side-channel@1.0.6:
dependencies:
+ call-bind: 1.0.7
es-errors: 1.3.0
- object-inspect: 1.13.4
-
- side-channel-map@1.0.1:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.4
-
- side-channel-weakmap@1.0.2:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.4
- side-channel-map: 1.0.1
-
- side-channel@1.1.0:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.4
- side-channel-list: 1.0.0
- side-channel-map: 1.0.1
- side-channel-weakmap: 1.0.2
+ get-intrinsic: 1.2.4
+ object-inspect: 1.13.3
signal-exit@3.0.7: {}
@@ -16648,10 +18063,10 @@ snapshots:
slash@3.0.0: {}
- socket.io-adapter@2.5.5:
+ socket.io-adapter@2.5.4:
dependencies:
- debug: 4.3.7
- ws: 8.17.1
+ debug: 4.3.4
+ ws: 8.11.0
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -16659,9 +18074,9 @@ snapshots:
socket.io-client@4.8.1:
dependencies:
- '@socket.io/component-emitter': 3.1.2
- debug: 4.3.7
- engine.io-client: 6.6.3
+ '@socket.io/component-emitter': 3.1.0
+ debug: 4.3.4
+ engine.io-client: 6.6.2
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
@@ -16670,8 +18085,8 @@ snapshots:
socket.io-parser@4.2.4:
dependencies:
- '@socket.io/component-emitter': 3.1.2
- debug: 4.3.7
+ '@socket.io/component-emitter': 3.1.0
+ debug: 4.3.4
transitivePeerDependencies:
- supports-color
@@ -16681,8 +18096,8 @@ snapshots:
base64id: 2.0.0
cors: 2.8.5
debug: 4.3.7
- engine.io: 6.6.4
- socket.io-adapter: 2.5.5
+ engine.io: 6.6.2
+ socket.io-adapter: 2.5.4
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
@@ -16694,16 +18109,16 @@ snapshots:
accepts: 1.3.8
base64id: 2.0.0
cors: 2.8.5
- debug: 4.3.7
- engine.io: 6.6.4
- socket.io-adapter: 2.5.5
+ debug: 4.3.4
+ engine.io: 6.6.2
+ socket.io-adapter: 2.5.4
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- sonic-boom@4.2.0:
+ sonic-boom@4.0.1:
dependencies:
atomic-sleep: 1.0.0
@@ -16759,49 +18174,44 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string.prototype.matchall@4.0.12:
+ string.prototype.matchall@4.0.11:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.5
es-errors: 1.3.0
- es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
gopd: 1.2.0
- has-symbols: 1.1.0
- internal-slot: 1.1.0
- regexp.prototype.flags: 1.5.4
+ has-symbols: 1.0.3
+ internal-slot: 1.0.7
+ regexp.prototype.flags: 1.5.3
set-function-name: 2.0.2
- side-channel: 1.1.0
+ side-channel: 1.0.6
string.prototype.repeat@1.0.0:
dependencies:
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.5
- string.prototype.trim@1.2.10:
+ string.prototype.trim@1.2.9:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- define-data-property: 1.1.4
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
- es-object-atoms: 1.1.1
- has-property-descriptors: 1.0.2
+ es-abstract: 1.23.5
+ es-object-atoms: 1.0.0
- string.prototype.trimend@1.0.9:
+ string.prototype.trimend@1.0.8:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.1.1
+ es-object-atoms: 1.0.0
string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.1.1
+ es-object-atoms: 1.0.0
string_decoder@1.1.1:
dependencies:
@@ -16817,7 +18227,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.1.0
+ ansi-regex: 6.0.1
strip-bom@3.0.0: {}
@@ -16827,7 +18237,12 @@ snapshots:
strip-json-comments@3.1.1: {}
- strnum@1.1.1: {}
+ stripe@17.5.0:
+ dependencies:
+ '@types/node': 22.13.4
+ qs: 6.12.0
+
+ strnum@1.0.5: {}
styled-jsx@5.1.1(@babel/core@7.24.5)(babel-plugin-macros@3.1.0)(react@18.3.1):
dependencies:
@@ -16837,23 +18252,23 @@ snapshots:
'@babel/core': 7.24.5
babel-plugin-macros: 3.1.0
- stylis@4.3.6: {}
+ stylis@4.3.3: {}
- sugarss@4.0.1(postcss@8.5.3):
+ sugarss@4.0.1(postcss@8.4.49):
dependencies:
- postcss: 8.5.3
+ postcss: 8.4.49
superagent@9.0.2:
dependencies:
component-emitter: 1.3.1
cookiejar: 2.1.4
- debug: 4.4.0
+ debug: 4.3.4
fast-safe-stringify: 2.1.1
- form-data: 4.0.2
- formidable: 3.5.2
+ form-data: 4.0.0
+ formidable: 3.5.1
methods: 1.1.2
mime: 2.6.0
- qs: 6.14.0
+ qs: 6.12.0
transitivePeerDependencies:
- supports-color
@@ -16903,14 +18318,16 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
- terser-webpack-plugin@5.3.11(webpack@5.98.0):
+ terser-webpack-plugin@5.3.11(@swc/core@1.5.25(@swc/helpers@0.5.5))(webpack@5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5))):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 4.3.0
serialize-javascript: 6.0.2
terser: 5.39.0
- webpack: 5.98.0
+ webpack: 5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5))
+ optionalDependencies:
+ '@swc/core': 1.5.25(@swc/helpers@0.5.5)
terser@5.39.0:
dependencies:
@@ -16925,11 +18342,11 @@ snapshots:
glob: 7.2.3
minimatch: 3.1.2
- thread-stream@3.1.0:
+ thread-stream@3.0.2:
dependencies:
real-require: 0.2.0
- tinyexec@0.3.2: {}
+ tinyexec@0.3.1: {}
tinyglobby@0.2.12:
dependencies:
@@ -16940,22 +18357,26 @@ snapshots:
dependencies:
'@popperjs/core': 2.11.8
- tiptap-extension-global-drag-handle@0.1.18: {}
+ tiptap-extension-global-drag-handle@0.1.16: {}
- tldts-core@6.1.78: {}
+ tldts-core@6.1.72: {}
- tldts@6.1.78:
+ tldts@6.1.72:
dependencies:
- tldts-core: 6.1.78
+ tldts-core: 6.1.72
tmp@0.0.33:
dependencies:
os-tmpdir: 1.0.2
- tmp@0.2.3: {}
+ tmp@0.2.1:
+ dependencies:
+ rimraf: 3.0.2
tmpl@1.0.5: {}
+ to-fast-properties@2.0.0: {}
+
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
@@ -16964,9 +18385,9 @@ snapshots:
toidentifier@1.0.1: {}
- tough-cookie@5.1.1:
+ tough-cookie@5.1.0:
dependencies:
- tldts: 6.1.78
+ tldts: 6.1.72
tr46@0.0.3: {}
@@ -16978,7 +18399,11 @@ snapshots:
truncate-utf8-bytes@1.0.2:
dependencies:
- utf8-byte-length: 1.0.5
+ utf8-byte-length: 1.0.4
+
+ ts-api-utils@1.3.0(typescript@5.7.2):
+ dependencies:
+ typescript: 5.7.2
ts-api-utils@2.0.1(typescript@5.7.3):
dependencies:
@@ -16986,45 +18411,45 @@ snapshots:
ts-dedent@2.2.0: {}
- ts-jest@29.2.5(@babel/core@7.26.9)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.9))(jest@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3)))(typescript@5.7.3):
+ ts-jest@29.2.5(@babel/core@7.24.3)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.3))(jest@29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3)))(typescript@5.7.3):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3))
+ jest: 29.7.0(@types/node@22.13.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
- semver: 7.7.1
+ semver: 7.6.3
typescript: 5.7.3
yargs-parser: 21.1.1
optionalDependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.24.3
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.26.9)
+ babel-jest: 29.7.0(@babel/core@7.24.3)
- ts-loader@9.5.2(typescript@5.7.3)(webpack@5.98.0):
+ ts-loader@9.5.2(typescript@5.7.3)(webpack@5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5))):
dependencies:
chalk: 4.1.2
- enhanced-resolve: 5.18.1
+ enhanced-resolve: 5.17.1
micromatch: 4.0.8
- semver: 7.7.1
+ semver: 7.6.3
source-map: 0.7.4
typescript: 5.7.3
- webpack: 5.98.0
+ webpack: 5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5))
- ts-node@10.9.1(@types/node@22.13.4)(typescript@5.7.3):
+ ts-node@10.9.1(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
+ '@tsconfig/node10': 1.0.9
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 22.13.4
acorn: 8.14.0
- acorn-walk: 8.3.4
+ acorn-walk: 8.3.2
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
@@ -17032,17 +18457,19 @@ snapshots:
typescript: 5.7.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
+ optionalDependencies:
+ '@swc/core': 1.5.25(@swc/helpers@0.5.5)
- ts-node@10.9.2(@types/node@22.13.4)(typescript@5.7.3):
+ ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.5))(@types/node@22.13.4)(typescript@5.7.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
+ '@tsconfig/node10': 1.0.9
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 22.13.4
- acorn: 8.14.0
- acorn-walk: 8.3.4
+ acorn: 8.11.3
+ acorn-walk: 8.3.2
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
@@ -17050,11 +18477,13 @@ snapshots:
typescript: 5.7.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
+ optionalDependencies:
+ '@swc/core': 1.5.25(@swc/helpers@0.5.5)
tsconfig-paths-webpack-plugin@4.2.0:
dependencies:
chalk: 4.1.2
- enhanced-resolve: 5.18.1
+ enhanced-resolve: 5.17.1
tapable: 2.2.1
tsconfig-paths: 4.2.0
@@ -17064,12 +18493,16 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
+ tslib@2.6.2: {}
+
+ tslib@2.8.0: {}
+
tslib@2.8.1: {}
tsx@4.19.3:
dependencies:
esbuild: 0.25.0
- get-tsconfig: 4.10.0
+ get-tsconfig: 4.7.5
optionalDependencies:
fsevents: 2.3.3
@@ -17085,88 +18518,109 @@ snapshots:
type-fest@0.21.3: {}
- type-fest@4.35.0: {}
+ type-fest@4.28.1: {}
- typed-array-buffer@1.0.3:
+ typed-array-buffer@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-typed-array: 1.1.15
+ is-typed-array: 1.1.13
- typed-array-byte-length@1.0.3:
+ typed-array-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.8
- for-each: 0.3.5
+ call-bind: 1.0.7
+ for-each: 0.3.3
gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
- typed-array-byte-offset@1.0.4:
+ typed-array-byte-offset@1.0.3:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- for-each: 0.3.5
+ call-bind: 1.0.7
+ for-each: 0.3.3
gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
- reflect.getprototypeof: 1.0.10
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ reflect.getprototypeof: 1.0.7
typed-array-length@1.0.7:
dependencies:
- call-bind: 1.0.8
- for-each: 0.3.5
+ call-bind: 1.0.7
+ for-each: 0.3.3
gopd: 1.2.0
- is-typed-array: 1.1.15
- possible-typed-array-names: 1.1.0
- reflect.getprototypeof: 1.0.10
+ is-typed-array: 1.1.13
+ possible-typed-array-names: 1.0.0
+ reflect.getprototypeof: 1.0.7
- typescript-eslint@8.24.1(eslint@9.20.1)(typescript@5.7.3):
+ typescript-eslint@8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1)(typescript@5.7.3))(eslint@9.20.1)(typescript@5.7.3)
- '@typescript-eslint/parser': 8.24.1(eslint@9.20.1)(typescript@5.7.3)
- '@typescript-eslint/utils': 8.24.1(eslint@9.20.1)(typescript@5.7.3)
- eslint: 9.20.1
+ '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
+ '@typescript-eslint/parser': 8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.17.0(eslint@9.15.0(jiti@1.21.0))(typescript@5.7.2)
+ eslint: 9.15.0(jiti@1.21.0)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ typescript-eslint@8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3):
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3))(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)
+ '@typescript-eslint/parser': 8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.24.1(eslint@9.20.1(jiti@1.21.0))(typescript@5.7.3)
+ eslint: 9.20.1(jiti@1.21.0)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
+ typescript@5.7.2: {}
+
typescript@5.7.3: {}
uc.micro@2.1.0: {}
ufo@1.5.4: {}
+ uid2@0.0.4: {}
+
uid2@1.0.0: {}
uid@2.0.2:
dependencies:
'@lukeed/csprng': 1.1.0
- unbox-primitive@1.1.0:
+ unbox-primitive@1.0.2:
dependencies:
- call-bound: 1.0.3
- has-bigints: 1.1.0
- has-symbols: 1.1.0
- which-boxed-primitive: 1.1.1
+ call-bind: 1.0.7
+ has-bigints: 1.0.2
+ has-symbols: 1.0.3
+ which-boxed-primitive: 1.1.0
undici-types@6.20.0: {}
- unicode-canonical-property-names-ecmascript@2.0.1: {}
+ unicode-canonical-property-names-ecmascript@2.0.0: {}
unicode-match-property-ecmascript@2.0.0:
dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.1
+ unicode-canonical-property-names-ecmascript: 2.0.0
unicode-property-aliases-ecmascript: 2.1.0
- unicode-match-property-value-ecmascript@2.2.0: {}
+ unicode-match-property-value-ecmascript@2.1.0: {}
unicode-property-aliases-ecmascript@2.1.0: {}
universalify@2.0.1: {}
- update-browserslist-db@1.1.2(browserslist@4.24.4):
+ update-browserslist-db@1.0.13(browserslist@4.23.0):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.23.0
+ escalade: 3.1.1
+ picocolors: 1.0.0
+
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
+ dependencies:
+ browserslist: 4.24.2
escalade: 3.2.0
picocolors: 1.1.1
@@ -17174,45 +18628,43 @@ snapshots:
dependencies:
punycode: 2.3.1
- use-callback-ref@1.3.3(@types/react@18.3.18)(react@18.3.1):
+ use-callback-ref@1.3.3(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
tslib: 2.8.1
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
- use-composed-ref@1.4.0(@types/react@18.3.18)(react@18.3.1):
+ use-composed-ref@1.3.0(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+
+ use-isomorphic-layout-effect@1.1.2(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
- use-isomorphic-layout-effect@1.2.0(@types/react@18.3.18)(react@18.3.1):
+ use-latest@1.2.1(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.12)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
- use-latest@1.3.0(@types/react@18.3.18)(react@18.3.1):
- dependencies:
- react: 18.3.1
- use-isomorphic-layout-effect: 1.2.0(@types/react@18.3.18)(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.18
-
- use-sidecar@1.1.3(@types/react@18.3.18)(react@18.3.1):
+ use-sidecar@1.1.3(@types/react@18.3.12)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
tslib: 2.8.1
optionalDependencies:
- '@types/react': 18.3.18
+ '@types/react': 18.3.12
- use-sync-external-store@1.4.0(react@18.3.1):
+ use-sync-external-store@1.2.2(react@18.3.1):
dependencies:
react: 18.3.1
- utf8-byte-length@1.0.5: {}
+ utf8-byte-length@1.0.4: {}
util-deprecate@1.0.2: {}
@@ -17224,27 +18676,31 @@ snapshots:
v8-compile-cache-lib@3.0.1: {}
- v8-to-istanbul@9.3.0:
+ v8-to-istanbul@9.2.0:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
- validate-npm-package-name@5.0.1: {}
+ validate-npm-package-name@5.0.0:
+ dependencies:
+ builtins: 5.0.1
validator@13.12.0: {}
vary@1.1.2: {}
- vite@6.1.1(@types/node@22.10.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0):
+ vite@6.1.0(@types/node@22.10.0)(jiti@1.21.0)(less@4.2.0)(sugarss@4.0.1(postcss@8.4.49))(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0):
dependencies:
esbuild: 0.24.2
- postcss: 8.5.3
- rollup: 4.34.8
+ postcss: 8.5.2
+ rollup: 4.34.7
optionalDependencies:
'@types/node': 22.10.0
fsevents: 2.3.3
- sugarss: 4.0.1(postcss@8.5.3)
+ jiti: 1.21.0
+ less: 4.2.0
+ sugarss: 4.0.1(postcss@8.4.49)
terser: 5.39.0
tsx: 4.19.3
yaml: 2.7.0
@@ -17278,7 +18734,7 @@ snapshots:
dependencies:
makeerror: 1.0.12
- watchpack@2.4.2:
+ watchpack@2.4.1:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -17295,7 +18751,7 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack@5.98.0:
+ webpack@5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5)):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
@@ -17303,10 +18759,10 @@ snapshots:
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.14.0
- browserslist: 4.24.4
- chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.1
- es-module-lexer: 1.6.0
+ browserslist: 4.24.2
+ chrome-trace-event: 1.0.3
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 1.4.2
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -17317,8 +18773,8 @@ snapshots:
neo-async: 2.6.2
schema-utils: 4.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.11(webpack@5.98.0)
- watchpack: 2.4.2
+ terser-webpack-plugin: 5.3.11(@swc/core@1.5.25(@swc/helpers@0.5.5))(webpack@5.98.0(@swc/core@1.5.25(@swc/helpers@0.5.5)))
+ watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
@@ -17333,7 +18789,7 @@ snapshots:
whatwg-mimetype@4.0.0: {}
- whatwg-url@14.1.1:
+ whatwg-url@14.0.0:
dependencies:
tr46: 5.0.0
webidl-conversions: 7.0.0
@@ -17343,43 +18799,42 @@ snapshots:
tr46: 0.0.3
webidl-conversions: 3.0.1
- which-boxed-primitive@1.1.1:
+ which-boxed-primitive@1.1.0:
dependencies:
is-bigint: 1.1.0
- is-boolean-object: 1.2.2
- is-number-object: 1.1.1
- is-string: 1.1.1
- is-symbol: 1.1.1
+ is-boolean-object: 1.2.0
+ is-number-object: 1.1.0
+ is-string: 1.1.0
+ is-symbol: 1.1.0
- which-builtin-type@1.2.1:
+ which-builtin-type@1.2.0:
dependencies:
- call-bound: 1.0.3
- function.prototype.name: 1.1.8
+ call-bind: 1.0.7
+ function.prototype.name: 1.1.6
has-tostringtag: 1.0.2
- is-async-function: 2.1.1
- is-date-object: 1.1.0
- is-finalizationregistry: 1.1.1
- is-generator-function: 1.1.0
- is-regex: 1.2.1
- is-weakref: 1.1.1
+ is-async-function: 2.0.0
+ is-date-object: 1.0.5
+ is-finalizationregistry: 1.1.0
+ is-generator-function: 1.0.10
+ is-regex: 1.2.0
+ is-weakref: 1.0.2
isarray: 2.0.5
- which-boxed-primitive: 1.1.1
+ which-boxed-primitive: 1.1.0
which-collection: 1.0.2
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.16
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.4
+ is-weakset: 2.0.3
- which-typed-array@1.1.18:
+ which-typed-array@1.1.16:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- call-bound: 1.0.3
- for-each: 0.3.5
+ call-bind: 1.0.7
+ for-each: 0.3.3
gopd: 1.2.0
has-tostringtag: 1.0.2
@@ -17395,8 +18850,6 @@ snapshots:
dependencies:
string-width: 4.2.3
- word-wrap@1.2.5: {}
-
wrap-ansi@6.2.0:
dependencies:
ansi-styles: 4.3.0
@@ -17422,36 +18875,65 @@ snapshots:
imurmurhash: 0.1.4
signal-exit: 3.0.7
+ ws@8.11.0: {}
+
ws@8.17.1: {}
- ws@8.18.1: {}
+ ws@8.18.0: {}
+
+ xml-crypto@6.0.0:
+ dependencies:
+ '@xmldom/is-dom-node': 1.0.1
+ '@xmldom/xmldom': 0.8.10
+ xpath: 0.0.33
+
+ xml-encryption@3.1.0:
+ dependencies:
+ '@xmldom/xmldom': 0.8.10
+ escape-html: 1.0.3
+ xpath: 0.0.32
xml-name-validator@5.0.0: {}
+ xml2js@0.6.2:
+ dependencies:
+ sax: 1.4.1
+ xmlbuilder: 11.0.1
+
+ xmlbuilder@11.0.1: {}
+
+ xmlbuilder@15.1.1: {}
+
xmlchars@2.2.0: {}
xmlhttprequest-ssl@2.1.2: {}
+ xpath@0.0.32: {}
+
+ xpath@0.0.33: {}
+
+ xpath@0.0.34: {}
+
xtend@4.0.2: {}
- y-indexeddb@9.0.12(yjs@13.6.23):
+ y-indexeddb@9.0.12(yjs@13.6.20):
dependencies:
- lib0: 0.2.99
- yjs: 13.6.23
+ lib0: 0.2.88
+ yjs: 13.6.20
- y-prosemirror@1.2.15(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23):
+ y-prosemirror@1.2.3(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.0)(y-protocols@1.0.6(yjs@13.6.20))(yjs@13.6.20):
dependencies:
- lib0: 0.2.99
- prosemirror-model: 1.24.1
+ lib0: 0.2.98
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
- prosemirror-view: 1.38.0
- y-protocols: 1.0.6(yjs@13.6.23)
- yjs: 13.6.23
+ prosemirror-view: 1.37.0
+ y-protocols: 1.0.6(yjs@13.6.20)
+ yjs: 13.6.20
- y-protocols@1.0.6(yjs@13.6.23):
+ y-protocols@1.0.6(yjs@13.6.20):
dependencies:
- lib0: 0.2.99
- yjs: 13.6.23
+ lib0: 0.2.98
+ yjs: 13.6.20
y18n@5.0.8: {}
@@ -17468,16 +18950,16 @@ snapshots:
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.2.0
+ escalade: 3.1.1
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
y18n: 5.0.8
yargs-parser: 21.1.1
- yjs@13.6.23:
+ yjs@13.6.20:
dependencies:
- lib0: 0.2.99
+ lib0: 0.2.98
yn@3.1.1: {}
@@ -17490,4 +18972,4 @@ snapshots:
css-what: 6.1.0
entities: 5.0.0
- zod@3.24.2: {}
+ zod@3.23.8: {}