diff --git a/website/next.config.js b/website/next.config.js
index 60499530268c4..d50b4b743d9b1 100644
--- a/website/next.config.js
+++ b/website/next.config.js
@@ -6,6 +6,9 @@ export default withGuildDocs({
eslint: {
ignoreDuringBuilds: true,
},
+ nextraConfig: {
+ autoImportThemeStyle: false,
+ },
redirects: () =>
Object.entries({
'/api': '/docs',
diff --git a/website/package.json b/website/package.json
index 16564d6ee4854..34f1270250fcb 100644
--- a/website/package.json
+++ b/website/package.json
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@theguild/components": "^7.0.0",
+ "@theguild/components": "^7.6.0",
"next": "^15.0.0",
"next-sitemap": "^4.2.3",
"react": "^19.0.0",
diff --git a/website/public/assets/graphql-logo.svg b/website/public/assets/graphql-logo.svg
deleted file mode 100644
index b568a10410dfd..0000000000000
--- a/website/public/assets/graphql-logo.svg
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/public/assets/mesh-diagram.svg b/website/public/assets/mesh-diagram.svg
deleted file mode 100644
index 05cf9135a4559..0000000000000
--- a/website/public/assets/mesh-diagram.svg
+++ /dev/null
@@ -1,330 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/public/assets/mesh-example.png b/website/public/assets/mesh-example.png
deleted file mode 100644
index 0746c55ffb5d3..0000000000000
Binary files a/website/public/assets/mesh-example.png and /dev/null differ
diff --git a/website/public/assets/open-source.svg b/website/public/assets/open-source.svg
deleted file mode 100644
index 62362ebe42759..0000000000000
--- a/website/public/assets/open-source.svg
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/public/codesandbox-iframe.html b/website/public/codesandbox-iframe.html
new file mode 100644
index 0000000000000..1e4fe57f87660
--- /dev/null
+++ b/website/public/codesandbox-iframe.html
@@ -0,0 +1,51 @@
+
+
+
+
+
+ GraphQL Mesh Example
+
+
+
+ JavaScript is required to load the example.
+
+
+
+
diff --git a/website/public/favicon.ico b/website/public/favicon.ico
deleted file mode 100644
index d17615c39b27d..0000000000000
Binary files a/website/public/favicon.ico and /dev/null differ
diff --git a/website/public/favicon.svg b/website/public/favicon.svg
new file mode 100644
index 0000000000000..1f6baf3883f43
--- /dev/null
+++ b/website/public/favicon.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/website/src/components/comparison-table/index.tsx b/website/src/components/comparison-table/index.tsx
index 0a9ea6e503e0e..2147232c6ee3b 100644
--- a/website/src/components/comparison-table/index.tsx
+++ b/website/src/components/comparison-table/index.tsx
@@ -90,17 +90,21 @@ const headers = Object.keys(data[0]);
export interface ComparisonTableProps extends React.HTMLAttributes {}
export function ComparisonTable({ children, className, ...rest }: ComparisonTableProps) {
return (
-
-
+
+
-
-
+ {/* this is focusable (by default) because a keyboard user will scroll through the overflowing table with arrows */}
+
+
{headers.map(header => (
diff --git a/website/src/components/datasources-illustration/index.tsx b/website/src/components/datasources-illustration/index.tsx
new file mode 100644
index 0000000000000..1856cead3fb59
--- /dev/null
+++ b/website/src/components/datasources-illustration/index.tsx
@@ -0,0 +1,160 @@
+import { ReactNode } from 'react';
+import { cn, Heading, PRODUCTS, Stud } from '@theguild/components';
+
+export function DatasourcesIllustration({ className }: { className?: string }) {
+ return (
+
+
+
+ Connect datasources
+
+
+ Transform non-GraphQL services into GraphQL-ready interfaces with Mesh, enhancing API
+ consistency.
+
+
+ {[
+ {
+ icon: ,
+ text: 'Automate the creation of type-safe GraphQL APIs from any data source, ensuring reliability and developer efficiency.',
+ },
+ {
+ icon: ,
+ text: 'Enhance data sources by integrating additional data with full type safety, using Mesh.',
+ },
+ {
+ icon: ,
+ text: 'Extend the capabilities of your schema with Mesh by mocking, caching, and transforming data seamlessly.',
+ },
+ ].map(({ icon, text }) => (
+
+ {icon}
+ {text}
+
+ ))}
+
+
+
+
+
+
+ );
+}
+
+function Illustration({ className }: { className?: string }) {
+ return (
+
+ Mobile App
+ Web App
+ Node.js Client
+
+
+
+
+
+
+
+ Books Rest API
+
+ Authors gRPC API
+
+
+ Stores GraphQL API
+
+
+ );
+}
+
+function SmallNode({ children, className }: { children: ReactNode; className?: string }) {
+ return (
+
+ );
+}
+
+function Diagonal({
+ variant,
+ className,
+}: {
+ variant: 'left' | 'middle' | 'right';
+ className?: string;
+}) {
+ if (variant === 'middle') {
+ return
;
+ }
+
+ return (
+
+
+
+ );
+}
+
+function TiltMeterIcon() {
+ return (
+
+
+
+ );
+}
+
+function PaperclipIcon() {
+ return (
+
+
+
+ );
+}
+
+function ScanLine() {
+ return (
+
+
+
+ );
+}
diff --git a/website/src/components/datasources-list-section.tsx b/website/src/components/datasources-list-section.tsx
new file mode 100644
index 0000000000000..291bda4e9e703
--- /dev/null
+++ b/website/src/components/datasources-list-section.tsx
@@ -0,0 +1,111 @@
+import { Fragment } from 'react';
+import {
+ Anchor,
+ ArrowIcon,
+ cn,
+ DecorationIsolation,
+ Heading,
+ MeshIcon,
+} from '@theguild/components';
+
+const datasources = [
+ {
+ name: 'GraphQL',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/graphql',
+ },
+ {
+ name: 'OpenAPI',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/openapi',
+ },
+ {
+ name: 'gRPC',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/grpc',
+ },
+ {
+ name: 'JSON Schema',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/json-schema',
+ },
+ {
+ name: 'SOAP',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/soap',
+ },
+ {
+ name: 'OData',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/odata',
+ },
+ {
+ name: 'Thrift',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/thrift',
+ },
+ {
+ name: 'SQLite',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/sqlite',
+ },
+ {
+ name: 'MySQL',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/mysql',
+ },
+ {
+ name: 'Neo4j',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/neo4j',
+ },
+ {
+ name: 'PostgreSQL',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/postgres',
+ },
+ {
+ name: 'MongoDB',
+ href: 'https://the-guild.dev/graphql/mesh/v1/source-handlers/mongodb',
+ },
+];
+
+export function DatasourcesListSection(props: React.HTMLAttributes) {
+ return (
+
+
+
+
+
+ Query anything
+
+
+ Deploy Mesh across any JavaScript environment, powered by its versatile Fetch API
+ compatibility.
+
+
+ {datasources.map((datasource, i) => (
+
+ {i === Math.floor(datasources.length / 2) + 1 && (
+
+ )}
+
+
+ {datasource.name}
+
+
+
+
+ ))}
+
+
+ );
+}
diff --git a/website/src/components/examples-sandbox.tsx b/website/src/components/examples-sandbox.tsx
new file mode 100644
index 0000000000000..f742791ff48e3
--- /dev/null
+++ b/website/src/components/examples-sandbox.tsx
@@ -0,0 +1,144 @@
+'use client';
+
+import { useEffect, useRef, useState } from 'react';
+import { useRouter } from 'next/router';
+import { CaretSlimIcon, cn } from '@theguild/components';
+
+export const EXAMPLES = {
+ OpenAPI: {
+ 'JavaScript Wiki': 'openapi-javascript-wiki',
+ 'Location Weather': 'openapi-location-weather',
+ YouTrack: 'openapi-youtrack',
+ Stripe: 'openapi-stripe',
+ StackExchange: 'openapi-stackexchange',
+ 'WeatherBit on React App': 'openapi-react-weatherbit',
+ 'NextJS with Apollo': 'nextjs-apollo-example',
+ },
+ 'JSON Schema': {
+ 'Fake API': 'json-schema-example',
+ 'Covid-19 Statistics': 'json-schema-covid',
+ 'Subscriptions, Webhooks & Live Queries': 'json-schema-subscriptions',
+ },
+ OData: {
+ TripPin: 'odata-trippin',
+ 'Microsoft Graph': 'odata-microsoft',
+ },
+ SOAP: {
+ 'Country Info': 'soap-country-info',
+ },
+ MySQL: {
+ Rfam: 'mysql-rfam',
+ },
+ SQLite: {
+ Chinook: 'sqlite-chinook',
+ },
+ 'Apollo Federation': {
+ 'Apollo Federation Example': 'federation-example',
+ },
+ 'Apache Thrift': {
+ Calculator: 'thrift-calculator',
+ },
+ gRPC: {
+ 'Movies Example': 'grpc-example',
+ },
+ Neo4J: {
+ 'Movies Example': 'neo4j-example',
+ },
+};
+
+/**
+ * These options won't work if the Sandbox is a DevBox (not Legacy).
+ * @see https://codesandbox.io/docs/learn/sandboxes/embedding
+ */
+const CODESANDBOX_OPTIONS = {
+ codemirror: '1',
+ hidedevtools: '1',
+ hidenavigation: '1',
+ view: 'editor',
+ module: '%2F.meshrc.yml',
+};
+
+export interface ExamplesSandboxProps extends React.HTMLAttributes {
+ lazy?: boolean;
+ border?: boolean;
+}
+
+export function ExamplesSandbox({ lazy = false, border = false, ...rest }: ExamplesSandboxProps) {
+ const [exampleDir, setExampleDir] = useState('json-schema-example');
+ const [isVisible, setIsVisible] = useState(!lazy);
+ const containerRef = useRef(null!);
+
+ useEffect(() => {
+ if (isVisible) return;
+
+ const observer = new IntersectionObserver(
+ entries => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ setIsVisible(true);
+ observer.disconnect();
+ }
+ });
+ },
+ {
+ rootMargin: '100px',
+ threshold: 0.1,
+ },
+ );
+
+ observer.observe(containerRef.current);
+
+ return () => observer.disconnect();
+ }, []);
+
+ const { basePath } = useRouter();
+
+ const iframeSrc = `${basePath}/codesandbox-iframe.html?example=${exampleDir}`;
+
+ return (
+
+
+ Choose Live Example:
+
{
+ setExampleDir(e.target.value);
+ }}
+ className="bg-inherit hive-focus w-[200px] cursor-pointer px-3 pr-8 p-2 border-beige-400 dark:border-neutral-800 border rounded-lg hover:bg-beige-100 dark:hover:bg-neutral-900 appearance-none"
+ >
+ {Object.entries(EXAMPLES).map(([groupName, group]) => (
+
+ {Object.entries(group).map(([exampleName, value]) => (
+
+ {exampleName}
+
+ ))}
+
+ ))}
+
+
+
+
+
+
+ {isVisible && (
+
+ )}
+
+
+ );
+}
diff --git a/website/src/components/examples-section.tsx b/website/src/components/examples-section.tsx
new file mode 100644
index 0000000000000..e553d55449af6
--- /dev/null
+++ b/website/src/components/examples-section.tsx
@@ -0,0 +1,21 @@
+import { cn, Heading } from '@theguild/components';
+import { ExamplesSandbox } from './examples-sandbox';
+
+export interface ExamplesSectionProps extends React.HTMLAttributes {}
+
+export function ExamplesSection(props: ExamplesSectionProps) {
+ return (
+
+
+ See live examples in action
+
+
+
+ );
+}
diff --git a/website/src/components/hero.tsx b/website/src/components/hero.tsx
new file mode 100644
index 0000000000000..e5d06d7268394
--- /dev/null
+++ b/website/src/components/hero.tsx
@@ -0,0 +1,42 @@
+import { cn } from '@theguild/components';
+
+// TODO: Move these to `@theguild/components` and remove from here, Codegen and Hive.
+
+export interface HeroContainerProps extends React.HTMLAttributes {}
+export function HeroContainer(props: HeroContainerProps) {
+ return (
+
+ );
+}
+
+export interface HeroLinksProps extends React.HTMLAttributes {}
+export function HeroLinks(props: HeroLinksProps) {
+ return (
+
+ );
+}
+
+export interface HeroFeaturesProps extends React.HTMLAttributes {}
+export function HeroFeatures(props: HeroFeaturesProps) {
+ return (
+ li]:flex [&>li]:items-center [&>li]:gap-2',
+ props.className,
+ )}
+ />
+ );
+}
diff --git a/website/src/components/index-page.tsx b/website/src/components/index-page.tsx
index ce9c3a491aa2d..c9a772a655129 100644
--- a/website/src/components/index-page.tsx
+++ b/website/src/components/index-page.tsx
@@ -1,370 +1,30 @@
-import { PropsWithChildren, ReactElement } from 'react';
-import Image from 'next/image';
-import { FiArrowRightCircle, FiCheckCircle, FiGithub, FiLink, FiTarget } from 'react-icons/fi';
-import graphqlLogo from '@/public/assets/graphql-logo.svg';
-import meshDiagram from '@/public/assets/mesh-diagram.svg';
-import meshExampleLogo from '@/public/assets/mesh-example.png';
-import openSourceLogo from '@/public/assets/open-source.svg';
-import { Anchor } from '@theguild/components';
-
-const ButtonLink = ({ children, ...props }: React.ComponentProps) => {
- return (
-
- {children}
-
- );
-};
-
-function Hero() {
- return (
-
-
-
- GraphQL Mesh
-
-
- The Graph of Everything
-
-
- Federated architecture for any API service
-
-
- Documentation
- {/*
- Examples
- */}
-
- GitHub
-
- {/* TODO: this button causes hydration error */}
- {/*
-
- */}
-
-
-
- );
-}
-
-const FeatureWrapperClass = `
- w-full py-24
- odd:bg-gray-50
- odd:dark:bg-gray-900
- even:bg-white
- even:dark:bg-black
-`;
-
-const gradients: [string, string][] = [
- ['#ff9472', '#f2709c'],
- ['#4776e6', '#8e54e9'],
- ['#f857a6', '#ff5858'],
- ['#4ac29a', '#bdfff3'],
- ['#00c6ff', '#0072ff'],
-];
-
-const Highlight = {
- Root: 'flex flex-row md:flex-col lg:flex-row flex-1 gap-6',
- Icon: 'w-16 h-16 text-teal-700 flex-shrink-0 flex items-center',
- Content: 'flex flex-col text-black dark:text-white',
- Title: 'text-xl font-semibold',
- Description: 'text-gray-600 dark:text-gray-400',
-};
-
-function pickGradient(i: number) {
- const gradient = gradients[i % gradients.length];
-
- if (!gradient) {
- throw new Error('No gradient found');
- }
-
- return gradient;
-}
-
-function FeatureWrapper({ children }: PropsWithChildren) {
- return {children}
;
-}
-
-function Feature(
- props: PropsWithChildren<{
- title: string;
- description: React.ReactNode;
- highlights?: Array<{
- title: string;
- description: React.ReactNode;
- icon?: React.ReactNode;
- }>;
- image?: string | React.ReactNode;
- gradient: number;
- flipped?: boolean;
- }>,
-) {
- const { title, description, children, image, gradient, flipped } = props;
- const [start, end] = pickGradient(gradient);
-
- return (
-
-
-
-
-
- {title}
-
-
{description}
-
- {image && (
-
- {typeof image === 'string' ? (
-
- ) : (
- image
- )}
-
- )}
-
- {children}
-
-
- );
-}
-
-function FeatureHighlights(props: {
- textColor?: string;
- highlights?: Array<{
- title: string;
- description: React.ReactNode;
- icon?: React.ReactNode;
- link?: string;
- }>;
-}) {
- const { highlights, textColor } = props;
-
- return Array.isArray(highlights) && highlights.length > 0 ? (
- <>
- {highlights.map(({ title, description, icon, link }, i) => (
-
-
- {icon &&
{icon}
}
-
-
- {title}
-
-
{description}
-
-
-
- ))}
- >
- ) : null;
-}
-
-const datasources: Array = [
- 'OpenAPI/Swagger',
- 'oData',
- 'gRPC',
- 'MongoDB',
- 'Postgres',
- 'SOAP',
- 'MySQL',
- 'JSON Schema',
- 'Postgraphile',
- 'Neo4j',
- 'SQLite',
- '& More...',
-];
+import { ReactElement } from 'react';
+import { ToolsAndLibrariesCards } from '@theguild/components';
+import { CapabilitiesSection } from './capabilities-section';
+import { ComparisonTable } from './comparison-table';
+import { DatasourcesIllustration } from './datasources-illustration';
+import { DatasourcesListSection } from './datasources-list-section';
+import { ExamplesSection } from './examples-section';
+import { InfoCardsSection } from './info-cards-section';
+import { LandingPageContainer } from './landing-page-container';
+import { ManipulateDataSection } from './manipulate-data-section';
+import { MeshHero } from './mesh-hero';
+import { RunAnywhereSection } from './run-anywhere-section';
export function IndexPage(): ReactElement {
return (
-
-
-
-
-
-
- Mesh is a framework that helps shape and build an executable GraphQL schema from
- multiple data sources.
-
-
- }
- gradient={0}
- >
-
-
- ),
- },
- {
- title: 'OmniGraph',
- description: 'GraphQL Mesh compose sources as a single GraphQL schema',
- icon: (
-
- ),
- },
- {
- title: 'Open Source',
- description:
- 'GraphQL Mesh is free and open-source, and been built with the community. You can contribute, extend and have your custom logic easily.',
- icon: (
-
- ),
- },
- ]}
- />
-
-
-
- Using source handlers, you can consume any API in GraphQL Mesh
-
- }
- gradient={1}
- >
-
- {datasources.map((datasource, i) => (
-
-
-
-
- {datasource}
-
-
-
- ))}
-
-
-
-
-
Work with services that aren't GraphQL as if they were.
-
-
- ,
- },
- {
- title: 'Extend datasource',
- description: 'with the data from another - fully type safe',
- icon: ,
- },
- {
- title: 'Mock, cache and transform',
- description: 'your entire schema',
- icon: ,
- },
- ]}
- />
-
-
- }
- image={ }
- gradient={2}
- />
-
-
-
-
- Manipulate data
-
-
- Easily transform your schema
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ {/* TODO: Frequently Asked Questions requires a version bump of @theguild/components */}
+
);
}
diff --git a/website/src/components/info-cards-section.tsx b/website/src/components/info-cards-section.tsx
index aa2457cfd5b42..c6283a47597e3 100644
--- a/website/src/components/info-cards-section.tsx
+++ b/website/src/components/info-cards-section.tsx
@@ -2,7 +2,7 @@ import { Heading, InfoCard } from '@theguild/components';
export function InfoCardsSection() {
return (
-
+
Query anything, run anywhere
diff --git a/website/src/components/landing-page-container.tsx b/website/src/components/landing-page-container.tsx
new file mode 100644
index 0000000000000..4b1f3947b6eec
--- /dev/null
+++ b/website/src/components/landing-page-container.tsx
@@ -0,0 +1,43 @@
+import { useEffect, useLayoutEffect } from 'react';
+
+const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;
+
+export function LandingPageContainer(props: React.HTMLAttributes) {
+ useIsomorphicLayoutEffect(() => {
+ // We add .light class to body to style the Headless UI
+ // portal containing search results.
+ document.body.classList.add('light');
+
+ return () => {
+ document.body.classList.remove('light');
+ };
+ }, []);
+
+ return (
+ <>
+
+
+ {props.children}
+
+ >
+ );
+}
diff --git a/website/src/components/mesh-hero-badge.svg b/website/src/components/mesh-hero-badge.svg
new file mode 100644
index 0000000000000..62e9ed3bce992
--- /dev/null
+++ b/website/src/components/mesh-hero-badge.svg
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/website/src/components/mesh-hero.tsx b/website/src/components/mesh-hero.tsx
new file mode 100644
index 0000000000000..49ac5ae9aaf8a
--- /dev/null
+++ b/website/src/components/mesh-hero.tsx
@@ -0,0 +1,177 @@
+import Image from 'next/image';
+import {
+ CallToAction,
+ CheckIcon,
+ cn,
+ DecorationIsolation,
+ GitHubIcon,
+ Heading,
+ MeshIcon,
+} from '@theguild/components';
+import { HeroContainer, HeroContainerProps, HeroFeatures, HeroLinks } from './hero';
+
+export function MeshHero(props: HeroContainerProps) {
+ return (
+
+
+
+
+ GraphQL Mesh
+
+
+ Unify your API landscape with Mesh’s federated architecture, integrating any API service
+ into a cohesive graph.
+
+
+
+
+ Compose any API
+
+
+
+ Granular field access
+
+
+
+ Works with any schema registry
+
+
+
+
+ Get started
+
+
+
+ GitHub
+
+
+
+ );
+}
+
+function MeshDecorations() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+/**
+ * This is inlined here for Safari, because it renders .svg in tags in a blurry way.
+ */
+function MeshLogoStylized(props: React.SVGProps) {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/website/src/components/run-anywhere-section.tsx b/website/src/components/run-anywhere-section.tsx
index 29a3a7208fb6e..3b89b3038cd64 100644
--- a/website/src/components/run-anywhere-section.tsx
+++ b/website/src/components/run-anywhere-section.tsx
@@ -2,12 +2,13 @@ import { Anchor, ArrowIcon, cn, Heading } from '@theguild/components';
export interface RunAnywhereSectionProps extends React.HTMLAttributes {}
-export function RunAnywhereSection({ className, ...props }: RunAnywhereSectionProps) {
+export function RunAnywhereSection(props: RunAnywhereSectionProps) {
return (
@@ -20,25 +21,43 @@ export function RunAnywhereSection({ className, ...props }: RunAnywhereSectionPr
-
+
Node.js
Bun
-
+
Docker
-
+
Cloudflare Workers
-
+
AWS Lambda
-
+
Google Cloud Platform
-
+
Azure Functions
@@ -52,6 +71,7 @@ export function RunAnywhereSection({ className, ...props }: RunAnywhereSectionPr
Fastify
+
Koa
@@ -69,11 +89,24 @@ export function RunAnywhereSection({ className, ...props }: RunAnywhereSectionPr
);
}
-function ListItemAnchor({ children, href }: { children: React.ReactNode; href: string }) {
+function ListItemAnchor({
+ children,
+ href,
+ className,
+ highlighted,
+}: {
+ children: React.ReactNode;
+ href: string;
+ className?: string;
+ highlighted?: boolean;
+}) {
return (
-
+
{children}
diff --git a/website/src/fonts/PPNeueMontreal-Medium.woff2 b/website/src/fonts/PPNeueMontreal-Medium.woff2
new file mode 100644
index 0000000000000..c2325068f714b
Binary files /dev/null and b/website/src/fonts/PPNeueMontreal-Medium.woff2 differ
diff --git a/website/src/fonts/PPNeueMontreal-Regular.woff2 b/website/src/fonts/PPNeueMontreal-Regular.woff2
new file mode 100644
index 0000000000000..30f88559134d0
Binary files /dev/null and b/website/src/fonts/PPNeueMontreal-Regular.woff2 differ
diff --git a/website/src/pages/_app.tsx b/website/src/pages/_app.tsx
index 9e5915d5e5223..14df32fc275fa 100644
--- a/website/src/pages/_app.tsx
+++ b/website/src/pages/_app.tsx
@@ -2,7 +2,24 @@ import { ReactElement } from 'react';
import { AppProps } from 'next/app';
import '@theguild/components/style.css';
import '../hotfix.css';
+import localFont from 'next/font/local';
+
+const neueMontreal = localFont({
+ src: [
+ { path: '../fonts/PPNeueMontreal-Regular.woff2', weight: '400' },
+ { path: '../fonts/PPNeueMontreal-Medium.woff2', weight: '500' },
+ ],
+});
export default function App({ Component, pageProps }: AppProps): ReactElement {
- return ;
+ return (
+ <>
+
+
+ >
+ );
}
diff --git a/website/src/pages/_meta.tsx b/website/src/pages/_meta.tsx
index 0f8d04dcd0894..f050f4357f1bf 100644
--- a/website/src/pages/_meta.tsx
+++ b/website/src/pages/_meta.tsx
@@ -1,24 +1,7 @@
-import Link from 'next/link';
-import { Callout } from '@theguild/components';
+import { Callout, MDXLink } from '@theguild/components';
+import { PRODUCTS_MENU_LIST } from '@theguild/components/products';
-function LegacyDocsBanner() {
- return (
-
- This is the documentation for the old GraphQL Mesh version v0. We recommend upgrading
- to the latest GraphQL Mesh version v1.
-
-
-
- Migrate to GraphQL Mesh v1
-
-
- );
-}
-
-export default {
+const meta = {
index: {
title: 'Home',
type: 'page',
@@ -33,7 +16,6 @@ export default {
display: 'hidden',
theme: {
layout: 'raw',
- footer: false,
},
},
v1: {
@@ -47,4 +29,58 @@ export default {
topContent: LegacyDocsBanner,
},
},
+ products: {
+ title: 'Products',
+ type: 'menu',
+ items: PRODUCTS_MENU_LIST,
+ },
+ ecosystem: {
+ title: 'Ecosystem',
+ type: 'page',
+ href: 'https://the-guild.dev/graphql/hive/ecosystem',
+ },
+ blog: {
+ title: 'Blog',
+ type: 'page',
+ href: 'https://the-guild.dev/blog',
+ },
+ github: {
+ title: 'GitHub',
+ type: 'page',
+ href: 'https://github.com/ardatan/graphql-mesh',
+ },
+ 'the-guild': {
+ title: 'The Guild',
+ type: 'menu',
+ items: {
+ 'about-us': {
+ title: 'About Us',
+ href: 'https://the-guild.dev/about-us',
+ },
+ 'brand-assets': {
+ title: 'Brand Assets',
+ href: 'https://the-guild.dev/logos',
+ },
+ },
+ },
+ 'graphql-foundation': {
+ title: 'GraphQL Foundation',
+ type: 'page',
+ href: 'https://graphql.org/community/foundation/',
+ },
+ // #endregion
};
+
+function LegacyDocsBanner() {
+ return (
+
+ This is the documentation for the old GraphQL Mesh version v0. We recommend upgrading
+ to the latest GraphQL Mesh version v1.
+
+
+ Migrate to GraphQL Mesh v1
+
+ );
+}
+
+export default meta;
diff --git a/website/src/pages/examples.mdx b/website/src/pages/examples.mdx
index bbd0f8c694e45..9bb62875ccc7d 100644
--- a/website/src/pages/examples.mdx
+++ b/website/src/pages/examples.mdx
@@ -5,82 +5,14 @@ description: Examples of Mesh usage
import { useState } from 'react'
+import { ExamplesSandbox } from '../components/examples-sandbox'
+
export function LiveDemo() {
- const [exampleRepo, setExampleRepo] = useState('json-schema-example')
return (
-
- Choose Live Example:
- {
- setExampleRepo(e.target.value)
- }}
- className="border rounded-md py-1.5"
- >
- {Object.entries(EXAMPLES).map(([groupName, group]) => (
-
- {Object.entries(group).map(([exampleName, value]) => (
-
- {exampleName}
-
- ))}
-
- ))}
-
-
-
+
)
}
-
-export const EXAMPLES = {
- OpenAPI: {
- 'JavaScript Wiki': 'openapi-javascript-wiki',
- 'Location Weather': 'openapi-location-weather',
- YouTrack: 'openapi-youtrack',
- Stripe: 'openapi-stripe',
- StackExchange: 'openapi-stackexchange',
- 'WeatherBit on React App': 'openapi-react-weatherbit',
- 'NextJS with Apollo': 'nextjs-apollo-example'
- },
- 'JSON Schema': {
- 'Fake API': 'json-schema-example',
- 'Covid-19 Statistics': 'json-schema-covid',
- 'Subscriptions, Webhooks & Live Queries': 'json-schema-subscriptions'
- },
- OData: {
- TripPin: 'odata-trippin',
- 'Microsoft Graph': 'odata-microsoft'
- },
- SOAP: {
- 'Country Info': 'soap-country-info'
- },
- MySQL: {
- Rfam: 'mysql-rfam'
- },
- SQLite: {
- Chinook: 'sqlite-chinook'
- },
- 'Apollo Federation': {
- 'Apollo Federation Example': 'federation-example'
- },
- 'Apache Thrift': {
- Calculator: 'thrift-calculator'
- },
- gRPC: {
- 'Movies Example': 'grpc-example'
- },
- Neo4J: {
- 'Movies Example': 'neo4j-example'
- }
-}
diff --git a/website/theme.config.tsx b/website/theme.config.tsx
index 7be75eae41c83..437fcb60814ed 100644
--- a/website/theme.config.tsx
+++ b/website/theme.config.tsx
@@ -1,12 +1,30 @@
/* eslint sort-keys: error */
import { useRouter } from 'next/router';
-import { defineConfig, Giscus, PRODUCTS, useTheme } from '@theguild/components';
+import {
+ Anchor,
+ cn,
+ defineConfig,
+ Giscus,
+ GitHubIcon,
+ HiveFooter,
+ HiveNavigation,
+ MeshIcon,
+ PaperIcon,
+ PencilIcon,
+ PRODUCTS,
+ useTheme,
+ VersionDropdown,
+} from '@theguild/components';
+import favicon from './public/favicon.svg';
export default defineConfig({
+ websiteName: 'GraphQL Mesh',
description: 'GraphQL Gateway Framework and anything-to-GraphQL',
docsRepositoryBase: 'https://github.com/ardatan/graphql-mesh/tree/master/website',
- // @ts-expect-error - Typings are not updated
- logo: PRODUCTS.MESH.logo({ className: 'w-8' }),
+ logo: PRODUCTS.MESH.logo,
+
+ themeVersion: 'hive-rebranding',
+
main: function Main({ children }) {
const { resolvedTheme } = useTheme();
const { route } = useRouter();
@@ -31,5 +49,115 @@ export default defineConfig({
>
);
},
- websiteName: 'GraphQL-Mesh',
+ color: {
+ hue: {
+ dark: 67.1,
+ light: 173,
+ },
+ saturation: {
+ dark: 100,
+ light: 40,
+ },
+ },
+ navbar: {
+ component: function NavigationMenu() {
+ const { route } = useRouter();
+
+ return (
+
+
+ {PRODUCTS.MESH.name}
+
+ }
+ >
+
+
+ );
+ },
+ },
+ footer: {
+ component: _props => {
+ const { route } = useRouter();
+
+ return (
+ :first-child]:mx-0 [&>:first-child]:max-w-[90rem]',
+ 'pt-[72px]',
+ )}
+ items={{
+ resources: [
+ {
+ children: 'Privacy Policy',
+ href: 'https://the-guild.dev/graphql/hive/privacy-policy.pdf',
+ title: 'Privacy Policy',
+ },
+ {
+ children: 'Terms of Use',
+ href: 'https://the-guild.dev/graphql/hive/terms-of-use.pdf',
+ title: 'Terms of Use',
+ },
+ {
+ children: 'Partners',
+ href: '/partners',
+ title: 'Partners',
+ },
+ ],
+ }}
+ />
+ );
+ },
+ },
+ head: () => {
+ return (
+ <>
+
+ >
+ );
+ },
});
+
+const landingLikePages = [
+ '/',
+ '/pricing',
+ '/federation',
+ '/oss-friends',
+ '/ecosystem',
+ '/partners',
+];
+const isLandingPage = (route: string) => landingLikePages.includes(route);
diff --git a/yarn.lock b/yarn.lock
index 85d89ee99184c..0fd6e7c6e159f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6,14 +6,14 @@ __metadata:
cacheKey: 10c0
"@0no-co/graphql.web@npm:^1.0.5":
- version: 1.0.13
- resolution: "@0no-co/graphql.web@npm:1.0.13"
+ version: 1.0.12
+ resolution: "@0no-co/graphql.web@npm:1.0.12"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
peerDependenciesMeta:
graphql:
optional: true
- checksum: 10c0/0dc3baf94bec4a45a2ea6ccc07feea5e371198f3625df0616ef25c2b0aca3b6af6d2ebc742cc93e88e343f75367568229e88db31656f983662a70148a46a49ce
+ checksum: 10c0/3d91c11fc4497cb12578817ffde7c3446687e375079b0f71b050836e1e8bd210f57df72bf49d97aaf9c99498c59c26119258ddaa5cc6d4df2389b75855a41919
languageName: node
linkType: hard
@@ -677,6 +677,15 @@ __metadata:
languageName: node
linkType: hard
+"@ardatan/sync-fetch@npm:^0.0.1":
+ version: 0.0.1
+ resolution: "@ardatan/sync-fetch@npm:0.0.1"
+ dependencies:
+ node-fetch: "npm:^2.6.1"
+ checksum: 10c0/cd69134005ef5ea570d55631c8be59b593e2dda2207f616d30618f948af6ee5d227b857aefd56c535e8f7f3ade47083e4e7795b5ee014a6732011c6e5f9eb08f
+ languageName: node
+ linkType: hard
+
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
@@ -735,419 +744,429 @@ __metadata:
linkType: hard
"@aws-sdk/client-lambda@npm:^3.363.0":
- version: 3.726.1
- resolution: "@aws-sdk/client-lambda@npm:3.726.1"
+ version: 3.716.0
+ resolution: "@aws-sdk/client-lambda@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/client-sso-oidc": "npm:3.726.0"
- "@aws-sdk/client-sts": "npm:3.726.1"
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/credential-provider-node": "npm:3.726.0"
- "@aws-sdk/middleware-host-header": "npm:3.723.0"
- "@aws-sdk/middleware-logger": "npm:3.723.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.723.0"
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
- "@aws-sdk/region-config-resolver": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.723.0"
- "@aws-sdk/util-user-agent-node": "npm:3.726.0"
- "@smithy/config-resolver": "npm:^4.0.0"
- "@smithy/core": "npm:^3.0.0"
- "@smithy/eventstream-serde-browser": "npm:^4.0.0"
- "@smithy/eventstream-serde-config-resolver": "npm:^4.0.0"
- "@smithy/eventstream-serde-node": "npm:^4.0.0"
- "@smithy/fetch-http-handler": "npm:^5.0.0"
- "@smithy/hash-node": "npm:^4.0.0"
- "@smithy/invalid-dependency": "npm:^4.0.0"
- "@smithy/middleware-content-length": "npm:^4.0.0"
- "@smithy/middleware-endpoint": "npm:^4.0.0"
- "@smithy/middleware-retry": "npm:^4.0.0"
- "@smithy/middleware-serde": "npm:^4.0.0"
- "@smithy/middleware-stack": "npm:^4.0.0"
- "@smithy/node-config-provider": "npm:^4.0.0"
- "@smithy/node-http-handler": "npm:^4.0.0"
- "@smithy/protocol-http": "npm:^5.0.0"
- "@smithy/smithy-client": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
- "@smithy/url-parser": "npm:^4.0.0"
- "@smithy/util-base64": "npm:^4.0.0"
- "@smithy/util-body-length-browser": "npm:^4.0.0"
- "@smithy/util-body-length-node": "npm:^4.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^4.0.0"
- "@smithy/util-defaults-mode-node": "npm:^4.0.0"
- "@smithy/util-endpoints": "npm:^3.0.0"
- "@smithy/util-middleware": "npm:^4.0.0"
- "@smithy/util-retry": "npm:^4.0.0"
- "@smithy/util-stream": "npm:^4.0.0"
- "@smithy/util-utf8": "npm:^4.0.0"
- "@smithy/util-waiter": "npm:^4.0.0"
+ "@aws-sdk/client-sso-oidc": "npm:3.716.0"
+ "@aws-sdk/client-sts": "npm:3.716.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/credential-provider-node": "npm:3.716.0"
+ "@aws-sdk/middleware-host-header": "npm:3.714.0"
+ "@aws-sdk/middleware-logger": "npm:3.714.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.716.0"
+ "@aws-sdk/region-config-resolver": "npm:3.714.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@aws-sdk/util-endpoints": "npm:3.714.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.714.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.716.0"
+ "@smithy/config-resolver": "npm:^3.0.13"
+ "@smithy/core": "npm:^2.5.5"
+ "@smithy/eventstream-serde-browser": "npm:^3.0.14"
+ "@smithy/eventstream-serde-config-resolver": "npm:^3.0.11"
+ "@smithy/eventstream-serde-node": "npm:^3.0.13"
+ "@smithy/fetch-http-handler": "npm:^4.1.2"
+ "@smithy/hash-node": "npm:^3.0.11"
+ "@smithy/invalid-dependency": "npm:^3.0.11"
+ "@smithy/middleware-content-length": "npm:^3.0.13"
+ "@smithy/middleware-endpoint": "npm:^3.2.6"
+ "@smithy/middleware-retry": "npm:^3.0.31"
+ "@smithy/middleware-serde": "npm:^3.0.11"
+ "@smithy/middleware-stack": "npm:^3.0.11"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/node-http-handler": "npm:^3.3.2"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/smithy-client": "npm:^3.5.1"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/url-parser": "npm:^3.0.11"
+ "@smithy/util-base64": "npm:^3.0.0"
+ "@smithy/util-body-length-browser": "npm:^3.0.0"
+ "@smithy/util-body-length-node": "npm:^3.0.0"
+ "@smithy/util-defaults-mode-browser": "npm:^3.0.31"
+ "@smithy/util-defaults-mode-node": "npm:^3.0.31"
+ "@smithy/util-endpoints": "npm:^2.1.7"
+ "@smithy/util-middleware": "npm:^3.0.11"
+ "@smithy/util-retry": "npm:^3.0.11"
+ "@smithy/util-stream": "npm:^3.3.2"
+ "@smithy/util-utf8": "npm:^3.0.0"
+ "@smithy/util-waiter": "npm:^3.2.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/30e3d99cee49e805022c6552060f1649c8725dd92ae7106840939a3cab76c4002af84f90e2a6bacca1a06c15b75bd812350526c7b4b0017bd6bc8ea9ce8b081b
+ checksum: 10c0/4fb2c925c48b47794fe3f501155e5a85beee903883733e1d5b6b3603b789263bd4923fa8b0bbc3abf6b829e71e51840c864147965c827c42f7b1600bdc40bba3
languageName: node
linkType: hard
-"@aws-sdk/client-sso-oidc@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/client-sso-oidc@npm:3.726.0"
+"@aws-sdk/client-sso-oidc@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/client-sso-oidc@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/credential-provider-node": "npm:3.726.0"
- "@aws-sdk/middleware-host-header": "npm:3.723.0"
- "@aws-sdk/middleware-logger": "npm:3.723.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.723.0"
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
- "@aws-sdk/region-config-resolver": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.723.0"
- "@aws-sdk/util-user-agent-node": "npm:3.726.0"
- "@smithy/config-resolver": "npm:^4.0.0"
- "@smithy/core": "npm:^3.0.0"
- "@smithy/fetch-http-handler": "npm:^5.0.0"
- "@smithy/hash-node": "npm:^4.0.0"
- "@smithy/invalid-dependency": "npm:^4.0.0"
- "@smithy/middleware-content-length": "npm:^4.0.0"
- "@smithy/middleware-endpoint": "npm:^4.0.0"
- "@smithy/middleware-retry": "npm:^4.0.0"
- "@smithy/middleware-serde": "npm:^4.0.0"
- "@smithy/middleware-stack": "npm:^4.0.0"
- "@smithy/node-config-provider": "npm:^4.0.0"
- "@smithy/node-http-handler": "npm:^4.0.0"
- "@smithy/protocol-http": "npm:^5.0.0"
- "@smithy/smithy-client": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
- "@smithy/url-parser": "npm:^4.0.0"
- "@smithy/util-base64": "npm:^4.0.0"
- "@smithy/util-body-length-browser": "npm:^4.0.0"
- "@smithy/util-body-length-node": "npm:^4.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^4.0.0"
- "@smithy/util-defaults-mode-node": "npm:^4.0.0"
- "@smithy/util-endpoints": "npm:^3.0.0"
- "@smithy/util-middleware": "npm:^4.0.0"
- "@smithy/util-retry": "npm:^4.0.0"
- "@smithy/util-utf8": "npm:^4.0.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/credential-provider-node": "npm:3.716.0"
+ "@aws-sdk/middleware-host-header": "npm:3.714.0"
+ "@aws-sdk/middleware-logger": "npm:3.714.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.716.0"
+ "@aws-sdk/region-config-resolver": "npm:3.714.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@aws-sdk/util-endpoints": "npm:3.714.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.714.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.716.0"
+ "@smithy/config-resolver": "npm:^3.0.13"
+ "@smithy/core": "npm:^2.5.5"
+ "@smithy/fetch-http-handler": "npm:^4.1.2"
+ "@smithy/hash-node": "npm:^3.0.11"
+ "@smithy/invalid-dependency": "npm:^3.0.11"
+ "@smithy/middleware-content-length": "npm:^3.0.13"
+ "@smithy/middleware-endpoint": "npm:^3.2.6"
+ "@smithy/middleware-retry": "npm:^3.0.31"
+ "@smithy/middleware-serde": "npm:^3.0.11"
+ "@smithy/middleware-stack": "npm:^3.0.11"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/node-http-handler": "npm:^3.3.2"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/smithy-client": "npm:^3.5.1"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/url-parser": "npm:^3.0.11"
+ "@smithy/util-base64": "npm:^3.0.0"
+ "@smithy/util-body-length-browser": "npm:^3.0.0"
+ "@smithy/util-body-length-node": "npm:^3.0.0"
+ "@smithy/util-defaults-mode-browser": "npm:^3.0.31"
+ "@smithy/util-defaults-mode-node": "npm:^3.0.31"
+ "@smithy/util-endpoints": "npm:^2.1.7"
+ "@smithy/util-middleware": "npm:^3.0.11"
+ "@smithy/util-retry": "npm:^3.0.11"
+ "@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sts": ^3.726.0
- checksum: 10c0/e68ad3a05639e668d8cd089f92d8ed8e183153262cab068e705d75dff7dfd61be815c545e3cf073b148ac67fdb7a73923201d1360e4e23382ab85e6e96bf370f
+ "@aws-sdk/client-sts": ^3.716.0
+ checksum: 10c0/56c158846b2ff895565ff1da0f677d7959700288cf3dc44e7bd17ef87d6188233f6a331d1ded0e91df0068083ef28d50024016a90f5405f55b877b6c7130c7b0
languageName: node
linkType: hard
-"@aws-sdk/client-sso@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/client-sso@npm:3.726.0"
+"@aws-sdk/client-sso@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/client-sso@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/middleware-host-header": "npm:3.723.0"
- "@aws-sdk/middleware-logger": "npm:3.723.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.723.0"
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
- "@aws-sdk/region-config-resolver": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.723.0"
- "@aws-sdk/util-user-agent-node": "npm:3.726.0"
- "@smithy/config-resolver": "npm:^4.0.0"
- "@smithy/core": "npm:^3.0.0"
- "@smithy/fetch-http-handler": "npm:^5.0.0"
- "@smithy/hash-node": "npm:^4.0.0"
- "@smithy/invalid-dependency": "npm:^4.0.0"
- "@smithy/middleware-content-length": "npm:^4.0.0"
- "@smithy/middleware-endpoint": "npm:^4.0.0"
- "@smithy/middleware-retry": "npm:^4.0.0"
- "@smithy/middleware-serde": "npm:^4.0.0"
- "@smithy/middleware-stack": "npm:^4.0.0"
- "@smithy/node-config-provider": "npm:^4.0.0"
- "@smithy/node-http-handler": "npm:^4.0.0"
- "@smithy/protocol-http": "npm:^5.0.0"
- "@smithy/smithy-client": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
- "@smithy/url-parser": "npm:^4.0.0"
- "@smithy/util-base64": "npm:^4.0.0"
- "@smithy/util-body-length-browser": "npm:^4.0.0"
- "@smithy/util-body-length-node": "npm:^4.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^4.0.0"
- "@smithy/util-defaults-mode-node": "npm:^4.0.0"
- "@smithy/util-endpoints": "npm:^3.0.0"
- "@smithy/util-middleware": "npm:^4.0.0"
- "@smithy/util-retry": "npm:^4.0.0"
- "@smithy/util-utf8": "npm:^4.0.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/middleware-host-header": "npm:3.714.0"
+ "@aws-sdk/middleware-logger": "npm:3.714.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.716.0"
+ "@aws-sdk/region-config-resolver": "npm:3.714.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@aws-sdk/util-endpoints": "npm:3.714.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.714.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.716.0"
+ "@smithy/config-resolver": "npm:^3.0.13"
+ "@smithy/core": "npm:^2.5.5"
+ "@smithy/fetch-http-handler": "npm:^4.1.2"
+ "@smithy/hash-node": "npm:^3.0.11"
+ "@smithy/invalid-dependency": "npm:^3.0.11"
+ "@smithy/middleware-content-length": "npm:^3.0.13"
+ "@smithy/middleware-endpoint": "npm:^3.2.6"
+ "@smithy/middleware-retry": "npm:^3.0.31"
+ "@smithy/middleware-serde": "npm:^3.0.11"
+ "@smithy/middleware-stack": "npm:^3.0.11"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/node-http-handler": "npm:^3.3.2"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/smithy-client": "npm:^3.5.1"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/url-parser": "npm:^3.0.11"
+ "@smithy/util-base64": "npm:^3.0.0"
+ "@smithy/util-body-length-browser": "npm:^3.0.0"
+ "@smithy/util-body-length-node": "npm:^3.0.0"
+ "@smithy/util-defaults-mode-browser": "npm:^3.0.31"
+ "@smithy/util-defaults-mode-node": "npm:^3.0.31"
+ "@smithy/util-endpoints": "npm:^2.1.7"
+ "@smithy/util-middleware": "npm:^3.0.11"
+ "@smithy/util-retry": "npm:^3.0.11"
+ "@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/addfc32045db960a76b3d8977ac1f3093b3b75420d77a7c89d4df3148214b9ea01d6602ebc974f28953ab1f6fbda6195c026f7e61bc27838f191e3683ec6d24e
+ checksum: 10c0/5c30caf6e21800974ff4c7f1dce230cfd7cfd4be146e356b19c0a4690b6123f23095f32eb73fa96b389f729975bbd5fbfe05c3d940f958c4f2a884fe4b9d44b4
languageName: node
linkType: hard
-"@aws-sdk/client-sts@npm:3.726.1":
- version: 3.726.1
- resolution: "@aws-sdk/client-sts@npm:3.726.1"
+"@aws-sdk/client-sts@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/client-sts@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/client-sso-oidc": "npm:3.726.0"
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/credential-provider-node": "npm:3.726.0"
- "@aws-sdk/middleware-host-header": "npm:3.723.0"
- "@aws-sdk/middleware-logger": "npm:3.723.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.723.0"
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
- "@aws-sdk/region-config-resolver": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.723.0"
- "@aws-sdk/util-user-agent-node": "npm:3.726.0"
- "@smithy/config-resolver": "npm:^4.0.0"
- "@smithy/core": "npm:^3.0.0"
- "@smithy/fetch-http-handler": "npm:^5.0.0"
- "@smithy/hash-node": "npm:^4.0.0"
- "@smithy/invalid-dependency": "npm:^4.0.0"
- "@smithy/middleware-content-length": "npm:^4.0.0"
- "@smithy/middleware-endpoint": "npm:^4.0.0"
- "@smithy/middleware-retry": "npm:^4.0.0"
- "@smithy/middleware-serde": "npm:^4.0.0"
- "@smithy/middleware-stack": "npm:^4.0.0"
- "@smithy/node-config-provider": "npm:^4.0.0"
- "@smithy/node-http-handler": "npm:^4.0.0"
- "@smithy/protocol-http": "npm:^5.0.0"
- "@smithy/smithy-client": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
- "@smithy/url-parser": "npm:^4.0.0"
- "@smithy/util-base64": "npm:^4.0.0"
- "@smithy/util-body-length-browser": "npm:^4.0.0"
- "@smithy/util-body-length-node": "npm:^4.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^4.0.0"
- "@smithy/util-defaults-mode-node": "npm:^4.0.0"
- "@smithy/util-endpoints": "npm:^3.0.0"
- "@smithy/util-middleware": "npm:^4.0.0"
- "@smithy/util-retry": "npm:^4.0.0"
- "@smithy/util-utf8": "npm:^4.0.0"
+ "@aws-sdk/client-sso-oidc": "npm:3.716.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/credential-provider-node": "npm:3.716.0"
+ "@aws-sdk/middleware-host-header": "npm:3.714.0"
+ "@aws-sdk/middleware-logger": "npm:3.714.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.716.0"
+ "@aws-sdk/region-config-resolver": "npm:3.714.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@aws-sdk/util-endpoints": "npm:3.714.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.714.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.716.0"
+ "@smithy/config-resolver": "npm:^3.0.13"
+ "@smithy/core": "npm:^2.5.5"
+ "@smithy/fetch-http-handler": "npm:^4.1.2"
+ "@smithy/hash-node": "npm:^3.0.11"
+ "@smithy/invalid-dependency": "npm:^3.0.11"
+ "@smithy/middleware-content-length": "npm:^3.0.13"
+ "@smithy/middleware-endpoint": "npm:^3.2.6"
+ "@smithy/middleware-retry": "npm:^3.0.31"
+ "@smithy/middleware-serde": "npm:^3.0.11"
+ "@smithy/middleware-stack": "npm:^3.0.11"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/node-http-handler": "npm:^3.3.2"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/smithy-client": "npm:^3.5.1"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/url-parser": "npm:^3.0.11"
+ "@smithy/util-base64": "npm:^3.0.0"
+ "@smithy/util-body-length-browser": "npm:^3.0.0"
+ "@smithy/util-body-length-node": "npm:^3.0.0"
+ "@smithy/util-defaults-mode-browser": "npm:^3.0.31"
+ "@smithy/util-defaults-mode-node": "npm:^3.0.31"
+ "@smithy/util-endpoints": "npm:^2.1.7"
+ "@smithy/util-middleware": "npm:^3.0.11"
+ "@smithy/util-retry": "npm:^3.0.11"
+ "@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/23e7140e939fc0ba0903df4e2fc4e43ae6f079f4359396ebc2e2126250bfc39a794f1e64c4600a780d6556abceb390c359a7181a0a43ede862db7690fd890c22
+ checksum: 10c0/3a0a408f264260781dcf992028c60c8dbfad1acf00ae3590db07b1d52d931a05ffbe7f6709783ac8385dc79f44f0427054d21a89333faddd8c50f62eb354f854
languageName: node
linkType: hard
-"@aws-sdk/core@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/core@npm:3.723.0"
- dependencies:
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/core": "npm:^3.0.0"
- "@smithy/node-config-provider": "npm:^4.0.0"
- "@smithy/property-provider": "npm:^4.0.0"
- "@smithy/protocol-http": "npm:^5.0.0"
- "@smithy/signature-v4": "npm:^5.0.0"
- "@smithy/smithy-client": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.0"
+"@aws-sdk/core@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/core@npm:3.716.0"
+ dependencies:
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/core": "npm:^2.5.5"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/signature-v4": "npm:^4.2.4"
+ "@smithy/smithy-client": "npm:^3.5.1"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-middleware": "npm:^3.0.11"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/391007791890dae226ffffb617a7bb8f9ef99a114364257a7ccb8dc62ed6a171736552c763fc0f20eb5d70893bff09103268f0d090c88c9e955441649cfad443
+ checksum: 10c0/d11deccbe6b33f91f951fa317793d56359e87a1871772e429519df2d488929a9d9c230aa6be501446980b8e9c01fc549970c28b6d1eeff23f53955e57b021db7
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-env@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/credential-provider-env@npm:3.723.0"
+"@aws-sdk/credential-provider-env@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/credential-provider-env@npm:3.716.0"
dependencies:
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/property-provider": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/be8a37e68e700eede985511ca72730cc862971760548c89589d5168c8f53c2ab361b033ee0711fcbac2b5609faf3365d532c3534b9e4cb61609f42f9d1f086ba
+ checksum: 10c0/00f197f9e5f49f596357b620415d85084150f794cd908838b36d9cb6e537832db530e7975c12a8d66a0e711f5c32c57453131ba1f463392e257ce6f0625a5c2a
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-http@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/credential-provider-http@npm:3.723.0"
- dependencies:
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/fetch-http-handler": "npm:^5.0.0"
- "@smithy/node-http-handler": "npm:^4.0.0"
- "@smithy/property-provider": "npm:^4.0.0"
- "@smithy/protocol-http": "npm:^5.0.0"
- "@smithy/smithy-client": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
- "@smithy/util-stream": "npm:^4.0.0"
+"@aws-sdk/credential-provider-http@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/credential-provider-http@npm:3.716.0"
+ dependencies:
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/fetch-http-handler": "npm:^4.1.2"
+ "@smithy/node-http-handler": "npm:^3.3.2"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/smithy-client": "npm:^3.5.1"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-stream": "npm:^3.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/407d1169a54246e3bb5ba839870fa5d2e10cd42b9780adc72d763201243d7d80576e2aa430793768e131c7637195e585c6696c153f013d99d25db3f16739762f
+ checksum: 10c0/ed342f61d1365b4511392b8eb897bea49b0f7c71ab92bb81748ca036409c1b59eef68cd507e7697e6df2d07f69b7a26bf57172ddde6bed10730152551ba8b603
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-ini@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/credential-provider-ini@npm:3.726.0"
+"@aws-sdk/credential-provider-ini@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/credential-provider-ini@npm:3.716.0"
dependencies:
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/credential-provider-env": "npm:3.723.0"
- "@aws-sdk/credential-provider-http": "npm:3.723.0"
- "@aws-sdk/credential-provider-process": "npm:3.723.0"
- "@aws-sdk/credential-provider-sso": "npm:3.726.0"
- "@aws-sdk/credential-provider-web-identity": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/credential-provider-imds": "npm:^4.0.0"
- "@smithy/property-provider": "npm:^4.0.0"
- "@smithy/shared-ini-file-loader": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/credential-provider-env": "npm:3.716.0"
+ "@aws-sdk/credential-provider-http": "npm:3.716.0"
+ "@aws-sdk/credential-provider-process": "npm:3.716.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.716.0"
+ "@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/credential-provider-imds": "npm:^3.2.8"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sts": ^3.726.0
- checksum: 10c0/0ae11a9195a4368eb8c12cf42f716771ed1486a042e2e71292f9c5cd6c2accf0b8805e3c16b709b366ea5fb27468fc24aeb18f324b80f1ae2227330d1481ea77
+ "@aws-sdk/client-sts": ^3.716.0
+ checksum: 10c0/1282f893a2149f0105f33dc9cfcbfa519b2936e8fc41da4b85fc89b022824c5689f8fc8652c2a03586ea0719e569da64b51414e831667b0c2c79c4e383cc65c6
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-node@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/credential-provider-node@npm:3.726.0"
+"@aws-sdk/credential-provider-node@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/credential-provider-node@npm:3.716.0"
dependencies:
- "@aws-sdk/credential-provider-env": "npm:3.723.0"
- "@aws-sdk/credential-provider-http": "npm:3.723.0"
- "@aws-sdk/credential-provider-ini": "npm:3.726.0"
- "@aws-sdk/credential-provider-process": "npm:3.723.0"
- "@aws-sdk/credential-provider-sso": "npm:3.726.0"
- "@aws-sdk/credential-provider-web-identity": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/credential-provider-imds": "npm:^4.0.0"
- "@smithy/property-provider": "npm:^4.0.0"
- "@smithy/shared-ini-file-loader": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/credential-provider-env": "npm:3.716.0"
+ "@aws-sdk/credential-provider-http": "npm:3.716.0"
+ "@aws-sdk/credential-provider-ini": "npm:3.716.0"
+ "@aws-sdk/credential-provider-process": "npm:3.716.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.716.0"
+ "@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/credential-provider-imds": "npm:^3.2.8"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/e208e6f880a2a9251c22c0b66ee63f375f5e3ffe1f91efc23af3d030d3b4b8a8f6c154ad2481a69ae15f80167d0bfbfa2f638eb2f73a2377a146f30ce2996c34
+ checksum: 10c0/41955b9098845652ab892e6edea9ce94705ade42be8ccc96f212efd75a2aec7aaf6cd06beaa9c01dd74e7cca1bc0a23571f94b4593034eccfe199603fc353cd0
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-process@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/credential-provider-process@npm:3.723.0"
+"@aws-sdk/credential-provider-process@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/credential-provider-process@npm:3.716.0"
dependencies:
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/property-provider": "npm:^4.0.0"
- "@smithy/shared-ini-file-loader": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/078e936584a80910695fd37dfc8fd2781e8c495aa02ff7033075d2d80cf43963b8383ae401d46ec23765c9b54200554d0fae5af49d684c6ae46da060772861ad
+ checksum: 10c0/cec748bc9ecf9c029b1e7cdec4722ecae6b4a4653f39c0be03e4901ec9a1745f8d341eb879b374119096490c93dd5746cfc3f1bd0af552462da57e2249646146
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-sso@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/credential-provider-sso@npm:3.726.0"
+"@aws-sdk/credential-provider-sso@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/credential-provider-sso@npm:3.716.0"
dependencies:
- "@aws-sdk/client-sso": "npm:3.726.0"
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/token-providers": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/property-provider": "npm:^4.0.0"
- "@smithy/shared-ini-file-loader": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/client-sso": "npm:3.716.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/token-providers": "npm:3.714.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/5114fdb65ad15a9838c72dd030108b12cf1e59ba2b12a7c4d8482e033ae23f6cc633a8e43f532eed9330358afffe2b2fe728266c63616920f9e23208a9e1d2b7
+ checksum: 10c0/5d1e941343164b4246722cc88909cd50966116c2028d9760f2a09b85dae80c1198de682b1f2c1c9d74a62bc8942e4cedb63695782b5b08f167bfef2f09c5abf3
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-web-identity@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/credential-provider-web-identity@npm:3.723.0"
+"@aws-sdk/credential-provider-web-identity@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/credential-provider-web-identity@npm:3.716.0"
dependencies:
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/property-provider": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sts": ^3.723.0
- checksum: 10c0/689e1f5d00336c49317db815e1521c7cbad9b6b1d202b879efd70f3bdda26b2256eb96d4ce6a128ab9747d4c9f9dc1acc0656a99b216f2b960f65e93c20bfa14
+ "@aws-sdk/client-sts": ^3.716.0
+ checksum: 10c0/28e5b97cb7ca314c1013a1af867e0853f9e542bd98105af09e58e824abc30f7cdf14a2cfa2b443d449a89a1d94f046db2014ec001d5a99c5df1d34944a1d5631
languageName: node
linkType: hard
-"@aws-sdk/middleware-host-header@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/middleware-host-header@npm:3.723.0"
+"@aws-sdk/middleware-host-header@npm:3.714.0":
+ version: 3.714.0
+ resolution: "@aws-sdk/middleware-host-header@npm:3.714.0"
dependencies:
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/protocol-http": "npm:^5.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/183196230f8675d821a1c3de6cfb54cb3575a245d60221eea8fb4b6cea3b64dda1c4a836f6bd7d3240c494840f68b5f25a6b39223be7cb0e0a1a35bdab9e5691
+ checksum: 10c0/c817ca326e9986fa135cfb94abc000477278fdac01d78e0d7d59cf2f02be89afe6e4c9aeb2c575f49dc29d08ed6593f0df634bd23a61f183a4cb09c50d76a1b9
languageName: node
linkType: hard
-"@aws-sdk/middleware-logger@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/middleware-logger@npm:3.723.0"
+"@aws-sdk/middleware-logger@npm:3.714.0":
+ version: 3.714.0
+ resolution: "@aws-sdk/middleware-logger@npm:3.714.0"
dependencies:
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/ed0d29e525d3893bf2e2b34f7964b7070b338def35997646a950902e20abce3ff5244b046d0504441c378292b3c319691afcc658badda9927eed7991d810ff8c
+ checksum: 10c0/c4ae1cdf3e8569fcab51f3a61cf8ee053e94a5b0efb0b3149178c18e44eb37b2be7f35a7e351fd9cfe21b8178f5a60d53012dc93779529b3d41a0f158a6d4ae4
languageName: node
linkType: hard
-"@aws-sdk/middleware-recursion-detection@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/middleware-recursion-detection@npm:3.723.0"
+"@aws-sdk/middleware-recursion-detection@npm:3.714.0":
+ version: 3.714.0
+ resolution: "@aws-sdk/middleware-recursion-detection@npm:3.714.0"
dependencies:
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/protocol-http": "npm:^5.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/d8cf89ec99aa72ac9496d183ff0a8994329f050e569924bc5e4e732b50900a9b7ef7608101a29dd4b4815b7f59270faf42634d5033f11b190ffcc88a6fc91812
+ checksum: 10c0/0a423e6fd930b98a6237849ef2d1d5c50217fb1a78a48e6e6eb73b077588ad295f3e64edc4836702dd8053bb1eac73d5007ff1dfc097f1b66b793cbd98f390cc
languageName: node
linkType: hard
-"@aws-sdk/middleware-user-agent@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/middleware-user-agent@npm:3.726.0"
+"@aws-sdk/middleware-user-agent@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/middleware-user-agent@npm:3.716.0"
dependencies:
- "@aws-sdk/core": "npm:3.723.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@aws-sdk/util-endpoints": "npm:3.726.0"
- "@smithy/core": "npm:^3.0.0"
- "@smithy/protocol-http": "npm:^5.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/core": "npm:3.716.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@aws-sdk/util-endpoints": "npm:3.714.0"
+ "@smithy/core": "npm:^2.5.5"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/3cbfa117531cc4fd09b4ce0e273af86b1fdb656f078033babb7d1e87fb849efae662f0e86081e62404c6876539011fc444de89758dc64c01a33789c88bdfa6c3
+ checksum: 10c0/b66356f04adfda722910c2ddabed763fa40af0e9988c37b6dd7f6fb805538122100dbfb4332caa141fdaf0dd2e877e95a32513319046e109af905679697ad431
languageName: node
linkType: hard
-"@aws-sdk/region-config-resolver@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/region-config-resolver@npm:3.723.0"
+"@aws-sdk/region-config-resolver@npm:3.714.0":
+ version: 3.714.0
+ resolution: "@aws-sdk/region-config-resolver@npm:3.714.0"
dependencies:
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/node-config-provider": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
- "@smithy/util-config-provider": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-config-provider": "npm:^3.0.0"
+ "@smithy/util-middleware": "npm:^3.0.11"
tslib: "npm:^2.6.2"
- checksum: 10c0/c51c07fe9cbeb04a28ed715e073055aae00e4c6a4d553e7383796041de539f0d90b7df3f10035f8c6cea8f4817b1c36df83f53736a401ae7f75446f37cce0add
+ checksum: 10c0/160e001b060ed2743c74856991207ac47cec1d7e96885d90468548c8ee7113e1de65143a1f417d8fa27f6c57679b89b56d1444ff87c05333d31f3379b55838b3
languageName: node
linkType: hard
-"@aws-sdk/token-providers@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/token-providers@npm:3.723.0"
+"@aws-sdk/token-providers@npm:3.714.0":
+ version: 3.714.0
+ resolution: "@aws-sdk/token-providers@npm:3.714.0"
dependencies:
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/property-provider": "npm:^4.0.0"
- "@smithy/shared-ini-file-loader": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sso-oidc": ^3.723.0
- checksum: 10c0/54f9865801b5c7c43158e95101bd6aaa5d5bee2e8cb553fbac52faadcb023fda898929139301eb1c9632762b314e48e7af8cf11c438bb7eba3348f7eb8297a1a
+ "@aws-sdk/client-sso-oidc": ^3.714.0
+ checksum: 10c0/5f3c83f8128a5bf0dfb6bbf78cb908d8b289ea5e1ead7d6dceb32f84a72eb910edddabb419a4c4f662a28a5e0f334dc6ca3be5f4e199f899d97a3b1fa25cbefd
languageName: node
linkType: hard
-"@aws-sdk/types@npm:3.723.0, @aws-sdk/types@npm:^3.222.0":
+"@aws-sdk/types@npm:3.714.0":
+ version: 3.714.0
+ resolution: "@aws-sdk/types@npm:3.714.0"
+ dependencies:
+ "@smithy/types": "npm:^3.7.2"
+ tslib: "npm:^2.6.2"
+ checksum: 10c0/fd1b47d0d85bef495a2d76e4ad8d56328638ba59fec9719c7f30aedbde1f058d269825e00fc78eebafda14b73a583445911599eba6e9d039e3059cc79dd074d4
+ languageName: node
+ linkType: hard
+
+"@aws-sdk/types@npm:^3.222.0":
version: 3.723.0
resolution: "@aws-sdk/types@npm:3.723.0"
dependencies:
@@ -1157,54 +1176,54 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/util-endpoints@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/util-endpoints@npm:3.726.0"
+"@aws-sdk/util-endpoints@npm:3.714.0":
+ version: 3.714.0
+ resolution: "@aws-sdk/util-endpoints@npm:3.714.0"
dependencies:
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/types": "npm:^4.0.0"
- "@smithy/util-endpoints": "npm:^3.0.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-endpoints": "npm:^2.1.7"
tslib: "npm:^2.6.2"
- checksum: 10c0/43bf94ddc07310b8ee44cd489b0bb47cf6189eb12072cba946403ff63831e93c3c2e1d17779b298f4dd74732cee2349d5038942ebdf8a1f030ebd215b5c7f5ac
+ checksum: 10c0/2cccad1c18848e48a764def1aa46efac10900a9c083d6f8d8cf6d9495e66439e0dcb54c181242840bb3ea814ac4c1ef1f663c2b17d34e52035917435a473cd68
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
- version: 3.723.0
- resolution: "@aws-sdk/util-locate-window@npm:3.723.0"
+ version: 3.693.0
+ resolution: "@aws-sdk/util-locate-window@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/c9c75d3ee06bd1d1edad78bea8324f2d4ad6086803f27731e1f3c25e946bb630c8db2991a5337e4dbeee06507deab9abea80b134ba4e3fbb27471d438a030639
+ checksum: 10c0/68630e3b6e7f47ec05c92a7f2369464f5fcd218d4dc5c4103465681424b64072d290ab565938449c0afa312cfce200e553e4a14d6a411542069d95880f3434f5
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-browser@npm:3.723.0":
- version: 3.723.0
- resolution: "@aws-sdk/util-user-agent-browser@npm:3.723.0"
+"@aws-sdk/util-user-agent-browser@npm:3.714.0":
+ version: 3.714.0
+ resolution: "@aws-sdk/util-user-agent-browser@npm:3.714.0"
dependencies:
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/types": "npm:^3.7.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/10f3c757d35a8bc07fe85a8cd2af7bfa7f96dc71b5b434e840da84aefb791048907e7f25447999b132bd93c828107b7408de938bbbee5055ebcb7ad7abeeb0b8
+ checksum: 10c0/6b8813e28c7a73316d0a3b3259b3a6ecc403390f475f8e223a81469e24583712c07cb36a026e5109c82cf00c237974025cf320e2b35f4256339732e99cbcc092
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-node@npm:3.726.0":
- version: 3.726.0
- resolution: "@aws-sdk/util-user-agent-node@npm:3.726.0"
+"@aws-sdk/util-user-agent-node@npm:3.716.0":
+ version: 3.716.0
+ resolution: "@aws-sdk/util-user-agent-node@npm:3.716.0"
dependencies:
- "@aws-sdk/middleware-user-agent": "npm:3.726.0"
- "@aws-sdk/types": "npm:3.723.0"
- "@smithy/node-config-provider": "npm:^4.0.0"
- "@smithy/types": "npm:^4.0.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.716.0"
+ "@aws-sdk/types": "npm:3.714.0"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
- checksum: 10c0/627f5fdb1dbc14fbfc14c51d14135a5be46fe48a315cb38625f783791d6c0013f2f2df49150fdb920fc5181845e1e75831545453a672af997f5f148b1db5128d
+ checksum: 10c0/03cc627ebe7660d51232a9d08b6f217f6a4a944657abb3f21489c274342bc6bfad709daf7f1ad6c430e7498dea94acd7accc589c5cfa4168f8b2ac43c47c9d3e
languageName: node
linkType: hard
@@ -1244,8 +1263,8 @@ __metadata:
linkType: hard
"@azure/core-rest-pipeline@npm:^1.1.0, @azure/core-rest-pipeline@npm:^1.9.1":
- version: 1.18.2
- resolution: "@azure/core-rest-pipeline@npm:1.18.2"
+ version: 1.18.1
+ resolution: "@azure/core-rest-pipeline@npm:1.18.1"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-auth": "npm:^1.8.0"
@@ -1255,7 +1274,7 @@ __metadata:
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/3e5891b948aeac8c1c255664708b3cdd02f118afa22aa60e7af9df830be6fd64e14c82a6d3d51f5ba941626115fb4950a97bc8647bc8b81d600a14c81bd83204
+ checksum: 10c0/e63d110f799a74ed20925e59ee70eced355f76130a2283393ce109b49365c97a436e8ddde29badee138c17cf0ecf33c26b9ce3cfbf64cf98b904ab50e6bdedff
languageName: node
linkType: hard
@@ -1318,13 +1337,20 @@ __metadata:
languageName: node
linkType: hard
-"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.0, @babel/compat-data@npm:^7.26.5":
+"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.0":
version: 7.26.5
resolution: "@babel/compat-data@npm:7.26.5"
checksum: 10c0/9d2b41f0948c3dfc5de44d9f789d2208c2ea1fd7eb896dfbb297fe955e696728d6f363c600cd211e7f58ccbc2d834fe516bb1e4cf883bbabed8a32b038afc1a0
languageName: node
linkType: hard
+"@babel/compat-data@npm:^7.25.9":
+ version: 7.26.3
+ resolution: "@babel/compat-data@npm:7.26.3"
+ checksum: 10c0/d63e71845c34dfad8d7ff8c15b562e620dbf60e68e3abfa35681d24d612594e8e5ec9790d831a287ecd79ce00f48e7ffddc85c5ce94af7242d45917b9c1a5f90
+ languageName: node
+ linkType: hard
+
"@babel/core@npm:7.26.0, @babel/core@npm:^7.1.0, @babel/core@npm:^7.11.1, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.14.0, @babel/core@npm:^7.16.0, @babel/core@npm:^7.22.9, @babel/core@npm:^7.23.9, @babel/core@npm:^7.26.0, @babel/core@npm:^7.7.2, @babel/core@npm:^7.8.0":
version: 7.26.0
resolution: "@babel/core@npm:7.26.0"
@@ -1349,8 +1375,8 @@ __metadata:
linkType: hard
"@babel/eslint-parser@npm:^7.16.3":
- version: 7.26.5
- resolution: "@babel/eslint-parser@npm:7.26.5"
+ version: 7.25.9
+ resolution: "@babel/eslint-parser@npm:7.25.9"
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1"
eslint-visitor-keys: "npm:^2.1.0"
@@ -1358,11 +1384,11 @@ __metadata:
peerDependencies:
"@babel/core": ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- checksum: 10c0/b72b148096c3155c7cfec1fb8a6df3ff518a9ece086766fb924fc461867cf22421c7b475febba8831c2f1ef44c1b045c480cc6fa5b0c0c003908329a9b067426
+ checksum: 10c0/7dc525da9a076906aff562f82373765785732edf306e2be6497e347ed73be80d3544f2f845a77c2376bfa1c7c8c3580ea7346b12b78d8ddf4365c44fe9c35c4b
languageName: node
linkType: hard
-"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.18.13, @babel/generator@npm:^7.26.0, @babel/generator@npm:^7.26.2, @babel/generator@npm:^7.26.5, @babel/generator@npm:^7.7.2":
+"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.18.13, @babel/generator@npm:^7.26.0, @babel/generator@npm:^7.26.2, @babel/generator@npm:^7.7.2":
version: 7.26.5
resolution: "@babel/generator@npm:7.26.5"
dependencies:
@@ -1375,6 +1401,19 @@ __metadata:
languageName: node
linkType: hard
+"@babel/generator@npm:^7.26.3":
+ version: 7.26.3
+ resolution: "@babel/generator@npm:7.26.3"
+ dependencies:
+ "@babel/parser": "npm:^7.26.3"
+ "@babel/types": "npm:^7.26.3"
+ "@jridgewell/gen-mapping": "npm:^0.3.5"
+ "@jridgewell/trace-mapping": "npm:^0.3.25"
+ jsesc: "npm:^3.0.2"
+ checksum: 10c0/54f260558e3e4ec8942da3cde607c35349bb983c3a7c5121243f96893fba3e8cd62e1f1773b2051f936f8c8a10987b758d5c7d76dbf2784e95bb63ab4843fa00
+ languageName: node
+ linkType: hard
+
"@babel/helper-annotate-as-pure@npm:^7.18.6, @babel/helper-annotate-as-pure@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-annotate-as-pure@npm:7.25.9"
@@ -1385,15 +1424,15 @@ __metadata:
linkType: hard
"@babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9":
- version: 7.26.5
- resolution: "@babel/helper-compilation-targets@npm:7.26.5"
+ version: 7.25.9
+ resolution: "@babel/helper-compilation-targets@npm:7.25.9"
dependencies:
- "@babel/compat-data": "npm:^7.26.5"
+ "@babel/compat-data": "npm:^7.25.9"
"@babel/helper-validator-option": "npm:^7.25.9"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
- checksum: 10c0/9da5c77e5722f1a2fcb3e893049a01d414124522bbf51323bb1a0c9dcd326f15279836450fc36f83c9e8a846f3c40e88be032ed939c5a9840922bed6073edfb4
+ checksum: 10c0/a6b26a1e4222e69ef8e62ee19374308f060b007828bc11c65025ecc9e814aba21ff2175d6d3f8bf53c863edd728ee8f94ba7870f8f90a37d39552ad9933a8aaa
languageName: node
linkType: hard
@@ -1484,10 +1523,10 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.26.5, @babel/helper-plugin-utils@npm:^7.8.0":
- version: 7.26.5
- resolution: "@babel/helper-plugin-utils@npm:7.26.5"
- checksum: 10c0/cdaba71d4b891aa6a8dfbe5bac2f94effb13e5fa4c2c487667fdbaa04eae059b78b28d85a885071f45f7205aeb56d16759e1bed9c118b94b16e4720ef1ab0f65
+"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.8.0":
+ version: 7.25.9
+ resolution: "@babel/helper-plugin-utils@npm:7.25.9"
+ checksum: 10c0/483066a1ba36ff16c0116cd24f93de05de746a603a777cd695ac7a1b034928a65a4ecb35f255761ca56626435d7abdb73219eba196f9aa83b6c3c3169325599d
languageName: node
linkType: hard
@@ -1505,15 +1544,15 @@ __metadata:
linkType: hard
"@babel/helper-replace-supers@npm:^7.25.9":
- version: 7.26.5
- resolution: "@babel/helper-replace-supers@npm:7.26.5"
+ version: 7.25.9
+ resolution: "@babel/helper-replace-supers@npm:7.25.9"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.25.9"
"@babel/helper-optimise-call-expression": "npm:^7.25.9"
- "@babel/traverse": "npm:^7.26.5"
+ "@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10c0/b19b1245caf835207aaaaac3a494f03a16069ae55e76a2e1350b5acd560e6a820026997a8160e8ebab82ae873e8208759aa008eb8422a67a775df41f0a4633d4
+ checksum: 10c0/0b40d7d2925bd3ba4223b3519e2e4d2456d471ad69aa458f1c1d1783c80b522c61f8237d3a52afc9e47c7174129bbba650df06393a6787d5722f2ec7f223c3f4
languageName: node
linkType: hard
@@ -1580,6 +1619,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/parser@npm:^7.26.3":
+ version: 7.26.3
+ resolution: "@babel/parser@npm:7.26.3"
+ dependencies:
+ "@babel/types": "npm:^7.26.3"
+ bin:
+ parser: ./bin/babel-parser.js
+ checksum: 10c0/48f736374e61cfd10ddbf7b80678514ae1f16d0e88bc793d2b505d73d9b987ea786fc8c2f7ee8f8b8c467df062030eb07fd0eb2168f0f541ca1f542775852cad
+ languageName: node
+ linkType: hard
+
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.25.9"
@@ -1817,7 +1867,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.26.0":
+"@babel/plugin-syntax-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.25.9":
version: 7.26.0
resolution: "@babel/plugin-syntax-flow@npm:7.26.0"
dependencies:
@@ -2032,13 +2082,13 @@ __metadata:
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0, @babel/plugin-transform-block-scoped-functions@npm:^7.25.9":
- version: 7.26.5
- resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.26.5"
+ version: 7.25.9
+ resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.26.5"
+ "@babel/helper-plugin-utils": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/2f3060800ead46b09971dd7bf830d66383b7bc61ced9945633b4ef9bf87787956ea83fcf49b387cecb377812588c6b81681714c760f9cf89ecba45edcbab1192
+ checksum: 10c0/e92ba0e3d72c038513844d8fca1cc8437dcb35cd42778e97fd03cb8303380b201468611e7ecfdcae3de33473b2679fe2de1552c5f925d112c5693425cf851f10
languageName: node
linkType: hard
@@ -2185,14 +2235,14 @@ __metadata:
linkType: hard
"@babel/plugin-transform-flow-strip-types@npm:^7.0.0, @babel/plugin-transform-flow-strip-types@npm:^7.16.0":
- version: 7.26.5
- resolution: "@babel/plugin-transform-flow-strip-types@npm:7.26.5"
+ version: 7.25.9
+ resolution: "@babel/plugin-transform-flow-strip-types@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.26.5"
- "@babel/plugin-syntax-flow": "npm:^7.26.0"
+ "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/plugin-syntax-flow": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/61a0c0b652931cd0344e3357e41a89a717c787a55cb9e3381681ea5dfb8f267f6309bd337bc2064ffb267ba5eac92dd0f52984d376c23da105e7767266c2fc6f
+ checksum: 10c0/d4b79769a5b8bfc1a0766ed2158417e7efa53cdb5776161f641a642019c0822a1288f2ccd36c16a4bca77c64ccf1bab7e36aa1419adc417606acc6eddc126339
languageName: node
linkType: hard
@@ -2339,13 +2389,13 @@ __metadata:
linkType: hard
"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.25.9":
- version: 7.26.5
- resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.26.5"
+ version: 7.25.9
+ resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.26.5"
+ "@babel/helper-plugin-utils": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/2e4b84745f9e8c40caf3e611641de4d6c7da6f96c2925b7fe568e3b031ed1864e325b9dffc9cda4e442fc40be43ffabb088782e980d411e0562bd5222df547ec
+ checksum: 10c0/eb623db5be078a1c974afe7c7797b0309ba2ea9e9237c0b6831ade0f56d8248bb4ab3432ab34495ff8c877ec2fe412ff779d1e9b3c2b8139da18e1753d950bc3
languageName: node
linkType: hard
@@ -2645,17 +2695,17 @@ __metadata:
linkType: hard
"@babel/plugin-transform-typescript@npm:^7.25.9":
- version: 7.26.5
- resolution: "@babel/plugin-transform-typescript@npm:7.26.5"
+ version: 7.26.3
+ resolution: "@babel/plugin-transform-typescript@npm:7.26.3"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.25.9"
"@babel/helper-create-class-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.26.5"
+ "@babel/helper-plugin-utils": "npm:^7.25.9"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
"@babel/plugin-syntax-typescript": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/64204b1f1c77d896142071cc174e7bb4fbc597bdc0ea73aec8de1a72d252755db381b9ed40342fc283c32387d7375d0803d0aed8262dd503633f5035148d47a0
+ checksum: 10c0/0a0509ec56666fab5b557d573254665956a377916fc1e7cee309c0711d11257338ba7ee678db03603a3985d2c6c0b210b788fb6b9616d8fc0595469e39089a8f
languageName: node
linkType: hard
@@ -2849,18 +2899,18 @@ __metadata:
languageName: node
linkType: hard
-"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.16.8, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.7.2":
- version: 7.26.5
- resolution: "@babel/traverse@npm:7.26.5"
+"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.16.8, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.7.2":
+ version: 7.26.4
+ resolution: "@babel/traverse@npm:7.26.4"
dependencies:
"@babel/code-frame": "npm:^7.26.2"
- "@babel/generator": "npm:^7.26.5"
- "@babel/parser": "npm:^7.26.5"
+ "@babel/generator": "npm:^7.26.3"
+ "@babel/parser": "npm:^7.26.3"
"@babel/template": "npm:^7.25.9"
- "@babel/types": "npm:^7.26.5"
+ "@babel/types": "npm:^7.26.3"
debug: "npm:^4.3.1"
globals: "npm:^11.1.0"
- checksum: 10c0/0779059ecf63e31446564cf31adf170e701e8017ef02c819c57924a9a83d6b2ce41dbff3ef295589da9410497a3e575655bb8084ca470e0ab1bc193128afa9fe
+ checksum: 10c0/cf25d0eda9505daa0f0832ad786b9e28c9d967e823aaf7fbe425250ab198c656085495aa6bed678b27929e095c84eea9fd778b851a31803da94c9bc4bf4eaef7
languageName: node
linkType: hard
@@ -2874,6 +2924,16 @@ __metadata:
languageName: node
linkType: hard
+"@babel/types@npm:^7.26.3":
+ version: 7.26.3
+ resolution: "@babel/types@npm:7.26.3"
+ dependencies:
+ "@babel/helper-string-parser": "npm:^7.25.9"
+ "@babel/helper-validator-identifier": "npm:^7.25.9"
+ checksum: 10c0/966c5242c5e55c8704bf7a7418e7be2703a0afa4d19a8480999d5a4ef13d095dd60686615fe5983cb7593b4b06ba3a7de8d6ca501c1d78bdd233a10d90be787b
+ languageName: node
+ linkType: hard
+
"@balena/dockerignore@npm:^1.0.2":
version: 1.0.2
resolution: "@balena/dockerignore@npm:1.0.2"
@@ -5415,13 +5475,13 @@ __metadata:
linkType: soft
"@fastify/ajv-compiler@npm:^4.0.0":
- version: 4.0.2
- resolution: "@fastify/ajv-compiler@npm:4.0.2"
+ version: 4.0.1
+ resolution: "@fastify/ajv-compiler@npm:4.0.1"
dependencies:
ajv: "npm:^8.12.0"
ajv-formats: "npm:^3.0.1"
fast-uri: "npm:^3.0.0"
- checksum: 10c0/ca048db219cc958fb1b962f5dfc141f29e067ecb28a8dbe782bbef80ae3c920021468009cad613f0ed68db410890bb09c773ba2f33cb13e055b48c9c338bd8fa
+ checksum: 10c0/178d06e799e6ea19d4b579cc90e11ef50babda9fc2828d85edbd7b08aaa5a63dad2a42ba92e07e9c1e5da78e4382854bb1e99a6f2f5e61da67c670dc3572842e
languageName: node
linkType: hard
@@ -5440,11 +5500,11 @@ __metadata:
linkType: hard
"@fastify/fast-json-stringify-compiler@npm:^5.0.0":
- version: 5.0.2
- resolution: "@fastify/fast-json-stringify-compiler@npm:5.0.2"
+ version: 5.0.1
+ resolution: "@fastify/fast-json-stringify-compiler@npm:5.0.1"
dependencies:
fast-json-stringify: "npm:^6.0.0"
- checksum: 10c0/835f91cdb4911bbf50884ce60fa6937564e50f81cb134e81e251344ad7ec022ac500a54843e5167819a214828a369c996e68fbd5347965d336908b44904812e3
+ checksum: 10c0/dc294c24684fe900b9190f3b4d8e52b6438bf9e737dbd2b3b202d906f71ef1fb406c031c40fc34f52c61f4f00e1a0d5753ce5a88064de371248fb4116c02066b
languageName: node
linkType: hard
@@ -5475,21 +5535,21 @@ __metadata:
linkType: hard
"@floating-ui/core@npm:^1.6.0":
- version: 1.6.9
- resolution: "@floating-ui/core@npm:1.6.9"
+ version: 1.6.8
+ resolution: "@floating-ui/core@npm:1.6.8"
dependencies:
- "@floating-ui/utils": "npm:^0.2.9"
- checksum: 10c0/77debdfc26bc36c6f5ae1f26ab3c15468215738b3f5682af4e1915602fa21ba33ad210273f31c9d2da1c531409929e1afb1138b1608c6b54a0f5853ee84c340d
+ "@floating-ui/utils": "npm:^0.2.8"
+ checksum: 10c0/d6985462aeccae7b55a2d3f40571551c8c42bf820ae0a477fc40ef462e33edc4f3f5b7f11b100de77c9b58ecb581670c5c3f46d0af82b5e30aa185c735257eb9
languageName: node
linkType: hard
"@floating-ui/dom@npm:^1.0.0":
- version: 1.6.13
- resolution: "@floating-ui/dom@npm:1.6.13"
+ version: 1.6.12
+ resolution: "@floating-ui/dom@npm:1.6.12"
dependencies:
"@floating-ui/core": "npm:^1.6.0"
- "@floating-ui/utils": "npm:^0.2.9"
- checksum: 10c0/272242d2eb6238ffcee0cb1f3c66e0eafae804d5d7b449db5ecf904bc37d31ad96cf575a9e650b93c1190f64f49a684b1559d10e05ed3ec210628b19116991a9
+ "@floating-ui/utils": "npm:^0.2.8"
+ checksum: 10c0/c67b39862175b175c6ac299ea970f17a22c7482cfdf3b1bc79313407bf0880188b022b878953fa69d3ce166ff2bd9ae57c86043e5dd800c262b470d877591b7d
languageName: node
linkType: hard
@@ -5519,7 +5579,7 @@ __metadata:
languageName: node
linkType: hard
-"@floating-ui/utils@npm:^0.2.8, @floating-ui/utils@npm:^0.2.9":
+"@floating-ui/utils@npm:^0.2.8":
version: 0.2.9
resolution: "@floating-ui/utils@npm:0.2.9"
checksum: 10c0/48bbed10f91cb7863a796cc0d0e917c78d11aeb89f98d03fc38d79e7eb792224a79f538ed8a2d5d5584511d4ca6354ef35f1712659fd569868e342df4398ad6f
@@ -5527,11 +5587,11 @@ __metadata:
linkType: hard
"@formatjs/intl-localematcher@npm:^0.5.4":
- version: 0.5.10
- resolution: "@formatjs/intl-localematcher@npm:0.5.10"
+ version: 0.5.9
+ resolution: "@formatjs/intl-localematcher@npm:0.5.9"
dependencies:
tslib: "npm:2"
- checksum: 10c0/362ec83aca9382165be575f1cefa477478339e6fead8ca8866185ce6e58427ea1487a811b12c73d1bcfa99fd4db0c24543b35c823451839f585576bfccb8c9cc
+ checksum: 10c0/0b66aee81b9fd8fff9e737fd98e71edd20beb077713fa81b471bd6b1c6fe17f5d5bd6d1883cc0bf6f7ea5bfaedd3a2009aa3235bfacdfbc4950f2b4106d5ac76
languageName: node
linkType: hard
@@ -7538,16 +7598,16 @@ __metadata:
linkType: soft
"@graphql-tools/apollo-engine-loader@npm:^8.0.0":
- version: 8.0.13
- resolution: "@graphql-tools/apollo-engine-loader@npm:8.0.13"
+ version: 8.0.9
+ resolution: "@graphql-tools/apollo-engine-loader@npm:8.0.9"
dependencies:
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@ardatan/sync-fetch": "npm:^0.0.1"
+ "@graphql-tools/utils": "npm:^10.6.4"
"@whatwg-node/fetch": "npm:^0.10.0"
- sync-fetch: "npm:0.6.0-2"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/4082de5d8d6c299b8819fecb874e3ed44e55819fa37010fda2e648fef0bf95a55b9451d8fd4da9116d94567256ba354394997b6984bc3c6c176c18e86680018f
+ checksum: 10c0/7202d9481ec344a0b19218a9d7bb6ee61f25510c509d4d041fbfdd53f89539ac9418afc90913c5155fb5ab28cf055e0ab9129397c46eb5819069f84a4687dfc3
languageName: node
linkType: hard
@@ -7593,17 +7653,17 @@ __metadata:
linkType: hard
"@graphql-tools/code-file-loader@npm:^8.0.0, @graphql-tools/code-file-loader@npm:^8.1.3, @graphql-tools/code-file-loader@npm:^8.1.7, @graphql-tools/code-file-loader@npm:^8.1.8, @graphql-tools/code-file-loader@npm:~8.1.0":
- version: 8.1.13
- resolution: "@graphql-tools/code-file-loader@npm:8.1.13"
+ version: 8.1.11
+ resolution: "@graphql-tools/code-file-loader@npm:8.1.11"
dependencies:
- "@graphql-tools/graphql-tag-pluck": "npm:8.3.12"
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/graphql-tag-pluck": "npm:8.3.10"
+ "@graphql-tools/utils": "npm:^10.7.0"
globby: "npm:^11.0.3"
tslib: "npm:^2.4.0"
unixify: "npm:^1.0.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/fe9639739f0d8b734ea0515217f1aa0def53c137225f0fecd7d3f73daf6db28c927165ecd31c3df64593619c21d2ba2e5f3dbaa37942ac458309fc5092f270ef
+ checksum: 10c0/799c8bbcec1ebc9df2f73fdc40adb17575fb414c97799e12ca0b6048eb21c02e517fa33facea802bd43a155e5f05375ed258da24dd87a00155d209d1de761304
languageName: node
linkType: hard
@@ -7717,26 +7777,26 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-tools/executor-legacy-ws@npm:^1.1.10":
- version: 1.1.10
- resolution: "@graphql-tools/executor-legacy-ws@npm:1.1.10"
+"@graphql-tools/executor-legacy-ws@npm:^1.1.8":
+ version: 1.1.8
+ resolution: "@graphql-tools/executor-legacy-ws@npm:1.1.8"
dependencies:
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/utils": "npm:^10.7.0"
"@types/ws": "npm:^8.0.0"
isomorphic-ws: "npm:^5.0.0"
tslib: "npm:^2.4.0"
ws: "npm:^8.17.1"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/451b7a0b61901cfe2ce6795fbbd3925d26bba132f9e9b5ba9b64b145b7dbe1f8f2f1ff46d039132b97d5d2ebe70edc3ad3f10c3d86a7798c14b0573710a97430
+ checksum: 10c0/0794380a3eafdb10c60e6e43c25c592f44ce6c1d183d996ec3a2668031f214eebdda47931ea5f9fec149f34243df3191ba41359cbd990452d2713626674d14b4
languageName: node
linkType: hard
"@graphql-tools/executor@npm:^1.3.10, @graphql-tools/executor@npm:^1.3.2, @graphql-tools/executor@npm:^1.3.6, @graphql-tools/executor@npm:^1.3.7":
- version: 1.3.12
- resolution: "@graphql-tools/executor@npm:1.3.12"
+ version: 1.3.10
+ resolution: "@graphql-tools/executor@npm:1.3.10"
dependencies:
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/utils": "npm:^10.7.0"
"@graphql-typed-document-node/core": "npm:^3.2.0"
"@repeaterjs/repeater": "npm:^3.0.4"
"@whatwg-node/disposablestack": "npm:^0.0.5"
@@ -7744,7 +7804,7 @@ __metadata:
value-or-promise: "npm:^1.0.12"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/9a8b1ef6105d44563d0800f82e5068bfc614bcb52d735a3f77a0d4dc36d8e30e5c7d3eefcf4f8bd12562d3d3b2dcb631adb1c0baa2e570cb9484b25218ee728f
+ checksum: 10c0/fefadae7d27705e71e3ee76e3f82060a7c8b07376b4fc5133ca64c38fc51f429be304ec0cba0bf7464fb113781c257e82e207de3766aea1d171fee0ade9ca000
languageName: node
linkType: hard
@@ -7771,35 +7831,35 @@ __metadata:
linkType: hard
"@graphql-tools/git-loader@npm:^8.0.0":
- version: 8.0.17
- resolution: "@graphql-tools/git-loader@npm:8.0.17"
+ version: 8.0.14
+ resolution: "@graphql-tools/git-loader@npm:8.0.14"
dependencies:
- "@graphql-tools/graphql-tag-pluck": "npm:8.3.12"
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/graphql-tag-pluck": "npm:8.3.9"
+ "@graphql-tools/utils": "npm:^10.6.4"
is-glob: "npm:4.0.3"
micromatch: "npm:^4.0.8"
tslib: "npm:^2.4.0"
unixify: "npm:^1.0.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/aae21343851ed39f4455495613c9a9de10f7765f0c0eb3c8518e29a8af5ff55ec8d1cc698b5fc3579a088e0153eddc1d1bcf9b38bbd82167c8b0f32a982e2f85
+ checksum: 10c0/a296f19f75da6e00a805b601466cc80a2db6393a1310f7a04bc098601fad7597fcd15537bab9c6525b8adb67e2c0dd904d2d25e15c1b1f85bd0833ff9589798b
languageName: node
linkType: hard
"@graphql-tools/github-loader@npm:^8.0.0":
- version: 8.0.13
- resolution: "@graphql-tools/github-loader@npm:8.0.13"
+ version: 8.0.9
+ resolution: "@graphql-tools/github-loader@npm:8.0.9"
dependencies:
+ "@ardatan/sync-fetch": "npm:^0.0.1"
"@graphql-tools/executor-http": "npm:^1.1.9"
- "@graphql-tools/graphql-tag-pluck": "npm:^8.3.12"
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/graphql-tag-pluck": "npm:^8.3.9"
+ "@graphql-tools/utils": "npm:^10.6.4"
"@whatwg-node/fetch": "npm:^0.10.0"
- sync-fetch: "npm:0.6.0-2"
tslib: "npm:^2.4.0"
value-or-promise: "npm:^1.0.12"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/2a70a600c1c50035e0e7afa05e1e7cb45ab3fd123f95f2d7c21f8696cc0141943d56d2e54be70cb2b516b2c235297930137ec7c4fe550b59c31045ac5f74010d
+ checksum: 10c0/b1471f43ec5c3ea39b87e4cccbf28e8b0c8c33e49f1b0941db311834d4bcb9bc84ca31e68b2fa2c596957bbbe2ed9850360ad3e5f6f9d5168864a8100217cf75
languageName: node
linkType: hard
@@ -7818,34 +7878,51 @@ __metadata:
linkType: hard
"@graphql-tools/graphql-file-loader@npm:^8.0.0, @graphql-tools/graphql-file-loader@npm:^8.0.1, @graphql-tools/graphql-file-loader@npm:^8.0.5, @graphql-tools/graphql-file-loader@npm:^8.0.6, @graphql-tools/graphql-file-loader@npm:~8.0.0":
- version: 8.0.11
- resolution: "@graphql-tools/graphql-file-loader@npm:8.0.11"
+ version: 8.0.9
+ resolution: "@graphql-tools/graphql-file-loader@npm:8.0.9"
dependencies:
- "@graphql-tools/import": "npm:7.0.11"
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/import": "npm:7.0.9"
+ "@graphql-tools/utils": "npm:^10.7.0"
globby: "npm:^11.0.3"
tslib: "npm:^2.4.0"
unixify: "npm:^1.0.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/7eb7ca8eee889cc80c784ede9a244cd28d53514409242073b1aa14d2c49dc0e6838965d1e359dbdb79ad2555019c85b7dc56f1c5da836722c06cd230c2392dc1
+ checksum: 10c0/320af2085275612b7f9bc7f0e9c94d308f3ccf01c1461964d078ca5205f48bb87c0c357ce0d477d81e5611e93848ce893fa5033175f5006fd75d59d69ea6aec3
languageName: node
linkType: hard
-"@graphql-tools/graphql-tag-pluck@npm:8.3.12, @graphql-tools/graphql-tag-pluck@npm:^8.3.12":
- version: 8.3.12
- resolution: "@graphql-tools/graphql-tag-pluck@npm:8.3.12"
+"@graphql-tools/graphql-tag-pluck@npm:8.3.10":
+ version: 8.3.10
+ resolution: "@graphql-tools/graphql-tag-pluck@npm:8.3.10"
dependencies:
"@babel/core": "npm:^7.22.9"
"@babel/parser": "npm:^7.16.8"
"@babel/plugin-syntax-import-assertions": "npm:^7.20.0"
"@babel/traverse": "npm:^7.16.8"
"@babel/types": "npm:^7.16.8"
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/utils": "npm:^10.7.0"
+ tslib: "npm:^2.4.0"
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+ checksum: 10c0/55d813dccbddbb18ca71850f9967603c21cc6576549a111264c1179647828252456692e684199c52e7b69ff5f2719c086741191ac094c0fef054cc50675052fd
+ languageName: node
+ linkType: hard
+
+"@graphql-tools/graphql-tag-pluck@npm:8.3.9, @graphql-tools/graphql-tag-pluck@npm:^8.3.9":
+ version: 8.3.9
+ resolution: "@graphql-tools/graphql-tag-pluck@npm:8.3.9"
+ dependencies:
+ "@babel/core": "npm:^7.22.9"
+ "@babel/parser": "npm:^7.16.8"
+ "@babel/plugin-syntax-import-assertions": "npm:^7.20.0"
+ "@babel/traverse": "npm:^7.16.8"
+ "@babel/types": "npm:^7.16.8"
+ "@graphql-tools/utils": "npm:^10.6.4"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/ea429bf8f30a03ac1f575b49ad5dfde25319e7e7a9ee89625c7010c26b0fb1945014b9480fda69315db522301760630cc0c8cc9877946e8a35b468079dd850b8
+ checksum: 10c0/46b7b55efb96460bbdbdba6910d01191951bca971151eba7a58e3d6c6079b1678f2b6ef7d8a4bdbf703e33c664c97d5ffb1694d8d21e71059ce6f2009c175329
languageName: node
linkType: hard
@@ -7861,16 +7938,16 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-tools/import@npm:7.0.11":
- version: 7.0.11
- resolution: "@graphql-tools/import@npm:7.0.11"
+"@graphql-tools/import@npm:7.0.9":
+ version: 7.0.9
+ resolution: "@graphql-tools/import@npm:7.0.9"
dependencies:
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/utils": "npm:^10.7.0"
resolve-from: "npm:5.0.0"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/059c04632c22976c2b5444aa79213eac753516e88f229ea5cf31a5a3dab1e12b7c60bbd9e8004f5e7f6215678638ee9816ccbc4f87508b2a99352d1d2ca9b306
+ checksum: 10c0/e4e429221b0c032280a3fc9dcaf6d54f2052ec055451e6a24714353a53dc8198996d499f0b7ddd41a0964d187919ed54ae9d153e77dac62b07ded37f045c4594
languageName: node
linkType: hard
@@ -7888,16 +7965,16 @@ __metadata:
linkType: hard
"@graphql-tools/json-file-loader@npm:^8.0.0, @graphql-tools/json-file-loader@npm:~8.0.0":
- version: 8.0.11
- resolution: "@graphql-tools/json-file-loader@npm:8.0.11"
+ version: 8.0.8
+ resolution: "@graphql-tools/json-file-loader@npm:8.0.8"
dependencies:
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/utils": "npm:^10.6.4"
globby: "npm:^11.0.3"
tslib: "npm:^2.4.0"
unixify: "npm:^1.0.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/ac9ab682eeed2f2c853bc8604aaec8f4173b03087895e29ef13dee9b48a804e1b0b965ab6119c9dbb0adc08e4f0d735869bfe3ed344110762450ef26e8a3ba11
+ checksum: 10c0/53a48efa1788b48a9b9834f3820c4155290b0dd7373f828bb6f445628734a8a07654d96a70222b11669e8b374203a7b2e9a22f17f2bfa91bb5a2b488f6683434
languageName: node
linkType: hard
@@ -7921,16 +7998,16 @@ __metadata:
linkType: hard
"@graphql-tools/load@npm:^8.0.0, @graphql-tools/load@npm:^8.0.1, @graphql-tools/load@npm:^8.0.2, @graphql-tools/load@npm:^8.0.7, @graphql-tools/load@npm:~8.0.0":
- version: 8.0.12
- resolution: "@graphql-tools/load@npm:8.0.12"
+ version: 8.0.10
+ resolution: "@graphql-tools/load@npm:8.0.10"
dependencies:
- "@graphql-tools/schema": "npm:^10.0.16"
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/schema": "npm:^10.0.14"
+ "@graphql-tools/utils": "npm:^10.7.0"
p-limit: "npm:3.1.0"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/02f030c17ea83429491a125b32b7b99d3a2583cbd2bdcfeb24561501d7b48332bb274558704363115230075fc79816210a6ff3ad825a45639a257ed11d37361c
+ checksum: 10c0/5b2d09244bfd5c3d8e67ffdfb8bc856f34bf7e37f133e07677c8b663a76ffcc9998445c0214fedcaae48a12e0d703f61006691492a64cbc695e22e13e1e8f208
languageName: node
linkType: hard
@@ -7983,6 +8060,18 @@ __metadata:
languageName: node
linkType: hard
+"@graphql-tools/merge@npm:^9.0.15":
+ version: 9.0.15
+ resolution: "@graphql-tools/merge@npm:9.0.15"
+ dependencies:
+ "@graphql-tools/utils": "npm:^10.7.0"
+ tslib: "npm:^2.4.0"
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+ checksum: 10c0/f40e4b32dc296f7d258e2cf64c3dbca4761a8665d2117d19c2765921e329fe35d4f006acf661d4fc5d5c951e773ad44ad803ee2acd2d14d4f3f542b9478835b8
+ languageName: node
+ linkType: hard
+
"@graphql-tools/mock@npm:^8.1.2":
version: 8.7.20
resolution: "@graphql-tools/mock@npm:8.7.20"
@@ -7998,16 +8087,16 @@ __metadata:
linkType: hard
"@graphql-tools/mock@npm:^9.0.3":
- version: 9.0.14
- resolution: "@graphql-tools/mock@npm:9.0.14"
+ version: 9.0.12
+ resolution: "@graphql-tools/mock@npm:9.0.12"
dependencies:
- "@graphql-tools/schema": "npm:^10.0.16"
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/schema": "npm:^10.0.14"
+ "@graphql-tools/utils": "npm:^10.7.0"
fast-json-stable-stringify: "npm:^2.1.0"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/c0f83d63969ae40811f0aadb5de9cceaa5d0146e579200b062bb7aec671d2ad17380ecda806aa0b6498e4482894b7d2e1d6081d74c155cfa96af827254db5d5b
+ checksum: 10c0/dacc38b2c45ce5fb3f344cf33ec21c512cef68b230eca4a2f3849a62df5951cddeb6984ca772a31d20aa87ba7c8d789607538ad0d8e2a7e65fe6b9c960dfa16d
languageName: node
linkType: hard
@@ -8073,33 +8162,33 @@ __metadata:
linkType: hard
"@graphql-tools/relay-operation-optimizer@npm:^7.0.0":
- version: 7.0.11
- resolution: "@graphql-tools/relay-operation-optimizer@npm:7.0.11"
+ version: 7.0.8
+ resolution: "@graphql-tools/relay-operation-optimizer@npm:7.0.8"
dependencies:
"@ardatan/relay-compiler": "npm:12.0.0"
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/utils": "npm:^10.6.4"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/14093248b2938aeaf7e5efd15dd57d1e65bf74e670ac668289079d74435825cdf97c086272804f33ec9c7cca9fb9d3a681bd632c589e414463a1933a6ca91e0d
+ checksum: 10c0/7f36bcf279573f2174eeee0ef0725fb98a2e474da94af7ff776f6c6b57bb384b24981182beaeeb4f253f64aa18f97629195299805af459c593e3eeb2f2c4fb5f
languageName: node
linkType: hard
"@graphql-tools/resolvers-composition@npm:^7.0.0":
- version: 7.0.11
- resolution: "@graphql-tools/resolvers-composition@npm:7.0.11"
+ version: 7.0.9
+ resolution: "@graphql-tools/resolvers-composition@npm:7.0.9"
dependencies:
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/utils": "npm:^10.7.0"
lodash: "npm:4.17.21"
micromatch: "npm:^4.0.8"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/d2123cb2e58c31c68a43f78a5e1a2dfeec7fa6449ab70b22ebda64263df515bca24665a550680654a5f7cc4d894bc730950c907fd3f5bc34fe79a41bf09e16cc
+ checksum: 10c0/f65987456821b3324c119a8f4b4b548e5b8187f2007dc329e6a7550f88619684bb13bc33593f1be3fe1e059855cf8d7c2b5380ebe63659eeaa4b25744d83e20b
languageName: node
linkType: hard
-"@graphql-tools/schema@npm:10.0.16, @graphql-tools/schema@npm:^10.0.0, @graphql-tools/schema@npm:^10.0.11, @graphql-tools/schema@npm:^10.0.13, @graphql-tools/schema@npm:^10.0.16, @graphql-tools/schema@npm:^10.0.5, @graphql-tools/schema@npm:^10.0.6":
+"@graphql-tools/schema@npm:10.0.16, @graphql-tools/schema@npm:^10.0.0, @graphql-tools/schema@npm:^10.0.11, @graphql-tools/schema@npm:^10.0.13, @graphql-tools/schema@npm:^10.0.5, @graphql-tools/schema@npm:^10.0.6":
version: 10.0.16
resolution: "@graphql-tools/schema@npm:10.0.16"
dependencies:
@@ -8139,6 +8228,20 @@ __metadata:
languageName: node
linkType: hard
+"@graphql-tools/schema@npm:^10.0.14":
+ version: 10.0.14
+ resolution: "@graphql-tools/schema@npm:10.0.14"
+ dependencies:
+ "@graphql-tools/merge": "npm:^9.0.15"
+ "@graphql-tools/utils": "npm:^10.7.0"
+ tslib: "npm:^2.4.0"
+ value-or-promise: "npm:^1.0.12"
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+ checksum: 10c0/c8779781da9d43ad97dd6fc77c49cd093d88df236a097c6739b65b5e908a3f7df30f79a15f2616a250512f14ccf67ed2e3d58ddd8ee38ec829f54edb7c0f9d11
+ languageName: node
+ linkType: hard
+
"@graphql-tools/schema@npm:^9.0.0, @graphql-tools/schema@npm:^9.0.18":
version: 9.0.19
resolution: "@graphql-tools/schema@npm:9.0.19"
@@ -8204,24 +8307,24 @@ __metadata:
linkType: hard
"@graphql-tools/url-loader@npm:^8.0.0, @graphql-tools/url-loader@npm:^8.0.15, @graphql-tools/url-loader@npm:^8.0.9, @graphql-tools/url-loader@npm:~8.0.0":
- version: 8.0.24
- resolution: "@graphql-tools/url-loader@npm:8.0.24"
+ version: 8.0.21
+ resolution: "@graphql-tools/url-loader@npm:8.0.21"
dependencies:
+ "@ardatan/sync-fetch": "npm:^0.0.1"
"@graphql-tools/executor-graphql-ws": "npm:^1.3.2"
"@graphql-tools/executor-http": "npm:^1.1.9"
- "@graphql-tools/executor-legacy-ws": "npm:^1.1.10"
- "@graphql-tools/utils": "npm:^10.7.2"
+ "@graphql-tools/executor-legacy-ws": "npm:^1.1.8"
+ "@graphql-tools/utils": "npm:^10.7.0"
"@graphql-tools/wrap": "npm:^10.0.16"
"@types/ws": "npm:^8.0.0"
"@whatwg-node/fetch": "npm:^0.10.0"
isomorphic-ws: "npm:^5.0.0"
- sync-fetch: "npm:0.6.0-2"
tslib: "npm:^2.4.0"
value-or-promise: "npm:^1.0.11"
ws: "npm:^8.17.1"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- checksum: 10c0/76f9b862292c5204405bf2fe1dc97bdee2c76fc44298d0bad42a540521c46e185b7bf0cc3d69e4afd7e011a795e9ccd645e2566769972a4575d137613799739a
+ checksum: 10c0/9fff91ca7c469209934b64878bd26bd2aa986155e9061fea1746ce1a7b9d2a7e83455b879a6c16c5eb83f0339624544c47cc77bd059003b7b733b3e5ae0c1095
languageName: node
linkType: hard
@@ -8346,7 +8449,7 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-yoga/plugin-apollo-inline-trace@npm:3.10.9, @graphql-yoga/plugin-apollo-inline-trace@npm:^3.10.9":
+"@graphql-yoga/plugin-apollo-inline-trace@npm:3.10.9":
version: 3.10.9
resolution: "@graphql-yoga/plugin-apollo-inline-trace@npm:3.10.9"
dependencies:
@@ -8362,44 +8465,60 @@ __metadata:
languageName: node
linkType: hard
+"@graphql-yoga/plugin-apollo-inline-trace@npm:^3.10.6":
+ version: 3.10.6
+ resolution: "@graphql-yoga/plugin-apollo-inline-trace@npm:3.10.6"
+ dependencies:
+ "@apollo/usage-reporting-protobuf": "npm:^4.1.1"
+ "@envelop/on-resolve": "npm:^4.1.1"
+ tslib: "npm:^2.5.2"
+ peerDependencies:
+ "@graphql-tools/utils": ^10.6.1
+ "@whatwg-node/fetch": ^0.10.1
+ graphql: ^15.2.0 || ^16.0.0
+ graphql-yoga: ^5.10.6
+ checksum: 10c0/2746846de394559bb7dda1106972b624ee7549027bffd2493d9b3c50ea4db896885e719aa75080db85a5643d6a444454f36013ca1d0c4d0725ed04b2b4f48481
+ languageName: node
+ linkType: hard
+
"@graphql-yoga/plugin-apollo-usage-report@npm:^0.5.3":
- version: 0.5.6
- resolution: "@graphql-yoga/plugin-apollo-usage-report@npm:0.5.6"
+ version: 0.5.3
+ resolution: "@graphql-yoga/plugin-apollo-usage-report@npm:0.5.3"
dependencies:
"@apollo/usage-reporting-protobuf": "npm:^4.1.1"
- "@graphql-yoga/plugin-apollo-inline-trace": "npm:^3.10.9"
+ "@graphql-yoga/plugin-apollo-inline-trace": "npm:^3.10.6"
tslib: "npm:^2.5.2"
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
- graphql-yoga: ^5.10.9
- checksum: 10c0/3813faaafa9f76bf49f0073b6b7620d05a8b04165fde336cd8a212e3a2cfb7cedc24c1ec02e6c380a9d74e436123beb81aa767f94d0fef7b3de532e12a9e7311
+ graphql-yoga: ^5.10.6
+ checksum: 10c0/58ea576f45bf38daf7ae84854ff21b7323604da7d0d2596cf76b83a0a0bd0fb30685d08756ce049b5924f569496333dc1ac2b291c361e3f20e4eea10c979b1e2
languageName: node
linkType: hard
"@graphql-yoga/plugin-csrf-prevention@npm:^3.10.6":
- version: 3.10.9
- resolution: "@graphql-yoga/plugin-csrf-prevention@npm:3.10.9"
+ version: 3.10.6
+ resolution: "@graphql-yoga/plugin-csrf-prevention@npm:3.10.6"
peerDependencies:
- graphql-yoga: ^5.10.9
- checksum: 10c0/28e4c262df5e4a39e5db7e28791d75b2b60f46aa9045aaad9705977341c00b55c51d1bcec2fdb23cbc5b7775b6f1e95508533dd7f6ac0694226b032890453ce9
+ graphql-yoga: ^5.10.6
+ checksum: 10c0/c264b085df611c5178c57c550b7ddcf2be40ebff9d3e4d4601fc403d7241354cfd4d0e174ff430e3460fbb58d6961cbc07f8a8ce66febd98382d9267aa3592c3
languageName: node
linkType: hard
"@graphql-yoga/plugin-defer-stream@npm:^3.10.6":
- version: 3.10.9
- resolution: "@graphql-yoga/plugin-defer-stream@npm:3.10.9"
+ version: 3.10.6
+ resolution: "@graphql-yoga/plugin-defer-stream@npm:3.10.6"
dependencies:
"@graphql-tools/utils": "npm:^10.6.1"
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
- graphql-yoga: ^5.10.9
- checksum: 10c0/2dd3c06f0700f033c390656b0e7df835f5173a4b71bd3c296252e29088a31011f88179aabfa478fc8263bc4d28f071e4da2f619e1f36a34b2332a6a895470217
+ graphql-yoga: ^5.10.6
+ checksum: 10c0/610d249f8de9c9da5ca8c72ecbe39cc988a9577483045def1d42725921f00a72143ed2db4d8cffc20109dbc3aa6d01687ac45152dca2f74c8742d8c576e355bf
languageName: node
linkType: hard
"@graphql-yoga/plugin-jwt@npm:^3.4.9":
- version: 3.4.10
- resolution: "@graphql-yoga/plugin-jwt@npm:3.4.10"
+ version: 3.4.9
+ resolution: "@graphql-yoga/plugin-jwt@npm:3.4.9"
dependencies:
"@whatwg-node/server-plugin-cookies": "npm:^1.0.3"
jsonwebtoken: "npm:^9.0.0"
@@ -8407,44 +8526,44 @@ __metadata:
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
- graphql-yoga: ^5.10.9
- checksum: 10c0/60a32994183203aa77e1387e1546947b37d264e58c2ceb0fa8897911abedd199e66b423405a6b06a5eda755618f76c70c5c04bc606c9bff09254d7828239c1bc
+ graphql-yoga: ^5.10.8
+ checksum: 10c0/25cd30d0650a7cc8f221d2de54444959262667cdcf09a454e476e338c5d0b6076b05e75139e125e4f31e03a68e0ee7d09fdfe37331e02176816d91afde59fbdc
languageName: node
linkType: hard
"@graphql-yoga/plugin-persisted-operations@npm:^3.0.0, @graphql-yoga/plugin-persisted-operations@npm:^3.10.6, @graphql-yoga/plugin-persisted-operations@npm:^3.9.0":
- version: 3.10.9
- resolution: "@graphql-yoga/plugin-persisted-operations@npm:3.10.9"
+ version: 3.10.8
+ resolution: "@graphql-yoga/plugin-persisted-operations@npm:3.10.8"
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
- graphql-yoga: ^5.10.9
- checksum: 10c0/6f8805464b153b77bf259f07b2d7c1bfc8f46d434406373ec44ed2ca3a8252d97325c0f98d2e0381229416bbd032b624b7ad845d625d3ec5738c8f9ebbcd5b9d
+ graphql-yoga: ^5.10.8
+ checksum: 10c0/5a315c10a4be6d43c6c3ef9c398422b07d2b6e61a17905a6058623b44e24ed805dab4feff08c109acf3cc5638d4077491b322e7f3a5bd874bcd3a9b726a4f314
languageName: node
linkType: hard
"@graphql-yoga/plugin-prometheus@npm:^6.5.3":
- version: 6.5.6
- resolution: "@graphql-yoga/plugin-prometheus@npm:6.5.6"
+ version: 6.5.3
+ resolution: "@graphql-yoga/plugin-prometheus@npm:6.5.3"
dependencies:
"@envelop/prometheus": "npm:^11.1.0"
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
- graphql-yoga: ^5.10.9
+ graphql-yoga: ^5.10.6
prom-client: ^15.0.0
- checksum: 10c0/568be764da81e7d4c5727b873337c5dd92acf2dac00415e07b00f8f6eb64ab3621616d31850f8ea33a0de96bfc6040c9e33a092365a9a08b217e8dc4d4641e4a
+ checksum: 10c0/b6538465159e1a1519a67d9a13aaae39de6c7ee68d7c7a7bbb7b8a0cd12e6df8a3d6934b0f2ac8116f1b5915046f2ba21ee05f6261ee211ba6fba9560ec5f974
languageName: node
linkType: hard
"@graphql-yoga/plugin-response-cache@npm:^3.1.1":
- version: 3.12.9
- resolution: "@graphql-yoga/plugin-response-cache@npm:3.12.9"
+ version: 3.12.8
+ resolution: "@graphql-yoga/plugin-response-cache@npm:3.12.8"
dependencies:
"@envelop/core": "npm:^5.0.2"
"@envelop/response-cache": "npm:^6.1.2"
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
- graphql-yoga: ^5.10.9
- checksum: 10c0/8dcc017092e916f08b92b01467fa6c1b8661f39023449f8862f85e44eb040268eb59bf706806e26d33c535aeaa0ed3d5408376d27c1c4e8a2ab8bf34bf9c4b57
+ graphql-yoga: ^5.10.8
+ checksum: 10c0/a55e235b93fdf0f07cd4e52d66f3087988569947aa06f815d83e5de93a35a3c21385484cd4df2460b29d090c7772cdf510dbee0567dcda880c7b854252452f41
languageName: node
linkType: hard
@@ -8483,7 +8602,7 @@ __metadata:
languageName: node
linkType: hard
-"@grpc/grpc-js@npm:1.12.5, @grpc/grpc-js@npm:^1.1.7, @grpc/grpc-js@npm:^1.11.1, @grpc/grpc-js@npm:^1.12.2, @grpc/grpc-js@npm:^1.2.8, @grpc/grpc-js@npm:^1.7.1, @grpc/grpc-js@npm:^1.8.10":
+"@grpc/grpc-js@npm:1.12.5, @grpc/grpc-js@npm:^1.1.7, @grpc/grpc-js@npm:^1.12.2, @grpc/grpc-js@npm:^1.2.8, @grpc/grpc-js@npm:^1.7.1, @grpc/grpc-js@npm:^1.8.10":
version: 1.12.5
resolution: "@grpc/grpc-js@npm:1.12.5"
dependencies:
@@ -9534,9 +9653,9 @@ __metadata:
linkType: hard
"@lit-labs/ssr-dom-shim@npm:^1.2.0":
- version: 1.3.0
- resolution: "@lit-labs/ssr-dom-shim@npm:1.3.0"
- checksum: 10c0/743a9b295ef2f186712f08883da553c9990be291409615309c99aa4946cfe440a184e4213c790c24505c80beb86b9cfecf10b5fb30ce17c83698f8424f48678d
+ version: 1.2.1
+ resolution: "@lit-labs/ssr-dom-shim@npm:1.2.1"
+ checksum: 10c0/75cecf2cc4c1a089c6984d9f45b8264e3b4947b4ebed96aef7eb201bd6b3f26caeaafedf457884ac38d4f2d99cddaf94a4b2414c02c61fbf1f64c0a0dade11f4
languageName: node
linkType: hard
@@ -11207,135 +11326,135 @@ __metadata:
languageName: node
linkType: hard
-"@rollup/rollup-android-arm-eabi@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-android-arm-eabi@npm:4.30.1"
+"@rollup/rollup-android-arm-eabi@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-android-arm-eabi@npm:4.29.1"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
-"@rollup/rollup-android-arm64@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-android-arm64@npm:4.30.1"
+"@rollup/rollup-android-arm64@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-android-arm64@npm:4.29.1"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-darwin-arm64@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-darwin-arm64@npm:4.30.1"
+"@rollup/rollup-darwin-arm64@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-darwin-arm64@npm:4.29.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-darwin-x64@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-darwin-x64@npm:4.30.1"
+"@rollup/rollup-darwin-x64@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-darwin-x64@npm:4.29.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@rollup/rollup-freebsd-arm64@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-freebsd-arm64@npm:4.30.1"
+"@rollup/rollup-freebsd-arm64@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-freebsd-arm64@npm:4.29.1"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-freebsd-x64@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-freebsd-x64@npm:4.30.1"
+"@rollup/rollup-freebsd-x64@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-freebsd-x64@npm:4.29.1"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm-gnueabihf@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.30.1"
+"@rollup/rollup-linux-arm-gnueabihf@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.29.1"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm-musleabihf@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.30.1"
+"@rollup/rollup-linux-arm-musleabihf@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.29.1"
conditions: os=linux & cpu=arm & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm64-gnu@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.30.1"
+"@rollup/rollup-linux-arm64-gnu@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.29.1"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm64-musl@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-arm64-musl@npm:4.30.1"
+"@rollup/rollup-linux-arm64-musl@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-arm64-musl@npm:4.29.1"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-loongarch64-gnu@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.30.1"
+"@rollup/rollup-linux-loongarch64-gnu@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.29.1"
conditions: os=linux & cpu=loong64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-powerpc64le-gnu@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.30.1"
+"@rollup/rollup-linux-powerpc64le-gnu@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.29.1"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-riscv64-gnu@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.30.1"
+"@rollup/rollup-linux-riscv64-gnu@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.29.1"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-s390x-gnu@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.30.1"
+"@rollup/rollup-linux-s390x-gnu@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.29.1"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-x64-gnu@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-x64-gnu@npm:4.30.1"
+"@rollup/rollup-linux-x64-gnu@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-x64-gnu@npm:4.29.1"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-x64-musl@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-linux-x64-musl@npm:4.30.1"
+"@rollup/rollup-linux-x64-musl@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-linux-x64-musl@npm:4.29.1"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-win32-arm64-msvc@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.30.1"
+"@rollup/rollup-win32-arm64-msvc@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.29.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-win32-ia32-msvc@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.30.1"
+"@rollup/rollup-win32-ia32-msvc@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.29.1"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
-"@rollup/rollup-win32-x64-msvc@npm:4.30.1":
- version: 4.30.1
- resolution: "@rollup/rollup-win32-x64-msvc@npm:4.30.1"
+"@rollup/rollup-win32-x64-msvc@npm:4.29.1":
+ version: 4.29.1
+ resolution: "@rollup/rollup-win32-x64-msvc@npm:4.29.1"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -11348,90 +11467,72 @@ __metadata:
linkType: hard
"@rushstack/eslint-patch@npm:^1.1.0, @rushstack/eslint-patch@npm:^1.10.3":
- version: 1.10.5
- resolution: "@rushstack/eslint-patch@npm:1.10.5"
- checksum: 10c0/ea66e8be3a78a48d06e8ff33221cef5749386589236bbcd24013577d2b4e1035e3dc919740c6e0f16d44c1e0b62d06d00898508fc74cc2adb0ac6b667aa5a8e4
+ version: 1.10.4
+ resolution: "@rushstack/eslint-patch@npm:1.10.4"
+ checksum: 10c0/de312bd7a3cb0f313c9720029eb719d8762fe54946cce2d33ac142b1cbb5817c4a5a92518dfa476c26311602d37f5a8f7caa90a0c73e3d6a56f9a05d2799c172
languageName: node
linkType: hard
-"@shikijs/core@npm:1.26.1":
- version: 1.26.1
- resolution: "@shikijs/core@npm:1.26.1"
+"@shikijs/core@npm:1.24.4":
+ version: 1.24.4
+ resolution: "@shikijs/core@npm:1.24.4"
dependencies:
- "@shikijs/engine-javascript": "npm:1.26.1"
- "@shikijs/engine-oniguruma": "npm:1.26.1"
- "@shikijs/types": "npm:1.26.1"
- "@shikijs/vscode-textmate": "npm:^10.0.1"
+ "@shikijs/engine-javascript": "npm:1.24.4"
+ "@shikijs/engine-oniguruma": "npm:1.24.4"
+ "@shikijs/types": "npm:1.24.4"
+ "@shikijs/vscode-textmate": "npm:^9.3.1"
"@types/hast": "npm:^3.0.4"
hast-util-to-html: "npm:^9.0.4"
- checksum: 10c0/c1b9748db7b6209b19eaabb68592e3c5ed6e4d1350ce4ffa6ab3c48d212421a33080b548f9e36457c8cc10386649dfa77a37650004e21c52f4ab93647a85ee5a
- languageName: node
- linkType: hard
-
-"@shikijs/engine-javascript@npm:1.26.1":
- version: 1.26.1
- resolution: "@shikijs/engine-javascript@npm:1.26.1"
- dependencies:
- "@shikijs/types": "npm:1.26.1"
- "@shikijs/vscode-textmate": "npm:^10.0.1"
- oniguruma-to-es: "npm:0.10.0"
- checksum: 10c0/aa21dcc54d19e4db1b0ad39e83b8faca80899ea85792eb5f7b4907398bbf504fbc88fca6e3326ff76373f196cd60c9e409ad31440c183045efd8da0069a3d2ab
- languageName: node
- linkType: hard
-
-"@shikijs/engine-oniguruma@npm:1.26.1":
- version: 1.26.1
- resolution: "@shikijs/engine-oniguruma@npm:1.26.1"
- dependencies:
- "@shikijs/types": "npm:1.26.1"
- "@shikijs/vscode-textmate": "npm:^10.0.1"
- checksum: 10c0/ea5b222459346ad77a0504d27b1e5b47953062a2954d7cdd0632851b0b163fe9bc62c78b505056c5fb0152b12bbb5d076829ffcb3b2440f545287d1283da6a6a
+ checksum: 10c0/4ebdb3022d6d7c0598f42c90f26dc039a758dbda168d0244a1265be805124c2c1846ee502e141605ae75bd2f154a0b99db803603ccc272a90ea96abaefa7cd2b
languageName: node
linkType: hard
-"@shikijs/langs@npm:1.26.1":
- version: 1.26.1
- resolution: "@shikijs/langs@npm:1.26.1"
+"@shikijs/engine-javascript@npm:1.24.4":
+ version: 1.24.4
+ resolution: "@shikijs/engine-javascript@npm:1.24.4"
dependencies:
- "@shikijs/types": "npm:1.26.1"
- checksum: 10c0/3299f06f206cf74421f55fdb18b41e1a0d9a22a25c51ce30300158b311491cc24b72876c38034dcab191ede80fd4cce1aa1947cea16259036644b03cbc81f2f6
+ "@shikijs/types": "npm:1.24.4"
+ "@shikijs/vscode-textmate": "npm:^9.3.1"
+ oniguruma-to-es: "npm:0.8.1"
+ checksum: 10c0/dcd244a552f1d8e589140b908496eeeb2a960dfd761dfb3f5ceee00b9560867657267eebaab236fc601bdbd04783e88cd62c7a7c7cdff65e64b521f303df664f
languageName: node
linkType: hard
-"@shikijs/themes@npm:1.26.1":
- version: 1.26.1
- resolution: "@shikijs/themes@npm:1.26.1"
+"@shikijs/engine-oniguruma@npm:1.24.4":
+ version: 1.24.4
+ resolution: "@shikijs/engine-oniguruma@npm:1.24.4"
dependencies:
- "@shikijs/types": "npm:1.26.1"
- checksum: 10c0/b57ef7f52aec869b142ccffa4fa36e519c2af167e6163db79e6cd6dcf2e54fdf98380bbc73d33c34601f459ab5a73af32133aaad99908f78f8b4fc97373fa2f5
+ "@shikijs/types": "npm:1.24.4"
+ "@shikijs/vscode-textmate": "npm:^9.3.1"
+ checksum: 10c0/613180014ca639af9b281c5351d7d5c642c82e53dea7f4f6fd58abaf96c86d6cb06954d6e84f9b463be9d0a215381ee06d0ed14e057d5b770ee72871072334f0
languageName: node
linkType: hard
"@shikijs/twoslash@npm:^1.0.0":
- version: 1.26.1
- resolution: "@shikijs/twoslash@npm:1.26.1"
+ version: 1.24.4
+ resolution: "@shikijs/twoslash@npm:1.24.4"
dependencies:
- "@shikijs/core": "npm:1.26.1"
- "@shikijs/types": "npm:1.26.1"
+ "@shikijs/core": "npm:1.24.4"
+ "@shikijs/types": "npm:1.24.4"
twoslash: "npm:^0.2.12"
- checksum: 10c0/417864b2a12041e09a3c3c03652bec3c80e94a6946ec8b03107d09949c406fd0d70f9b89a5b99c5b3ac56cf9860bf6d9fe9b7e4e363967e8cda04c675f65408b
+ checksum: 10c0/fe6842f2b0dae4b6a6e5cf33afa43db88fe98312cbf0d7cde18f69d08505b2b483c078f948852782787a404a78df6e0497e922e87dac47a2aefcec60f8451b0a
languageName: node
linkType: hard
-"@shikijs/types@npm:1.26.1":
- version: 1.26.1
- resolution: "@shikijs/types@npm:1.26.1"
+"@shikijs/types@npm:1.24.4":
+ version: 1.24.4
+ resolution: "@shikijs/types@npm:1.24.4"
dependencies:
- "@shikijs/vscode-textmate": "npm:^10.0.1"
+ "@shikijs/vscode-textmate": "npm:^9.3.1"
"@types/hast": "npm:^3.0.4"
- checksum: 10c0/7f47a071c3ae844936a00b09ae1c973e5e2c9e501f7027a162bdfafc04c5a25ce8c5d593cdd5d83113254b3cda016e4d9fc9498e7808e96167e94e35f44d4f7b
+ checksum: 10c0/43128e287c445ebdeb0666054d09a78a524e728dbb8dee4565eb27f6e93ad75db9a7e94d37437bcad3874df92e10da57961b18224825e6775904545aeb011a97
languageName: node
linkType: hard
-"@shikijs/vscode-textmate@npm:^10.0.1":
- version: 10.0.1
- resolution: "@shikijs/vscode-textmate@npm:10.0.1"
- checksum: 10c0/acdbcf1b00d2503620ab50c2a23c7876444850ae0610c8e8b85a29587a333be40c9b98406ff17b9f87cbc64674dac6a2ada680374bde3e51a890e16cf1407490
+"@shikijs/vscode-textmate@npm:^9.3.1":
+ version: 9.3.1
+ resolution: "@shikijs/vscode-textmate@npm:9.3.1"
+ checksum: 10c0/8db3aa96696d83d30a56670516b128191340830382f1d1edc3108c2f0a418e7cc405dd9f253bf8b0d00fe4426795669b2c4dac3a035ebfe965eda241c33bfe9d
languageName: node
linkType: hard
@@ -11506,145 +11607,145 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/abort-controller@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/abort-controller@npm:4.0.1"
+"@smithy/abort-controller@npm:^3.1.9":
+ version: 3.1.9
+ resolution: "@smithy/abort-controller@npm:3.1.9"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/1ecd5c3454ced008463e6de826c294f31f6073ba91e22e443e0269ee0854d9376f73ea756b3acf77aa806a9a98e8b2568ce2e7f15ddf0a7816c99b7deefeef57
+ checksum: 10c0/d8e27940a087a16922d3c292049b50847fe8a84e632701e5aa33c175ddd84c1ef2566ac3f6550bcc06689da64bf79bdbabaf4e442ba92b18c252e62ca6a8880e
languageName: node
linkType: hard
-"@smithy/config-resolver@npm:^4.0.0, @smithy/config-resolver@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/config-resolver@npm:4.0.1"
+"@smithy/config-resolver@npm:^3.0.13":
+ version: 3.0.13
+ resolution: "@smithy/config-resolver@npm:3.0.13"
dependencies:
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-config-provider": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.1"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-config-provider": "npm:^3.0.0"
+ "@smithy/util-middleware": "npm:^3.0.11"
tslib: "npm:^2.6.2"
- checksum: 10c0/4ec3486deb3017607ed1b9a42b4b806b78e2c7a00f6dd51b98ccb82d9f7506b206bd9412ec0d2a05e95bc2ac3fbbafe55b1ffce9faccc4086f837645f3f7e64d
+ checksum: 10c0/9dac64028019e7b64ddf0e884dd03ce53eb1e9f070aec28acfbc24d624cd5d5ba2830d1e63a448119b20711969b03d4dbca0c4d7650e976b28475a8d8b7d0d93
languageName: node
linkType: hard
-"@smithy/core@npm:^3.0.0, @smithy/core@npm:^3.1.0":
- version: 3.1.0
- resolution: "@smithy/core@npm:3.1.0"
- dependencies:
- "@smithy/middleware-serde": "npm:^4.0.1"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-body-length-browser": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.1"
- "@smithy/util-stream": "npm:^4.0.1"
- "@smithy/util-utf8": "npm:^4.0.0"
+"@smithy/core@npm:^2.5.5, @smithy/core@npm:^2.5.7":
+ version: 2.5.7
+ resolution: "@smithy/core@npm:2.5.7"
+ dependencies:
+ "@smithy/middleware-serde": "npm:^3.0.11"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-body-length-browser": "npm:^3.0.0"
+ "@smithy/util-middleware": "npm:^3.0.11"
+ "@smithy/util-stream": "npm:^3.3.4"
+ "@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/94695aaa98b58431b255cb8f6f603d049a1fdad2995db69b13105e9d69b8a5a978885d879f09a4df6cbb0fd5cbcbbd912ba6515bf86736ce5c1d98b88df1eb77
+ checksum: 10c0/a03c374c42727c3c3bcc30c6604eb2c05a60a540b38ee21c77beacf3b1145112824e47e39732a06d140d632c089f57a62d3c879da4e9f586b6adac80d9276a1e
languageName: node
linkType: hard
-"@smithy/credential-provider-imds@npm:^4.0.0, @smithy/credential-provider-imds@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/credential-provider-imds@npm:4.0.1"
+"@smithy/credential-provider-imds@npm:^3.2.8":
+ version: 3.2.8
+ resolution: "@smithy/credential-provider-imds@npm:3.2.8"
dependencies:
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/property-provider": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/url-parser": "npm:^4.0.1"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/url-parser": "npm:^3.0.11"
tslib: "npm:^2.6.2"
- checksum: 10c0/76b5d82dfd2924f2b7a701fa159af54d3e9b16a644a210e3a74e5a3776bb28c2ffbdd342ed3f2bb1d2adf401e8144e84614523b1fad245b43e319e1d01fa1652
+ checksum: 10c0/26af5e83ccff767fc0857bc92d90e406c8cd261c40da189c6057a0c1754ba1a13abbff86bb41648988eb1d5e841af0df5cc5bed73f72c49b3f44d4121618b79c
languageName: node
linkType: hard
-"@smithy/eventstream-codec@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/eventstream-codec@npm:4.0.1"
+"@smithy/eventstream-codec@npm:^3.1.10":
+ version: 3.1.10
+ resolution: "@smithy/eventstream-codec@npm:3.1.10"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-hex-encoding": "npm:^4.0.0"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-hex-encoding": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/439262fddae863cadad83cc468418294d1d998134619dd67e2836cc93bbfa5b01448e852516046f03b62d0edcd558014b755b1fb0d71b9317268d5c3a5e55bbd
+ checksum: 10c0/2d95bbdc13866ad3acfb81b63d17ad7b9a232bde54a76f31d1f98a8097f1420a5ce86bb45e14c3fd7de0562f4cdfdb9047c79003f3cd37d0eef1b8334b4cfb61
languageName: node
linkType: hard
-"@smithy/eventstream-serde-browser@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/eventstream-serde-browser@npm:4.0.1"
+"@smithy/eventstream-serde-browser@npm:^3.0.14":
+ version: 3.0.14
+ resolution: "@smithy/eventstream-serde-browser@npm:3.0.14"
dependencies:
- "@smithy/eventstream-serde-universal": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/eventstream-serde-universal": "npm:^3.0.13"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/4766a8a735085dea1ed9aad486fa70cb04908a31843d4e698a28accc373a6dc80bc8abe9834d390f347326458c03424afbd7f7f9e59a66970b839de3d44940e1
+ checksum: 10c0/ebcdde6435df0a20b6439bd16f5a3d3597b7bcba4a3e8e05f59451116d18c874b37abcc0dfd3e7b67e3381782d6656013c2511a1b66400a7e0a9a3d00c9c38d3
languageName: node
linkType: hard
-"@smithy/eventstream-serde-config-resolver@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/eventstream-serde-config-resolver@npm:4.0.1"
+"@smithy/eventstream-serde-config-resolver@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/4ba8bba39392025389c610ce984b612adfe0ed2b37f926e6ce2acafaf178d04aec395924ff37d2ad9534a28652fc64c4938b66b4bd1d2ff695ac8fcdcc4d356e
+ checksum: 10c0/0c8ba642c63b95c0a6c218a6fc71dd212b0fc42306605fba2827602e54782efc9ba15d9ce1b8cf0f9aa8b46cabbb4e4fab0addd12007493b9551b3997ab8cc05
languageName: node
linkType: hard
-"@smithy/eventstream-serde-node@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/eventstream-serde-node@npm:4.0.1"
+"@smithy/eventstream-serde-node@npm:^3.0.13":
+ version: 3.0.13
+ resolution: "@smithy/eventstream-serde-node@npm:3.0.13"
dependencies:
- "@smithy/eventstream-serde-universal": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/eventstream-serde-universal": "npm:^3.0.13"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/ed451ed4483ca62cb450a7540e43ba99b816e32da7bd306d14ea49dd3ceb8a37f791578a0e5d21caf9b9f75c36c69e025c7add117cf8b0510ad3ef32ac38b08c
+ checksum: 10c0/934531f159cf6b24f038396df5fe5b53d43c16e143f1d89b4a9cc1d64e3a6687aa98002c4e67cc8e61ed0fe211be67c3df3dab7c5b93866e867a2887b5d3bc3b
languageName: node
linkType: hard
-"@smithy/eventstream-serde-universal@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/eventstream-serde-universal@npm:4.0.1"
+"@smithy/eventstream-serde-universal@npm:^3.0.13":
+ version: 3.0.13
+ resolution: "@smithy/eventstream-serde-universal@npm:3.0.13"
dependencies:
- "@smithy/eventstream-codec": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/eventstream-codec": "npm:^3.1.10"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/8a1261fca8df7559bf78234f961903281b8602ffdbe0ff25f506cba25f013e4bb93bd8380703224fe63aeaf66e13bfebbdaf8083f38628750fc5f3c4ee07dff8
+ checksum: 10c0/5eea197d6c6f2fc993bbd3499d71655bc14d597b95bda11f030c45871ae68a56472b58cee4c199a0f33bc7dd4caf437d74eafb836884c899a548dfd0b6776961
languageName: node
linkType: hard
-"@smithy/fetch-http-handler@npm:^5.0.0, @smithy/fetch-http-handler@npm:^5.0.1":
- version: 5.0.1
- resolution: "@smithy/fetch-http-handler@npm:5.0.1"
+"@smithy/fetch-http-handler@npm:^4.1.2, @smithy/fetch-http-handler@npm:^4.1.3":
+ version: 4.1.3
+ resolution: "@smithy/fetch-http-handler@npm:4.1.3"
dependencies:
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/querystring-builder": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-base64": "npm:^4.0.0"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/querystring-builder": "npm:^3.0.11"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-base64": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/5123f6119de50d4c992ebf29b769382d7000db4ed8f564680c5727e2a8beb71664198eb2eaf7cb6152ab777f654d54cf9bff5a4658e1cfdeef2987eeea7f1149
+ checksum: 10c0/287e309febccd52283e1733a17a2b92623c8522f21de8faaabb8f9f28514439374142ff84fa33bd306f5884586a1838f8aa8758dda73fb72d2fba5bd781cfa77
languageName: node
linkType: hard
-"@smithy/hash-node@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/hash-node@npm:4.0.1"
+"@smithy/hash-node@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/hash-node@npm:3.0.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-buffer-from": "npm:^4.0.0"
- "@smithy/util-utf8": "npm:^4.0.0"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-buffer-from": "npm:^3.0.0"
+ "@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/d84be63a2c8a4aafa3b9f23ae76c9cf92a31fa7c49c85930424da1335259b29f6333c5c82d2e7bf689549290ffd0d995043c9ea6f05b0b2a8dfad1f649eac43f
+ checksum: 10c0/d0eb389976fac0667d9cd94eac5d0a16010198034ecb18180973974ced06952a73846a7b760a7c53e52d7fb3d9c2193bd0580afbefd675ca5620cf66ac14d1f7
languageName: node
linkType: hard
-"@smithy/invalid-dependency@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/invalid-dependency@npm:4.0.1"
+"@smithy/invalid-dependency@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/invalid-dependency@npm:3.0.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/74bebdffb6845f6060eed482ad6e921df66af90d2f8c63f39a3bb334fa68a3e3aa8bd5cd7aa5f65628857e235e113895433895db910ba290633daa0df5725eb7
+ checksum: 10c0/7cba9b2ebfee068e5ddddfb0a89b87c70ab252e88b0bfb2967c5373187b754452e66487ad3a539095049f2a6f327e438105b781e18f9a1ba1eb898f78c25d5ba
languageName: node
linkType: hard
@@ -11657,196 +11758,205 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/is-array-buffer@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/is-array-buffer@npm:4.0.0"
+"@smithy/is-array-buffer@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/is-array-buffer@npm:3.0.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/ae393fbd5944d710443cd5dd225d1178ef7fb5d6259c14f3e1316ec75e401bda6cf86f7eb98bfd38e5ed76e664b810426a5756b916702cbd418f0933e15e7a3b
+ checksum: 10c0/44710d94b9e6655ebc02169c149ea2bc5d5b9e509b6b39511cfe61bac571412290f4b9c743d61e395822f014021fcb709dbb533f2f717c1ac2d5a356696c22fd
languageName: node
linkType: hard
-"@smithy/middleware-content-length@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/middleware-content-length@npm:4.0.1"
+"@smithy/middleware-content-length@npm:^3.0.13":
+ version: 3.0.13
+ resolution: "@smithy/middleware-content-length@npm:3.0.13"
dependencies:
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/3dfbfe658cc8636e9e923a10151a32c6234897c4a86856e55fe4fadc322b3f3e977e50d15553afcb34cadb213de2d95a82af9c8f735e758f4dc21a031e8ecb17
+ checksum: 10c0/b5a4a3d28543e2175f15f3b2df7faf4e34b5a295ffeb583333971a94cf7f769f998ffa42a66f2e56fb5c3c1590fc2d0b8880bf47251dc301c41ae81d0eebf07a
languageName: node
linkType: hard
-"@smithy/middleware-endpoint@npm:^4.0.0, @smithy/middleware-endpoint@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/middleware-endpoint@npm:4.0.1"
- dependencies:
- "@smithy/core": "npm:^3.1.0"
- "@smithy/middleware-serde": "npm:^4.0.1"
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/shared-ini-file-loader": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/url-parser": "npm:^4.0.1"
- "@smithy/util-middleware": "npm:^4.0.1"
+"@smithy/middleware-endpoint@npm:^3.2.6, @smithy/middleware-endpoint@npm:^3.2.8":
+ version: 3.2.8
+ resolution: "@smithy/middleware-endpoint@npm:3.2.8"
+ dependencies:
+ "@smithy/core": "npm:^2.5.7"
+ "@smithy/middleware-serde": "npm:^3.0.11"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/url-parser": "npm:^3.0.11"
+ "@smithy/util-middleware": "npm:^3.0.11"
tslib: "npm:^2.6.2"
- checksum: 10c0/b47425491804adbe1264a8d8fc1769104aa29a9951f77f1979d142ef46e436dd88901c72ee9d53276c6593bbb4f6d191c558ddc142653536cc61e80cc3c5ba34
+ checksum: 10c0/45b8d1f22eeb4c265618472ff2001e6b3e5fec6c1303443d1183fabf034d1ddf6053869fd1919c5b9f1824475c64906aa9af90793e7bf343ddebf69feebd4846
languageName: node
linkType: hard
-"@smithy/middleware-retry@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/middleware-retry@npm:4.0.1"
- dependencies:
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/service-error-classification": "npm:^4.0.1"
- "@smithy/smithy-client": "npm:^4.1.0"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-middleware": "npm:^4.0.1"
- "@smithy/util-retry": "npm:^4.0.1"
+"@smithy/middleware-retry@npm:^3.0.31":
+ version: 3.0.31
+ resolution: "@smithy/middleware-retry@npm:3.0.31"
+ dependencies:
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/service-error-classification": "npm:^3.0.11"
+ "@smithy/smithy-client": "npm:^3.5.1"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-middleware": "npm:^3.0.11"
+ "@smithy/util-retry": "npm:^3.0.11"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
- checksum: 10c0/582aedcad5938f1372eb8200dd1be0b58f0aeadea2f13eac03cb0ed7f6264408fae0d004138dc32739a9077a49b64043ac2bd41bac3e40e7635ead906eea9622
+ checksum: 10c0/d87f06ace545195eb776b92caf2be63539b22dd2c3687b12f19ec3aae88d0fdf41345435c964eb30ba2bfb7b6c4a159245a2f383305127137434bede80e7b694
languageName: node
linkType: hard
-"@smithy/middleware-serde@npm:^4.0.0, @smithy/middleware-serde@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/middleware-serde@npm:4.0.1"
+"@smithy/middleware-serde@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/middleware-serde@npm:3.0.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/b133aa4b5c98da47a38225310ba2e6feea712d98f8ccae81825c1eec5a006214dbbb4b89415b9ad644f9cbcabe5461f84032cf4a3d0d68b705b9a73e29af80e2
+ checksum: 10c0/fae0ce5784ff77d2998652c11b18304d0a5a537853acffe683f06a505f995a21228c086f7a6a979218f81ff5aee8705ed38343b6f9db4540e90340b34f763f65
languageName: node
linkType: hard
-"@smithy/middleware-stack@npm:^4.0.0, @smithy/middleware-stack@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/middleware-stack@npm:4.0.1"
+"@smithy/middleware-stack@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/middleware-stack@npm:3.0.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/b7f710e263e37a8c80c8d31c7d8fe5f66dec2955cde412054eefcc8df53905e1e2e53a01fd7930eb82c82a3a28eadd00e69f07dfc6e793b1d9272db58a982e9b
+ checksum: 10c0/39d943328735d70b1f29d565b014aaf9c96a2f95e33ab499284b70d48229b4304d35ab5b0df31971f868066f6996d5ee24083bcd71dff3892e9f5a595064c10f
languageName: node
linkType: hard
-"@smithy/node-config-provider@npm:^4.0.0, @smithy/node-config-provider@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/node-config-provider@npm:4.0.1"
+"@smithy/node-config-provider@npm:^3.1.12":
+ version: 3.1.12
+ resolution: "@smithy/node-config-provider@npm:3.1.12"
dependencies:
- "@smithy/property-provider": "npm:^4.0.1"
- "@smithy/shared-ini-file-loader": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/f8d3b1fe91eeba41426ec57d62cfbeaed027650b5549fb2ba5bc889c1cfb7880d4fdb5a484d231b3fb2a9c9023c1f4e8907a5d18d75b3787481cde9f87c4d9cb
+ checksum: 10c0/e00b47e749233df6d98287176c8b6cf69287aaab593e5e97b365da8d2781a3478178cab1ad3c68c997efe41a9653960e5615c2cab368e677f05a3acc16e958e5
languageName: node
linkType: hard
-"@smithy/node-http-handler@npm:^4.0.0, @smithy/node-http-handler@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/node-http-handler@npm:4.0.1"
+"@smithy/node-http-handler@npm:^3.3.2, @smithy/node-http-handler@npm:^3.3.3":
+ version: 3.3.3
+ resolution: "@smithy/node-http-handler@npm:3.3.3"
dependencies:
- "@smithy/abort-controller": "npm:^4.0.1"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/querystring-builder": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/abort-controller": "npm:^3.1.9"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/querystring-builder": "npm:^3.0.11"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/ab6181d6b4754f3c417abe5494807ac74a29fccd6a321d1240ba8ea9699df3d78ff204fa1a447d6415d8c523bf94ffa744d23e5f2608c63ae9cf827b6369c9d8
+ checksum: 10c0/b95ac887388f5698583855a430ca6e727bff4fc32bc4143debbdde70061685174fde132c0475f9a5128cf7522d553e108e859b41b01b3e58843f0f9cf48acd3e
languageName: node
linkType: hard
-"@smithy/property-provider@npm:^4.0.0, @smithy/property-provider@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/property-provider@npm:4.0.1"
+"@smithy/property-provider@npm:^3.1.11":
+ version: 3.1.11
+ resolution: "@smithy/property-provider@npm:3.1.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/43960a6bdf25944e1cc9d4ee83bf45ab5641f7e2068c46d5015166c0f035b1752e03847d7c15d3c013f5f0467441c9c5a8d6a0428f5401988035867709e4dea3
+ checksum: 10c0/7c8a9b567ff2ec33b021e718b9757c5492f0e6b4330793bb9726d4756312fb3e786fe636f26c56ddfcbea4f58dbf6c3452c0fd2ecce9193031151a4555602424
languageName: node
linkType: hard
-"@smithy/protocol-http@npm:^5.0.0, @smithy/protocol-http@npm:^5.0.1":
- version: 5.0.1
- resolution: "@smithy/protocol-http@npm:5.0.1"
+"@smithy/protocol-http@npm:^4.1.8":
+ version: 4.1.8
+ resolution: "@smithy/protocol-http@npm:4.1.8"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/87b157cc86c23f7199acad237e5e0cc309b18a2a4162dfd8f99609f6cca403f832b645535e58173e2933b4d96ec71f2df16d04e1bdcf52b7b0fcbdbc0067de93
+ checksum: 10c0/490425e7329962ede034cf04911c80a2653011dc2b15b9b76a1553545bec84aeef1b70c9f0ab6c2adfc3502afec6f4cf38499dba211e9f81370d470f6e35ca0f
languageName: node
linkType: hard
-"@smithy/querystring-builder@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/querystring-builder@npm:4.0.1"
+"@smithy/querystring-builder@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/querystring-builder@npm:3.0.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-uri-escape": "npm:^4.0.0"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-uri-escape": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/21f39e3a79458d343f3dec76b38598c49a34a3c4d1d3c23b6c8895eae2b610fb3c704f995a1730599ef7a881216ea064a25bb7dc8abe5bb1ee50dc6078ad97a4
+ checksum: 10c0/77daf191c606178cc76f46739b4085660ed3036993a9c2274cb6b70a9ba29e000c33c3c093263a6a119e0a55f063d02a29806e1c90384e18f50a8c2bc0a1d7f0
languageName: node
linkType: hard
-"@smithy/querystring-parser@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/querystring-parser@npm:4.0.1"
+"@smithy/querystring-parser@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/querystring-parser@npm:3.0.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/10e5aba13fbb9a602299fb92f02142e291ab5c7cd221e0ca542981414533e081abdd7442de335f2267ee4a9ff8eba4d7ba848455df50d2771f0ddb8b7d8f9d8b
+ checksum: 10c0/f5650eb44ff621308ea3e65de54f284e866812abc814fd4d36c432d7a0150e7a92cead604a8580bd12d108c6e78e019fb36eef30774b36086be1137c8d6846eb
languageName: node
linkType: hard
-"@smithy/service-error-classification@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/service-error-classification@npm:4.0.1"
+"@smithy/service-error-classification@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/service-error-classification@npm:3.0.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
- checksum: 10c0/de015fd140bf4e97da34a2283ce73971eb3b3aae53a257000dce0c99b8974a5e76bae9e517545ef58bd00ca8094c813cd1bcf0696c2c51e731418e2a769c744f
+ "@smithy/types": "npm:^3.7.2"
+ checksum: 10c0/a3e7cb55989f2f7aaca170a8b56187bab35ab2ef7c4199b145aa7e2d02b130d9e779c92e25805415a6a2e4ec4c67f0355f640281e4cf24f0e92f71f2eca32e9f
languageName: node
linkType: hard
-"@smithy/shared-ini-file-loader@npm:^4.0.0, @smithy/shared-ini-file-loader@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/shared-ini-file-loader@npm:4.0.1"
+"@smithy/shared-ini-file-loader@npm:^3.1.12":
+ version: 3.1.12
+ resolution: "@smithy/shared-ini-file-loader@npm:3.1.12"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/0f0173dbe61c8dac6847cc2c5115db5f1292c956c7f0559ce7bc8e5ed196a4b102977445ee1adb72206a15226a1098cdea01e92aa8ce19f4343f1135e7d37bcf
+ checksum: 10c0/8dc647cc697977bb6fd9d6d0efa51a42b811c2da11d6a73f07a9713a73ad795458d68e5fef9d2e66b45310de9f55dbace6ebb1d12f2551fc6a75aa0ceadced5f
languageName: node
linkType: hard
-"@smithy/signature-v4@npm:^5.0.0":
- version: 5.0.1
- resolution: "@smithy/signature-v4@npm:5.0.1"
- dependencies:
- "@smithy/is-array-buffer": "npm:^4.0.0"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-hex-encoding": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.1"
- "@smithy/util-uri-escape": "npm:^4.0.0"
- "@smithy/util-utf8": "npm:^4.0.0"
+"@smithy/signature-v4@npm:^4.2.4":
+ version: 4.2.4
+ resolution: "@smithy/signature-v4@npm:4.2.4"
+ dependencies:
+ "@smithy/is-array-buffer": "npm:^3.0.0"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-hex-encoding": "npm:^3.0.0"
+ "@smithy/util-middleware": "npm:^3.0.11"
+ "@smithy/util-uri-escape": "npm:^3.0.0"
+ "@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/a7f118642c9641f813098faad355fc5b54ae215fec589fb238d72d44149248c02e32dcfe034000f151ab665450542df88c70d269f9a3233e01a905ec03512514
+ checksum: 10c0/a75450f508cec1cff56f22c4b81f51faec48474648bb4deadc28eb16f7c9bac7623b55733429169c1eaf85129c57c168dc41f0a5ceef0b2c031f4b08c49c1315
languageName: node
linkType: hard
-"@smithy/smithy-client@npm:^4.0.0, @smithy/smithy-client@npm:^4.1.0":
- version: 4.1.0
- resolution: "@smithy/smithy-client@npm:4.1.0"
- dependencies:
- "@smithy/core": "npm:^3.1.0"
- "@smithy/middleware-endpoint": "npm:^4.0.1"
- "@smithy/middleware-stack": "npm:^4.0.1"
- "@smithy/protocol-http": "npm:^5.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-stream": "npm:^4.0.1"
+"@smithy/smithy-client@npm:^3.5.1":
+ version: 3.7.0
+ resolution: "@smithy/smithy-client@npm:3.7.0"
+ dependencies:
+ "@smithy/core": "npm:^2.5.7"
+ "@smithy/middleware-endpoint": "npm:^3.2.8"
+ "@smithy/middleware-stack": "npm:^3.0.11"
+ "@smithy/protocol-http": "npm:^4.1.8"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-stream": "npm:^3.3.4"
tslib: "npm:^2.6.2"
- checksum: 10c0/14a8f52dba92eb324604ba9abc78f03eb79e64d77fc6df720cb6d01e06eaa7d27c71e8485b32103945cdcf12cb81baf8dc9986dde5d1c8d20855b032fade57a6
+ checksum: 10c0/216defaf8c2b6a5a1db9b658dc79afcacba3dc5b53d46fa3d54faa65e1637e8f25406a92db8bca910ccc1a21420b6723464832eb77b6cbc39b53b0f8193b173a
languageName: node
linkType: hard
-"@smithy/types@npm:^4.0.0, @smithy/types@npm:^4.1.0":
+"@smithy/types@npm:^3.7.2":
+ version: 3.7.2
+ resolution: "@smithy/types@npm:3.7.2"
+ dependencies:
+ tslib: "npm:^2.6.2"
+ checksum: 10c0/4bf4674c922c092f9c92b482b074163ceea199e82466ccd4414c4cd9651f67757456414f969e9997371250e112778b636115727b5af53324334300f328069293
+ languageName: node
+ linkType: hard
+
+"@smithy/types@npm:^4.0.0":
version: 4.1.0
resolution: "@smithy/types@npm:4.1.0"
dependencies:
@@ -11855,43 +11965,43 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/url-parser@npm:^4.0.0, @smithy/url-parser@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/url-parser@npm:4.0.1"
+"@smithy/url-parser@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/url-parser@npm:3.0.11"
dependencies:
- "@smithy/querystring-parser": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/querystring-parser": "npm:^3.0.11"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/fc969b55857b3bcdc920f54bbb9b0c88b5c7695ac7100bea1c7038fd4c9a09ebe0fbb38c4839d39acea28da0d8cb4fea71ffbf362d8aec295acbb94c1b45fc86
+ checksum: 10c0/9960d5db786d61f94bf1afe689fa763fbdbbb50f4d896019cac18cb0784bcda6a40a1bcb50040b7932f7722c4760e94e88b329acd2fe99a327f131103b1e3a90
languageName: node
linkType: hard
-"@smithy/util-base64@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/util-base64@npm:4.0.0"
+"@smithy/util-base64@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/util-base64@npm:3.0.0"
dependencies:
- "@smithy/util-buffer-from": "npm:^4.0.0"
- "@smithy/util-utf8": "npm:^4.0.0"
+ "@smithy/util-buffer-from": "npm:^3.0.0"
+ "@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/ad18ec66cc357c189eef358d96876b114faf7086b13e47e009b265d0ff80cec046052500489c183957b3a036768409acdd1a373e01074cc002ca6983f780cffc
+ checksum: 10c0/5c05c3505bd1ac4c1e04ec0e22ad1c9e0c61756945735861614f9e46146369a1a112dd0895602475822c18b8f1fe0cc3fb9e45c99a4e7fb03308969c673cf043
languageName: node
linkType: hard
-"@smithy/util-body-length-browser@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/util-body-length-browser@npm:4.0.0"
+"@smithy/util-body-length-browser@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/util-body-length-browser@npm:3.0.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/574a10934024a86556e9dcde1a9776170284326c3dfcc034afa128cc5a33c1c8179fca9cfb622ef8be5f2004316cc3f427badccceb943e829105536ec26306d9
+ checksum: 10c0/cfb595e814334fe7bb78e8381141cc7364f66bff0c1d672680f4abb99361ef66fbdb9468fa1dbabcd5753254b2b05c59c907fa9d600b36e6e4b8423eccf412f7
languageName: node
linkType: hard
-"@smithy/util-body-length-node@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/util-body-length-node@npm:4.0.0"
+"@smithy/util-body-length-node@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/util-body-length-node@npm:3.0.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/e91fd3816767606c5f786166ada26440457fceb60f96653b3d624dcf762a8c650e513c275ff3f647cb081c63c283cc178853a7ed9aa224abc8ece4eeeef7a1dd
+ checksum: 10c0/6f779848e7c81051364cf6e40ed61034a06fa8df3480398528baae54d9b69622abc7d068869e33dbe51fef2bbc6fda3f548ac59644a0f10545a54c87bc3a4391
languageName: node
linkType: hard
@@ -11905,116 +12015,116 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-buffer-from@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/util-buffer-from@npm:4.0.0"
+"@smithy/util-buffer-from@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/util-buffer-from@npm:3.0.0"
dependencies:
- "@smithy/is-array-buffer": "npm:^4.0.0"
+ "@smithy/is-array-buffer": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/be7cd33b6cb91503982b297716251e67cdca02819a15797632091cadab2dc0b4a147fff0709a0aa9bbc0b82a2644a7ed7c8afdd2194d5093cee2e9605b3a9f6f
+ checksum: 10c0/b10fb81ef34f95418f27c9123c2c1774e690dd447e8064184688c553156bdec46d2ba1b1ae3bad7edd2b58a5ef32ac569e1ad814b36e7ee05eba10526d329983
languageName: node
linkType: hard
-"@smithy/util-config-provider@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/util-config-provider@npm:4.0.0"
+"@smithy/util-config-provider@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/util-config-provider@npm:3.0.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/cd9498d5f77a73aadd575084bcb22d2bb5945bac4605d605d36f2efe3f165f2b60f4dc88b7a62c2ed082ffa4b2c2f19621d0859f18399edbc2b5988d92e4649f
+ checksum: 10c0/a2c25eac31223eddea306beff2bb3c32e8761f8cb50e8cb2a9d61417a5040e9565dc715a655787e99a37465fdd35bbd0668ff36e06043a5f6b7be48a76974792
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-browser@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/util-defaults-mode-browser@npm:4.0.1"
+"@smithy/util-defaults-mode-browser@npm:^3.0.31":
+ version: 3.0.31
+ resolution: "@smithy/util-defaults-mode-browser@npm:3.0.31"
dependencies:
- "@smithy/property-provider": "npm:^4.0.1"
- "@smithy/smithy-client": "npm:^4.1.0"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/smithy-client": "npm:^3.5.1"
+ "@smithy/types": "npm:^3.7.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/4aa00a339095e9651d34950aadddc474c46c15e48b14e1835bd58ee95aa235584118bf5a626d8934021dd2a7a485ba3b5ef2e3126c49ca4df3d8044150fb76c6
+ checksum: 10c0/149fa857b139dcde150a0b7475dbefcaa5c4c0a1501879690dca924cd60494bb6f85eaa4c78cd40d9723a3c3faa094629ed08e94855928100326fd7ae3c980e9
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-node@npm:^4.0.0":
- version: 4.0.1
- resolution: "@smithy/util-defaults-mode-node@npm:4.0.1"
- dependencies:
- "@smithy/config-resolver": "npm:^4.0.1"
- "@smithy/credential-provider-imds": "npm:^4.0.1"
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/property-provider": "npm:^4.0.1"
- "@smithy/smithy-client": "npm:^4.1.0"
- "@smithy/types": "npm:^4.1.0"
+"@smithy/util-defaults-mode-node@npm:^3.0.31":
+ version: 3.0.31
+ resolution: "@smithy/util-defaults-mode-node@npm:3.0.31"
+ dependencies:
+ "@smithy/config-resolver": "npm:^3.0.13"
+ "@smithy/credential-provider-imds": "npm:^3.2.8"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/property-provider": "npm:^3.1.11"
+ "@smithy/smithy-client": "npm:^3.5.1"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/e8d846194042cd49f377e78feafc20e4aa5840a4340b54b46a5fd95975cf42aae07606f796855be9e5b0e0569343031f388b098f398d015423f9ee3291e2609b
+ checksum: 10c0/825159cbadd4a8bf17cdbabd9872683c027c3655645db8fc9ef902d83de5c8a574dc174b4d31edad98fc7aafe5c6ebc017bbc04cee43390d2ca49ec59e4264b3
languageName: node
linkType: hard
-"@smithy/util-endpoints@npm:^3.0.0":
- version: 3.0.1
- resolution: "@smithy/util-endpoints@npm:3.0.1"
+"@smithy/util-endpoints@npm:^2.1.7":
+ version: 2.1.7
+ resolution: "@smithy/util-endpoints@npm:2.1.7"
dependencies:
- "@smithy/node-config-provider": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/node-config-provider": "npm:^3.1.12"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/fed80f300e6a6e69873e613cdd12f640d33a19fc09a41e3afd536f7ea36f7785edd96fbd0402b6980a0e5dfc9bcb8b37f503d522b4ef317f31f4fd0100c466ff
+ checksum: 10c0/a14f25c60f0e1b37848d7e149530366c0568aa9edc8cfc050b995874688c75cd826f5c0bba91ae3d5b9922ee02af09d204165d9ebe8643363f57fe0ad1ae2213
languageName: node
linkType: hard
-"@smithy/util-hex-encoding@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/util-hex-encoding@npm:4.0.0"
+"@smithy/util-hex-encoding@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/util-hex-encoding@npm:3.0.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/70dbb3aa1a79aff3329d07a66411ff26398df338bdd8a6d077b438231afe3dc86d9a7022204baddecd8bc633f059d5c841fa916d81dd7447ea79b64148f386d2
+ checksum: 10c0/d2fa7270853cc8f22c4f4635c72bf52e303731a68a3999e3ea9da1d38b6bf08c0f884e7d20b65741e3bc68bb3821e1abd1c3406d7a3dce8fc02df019aea59162
languageName: node
linkType: hard
-"@smithy/util-middleware@npm:^4.0.0, @smithy/util-middleware@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/util-middleware@npm:4.0.1"
+"@smithy/util-middleware@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/util-middleware@npm:3.0.11"
dependencies:
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/1dd2b058f392fb6788809f14c2c1d53411f79f6e9f88b515ffd36792f9f5939fe4af96fb5b0486a3d0cd30181783b7a5393dce2e8b83ba62db7c6d3af6572eff
+ checksum: 10c0/983a329b0f9abc62ddbcda7227acf2b1aa5c7c1bb06c5b1de78353cc565d3b1817607491be7d067753877a05ea4e3f648f84b8bd9600de6454713f1ac35e56ba
languageName: node
linkType: hard
-"@smithy/util-retry@npm:^4.0.0, @smithy/util-retry@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/util-retry@npm:4.0.1"
+"@smithy/util-retry@npm:^3.0.11":
+ version: 3.0.11
+ resolution: "@smithy/util-retry@npm:3.0.11"
dependencies:
- "@smithy/service-error-classification": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/service-error-classification": "npm:^3.0.11"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/93ef89572651b8a30b9a648292660ae9532508ec6d2577afc62e1d9125fe6d14086e0f70a2981bf9f12256b41a57152368b5ed839cdd2df47ba78dd005615173
+ checksum: 10c0/df71c62b696a6551c2a1454d673740e58eaefcb822a9633a1bacb82464b3fed15cb7b91ed68b20661d024228d3f25ee49b5f54b51c711f7c2d7a2b802dde760a
languageName: node
linkType: hard
-"@smithy/util-stream@npm:^4.0.0, @smithy/util-stream@npm:^4.0.1":
- version: 4.0.1
- resolution: "@smithy/util-stream@npm:4.0.1"
- dependencies:
- "@smithy/fetch-http-handler": "npm:^5.0.1"
- "@smithy/node-http-handler": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
- "@smithy/util-base64": "npm:^4.0.0"
- "@smithy/util-buffer-from": "npm:^4.0.0"
- "@smithy/util-hex-encoding": "npm:^4.0.0"
- "@smithy/util-utf8": "npm:^4.0.0"
+"@smithy/util-stream@npm:^3.3.2, @smithy/util-stream@npm:^3.3.4":
+ version: 3.3.4
+ resolution: "@smithy/util-stream@npm:3.3.4"
+ dependencies:
+ "@smithy/fetch-http-handler": "npm:^4.1.3"
+ "@smithy/node-http-handler": "npm:^3.3.3"
+ "@smithy/types": "npm:^3.7.2"
+ "@smithy/util-base64": "npm:^3.0.0"
+ "@smithy/util-buffer-from": "npm:^3.0.0"
+ "@smithy/util-hex-encoding": "npm:^3.0.0"
+ "@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/066d54981bc2d4aa5aa4026b88a5bfd79605c57c86c279c1811735d9f7fdd0e0fecacaecb727679d360101d5f31f5d68b463ce76fd8f25a38b274bfa62a6c7a5
+ checksum: 10c0/5a3a09155be4796c4f0020f5bf4401831b7a4a46e0dee165983dbd2100a2d770d94fe1e8dcc775d86aa3d68c40e45e1076646b01378e8b704a1aa041b0d8b324
languageName: node
linkType: hard
-"@smithy/util-uri-escape@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/util-uri-escape@npm:4.0.0"
+"@smithy/util-uri-escape@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/util-uri-escape@npm:3.0.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/23984624060756adba8aa4ab1693fe6b387ee5064d8ec4dfd39bb5908c4ee8b9c3f2dc755da9b07505d8e3ce1338c1867abfa74158931e4728bf3cfcf2c05c3d
+ checksum: 10c0/b8d831348412cfafd9300069e74a12e0075b5e786d7ef6a210ba4ab576001c2525653eec68b71dfe6d7aef71c52f547404c4f0345c0fb476a67277f9d44b1156
languageName: node
linkType: hard
@@ -12028,24 +12138,24 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-utf8@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/util-utf8@npm:4.0.0"
+"@smithy/util-utf8@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "@smithy/util-utf8@npm:3.0.0"
dependencies:
- "@smithy/util-buffer-from": "npm:^4.0.0"
+ "@smithy/util-buffer-from": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/28a5a5372cbf0b3d2e32dd16f79b04c2aec6f704cf13789db922e9686fde38dde0171491cfa4c2c201595d54752a319faaeeed3c325329610887694431e28c98
+ checksum: 10c0/b568ed84b4770d2ae9b632eb85603765195a791f045af7f47df1369dc26b001056f4edf488b42ca1cd6d852d0155ad306a0d6531e912cb4e633c0d87abaa8899
languageName: node
linkType: hard
-"@smithy/util-waiter@npm:^4.0.0":
- version: 4.0.2
- resolution: "@smithy/util-waiter@npm:4.0.2"
+"@smithy/util-waiter@npm:^3.2.0":
+ version: 3.2.0
+ resolution: "@smithy/util-waiter@npm:3.2.0"
dependencies:
- "@smithy/abort-controller": "npm:^4.0.1"
- "@smithy/types": "npm:^4.1.0"
+ "@smithy/abort-controller": "npm:^3.1.9"
+ "@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/36ee71b41923ae58d9246745e3b7497fe45577dbb97f6e15dd07b4fddb4f82f32e0b7604c7b388fc92d5cbe49d9499998eda979a77a4a770c1b25686a5aed4ce
+ checksum: 10c0/9b4a2a9f254f8218909dcc1586d3ea4026b5efc261b948f6ca89e240c317264ac93aaf66a5a8ee07ce2b6733d531179bb25d8ffcb8a0d4016ae2f81d32e45669
languageName: node
linkType: hard
@@ -12298,9 +12408,9 @@ __metadata:
languageName: node
linkType: hard
-"@theguild/components@npm:^7.0.0":
- version: 7.5.2
- resolution: "@theguild/components@npm:7.5.2"
+"@theguild/components@npm:^7.6.0":
+ version: 7.6.0
+ resolution: "@theguild/components@npm:7.6.0"
dependencies:
"@giscus/react": "npm:3.0.0"
"@next/bundle-analyzer": "npm:15.1.0"
@@ -12320,7 +12430,7 @@ __metadata:
next: ^13 || ^14 || ^15.0.0
react: ^18.2.0
react-dom: ^18.2.0
- checksum: 10c0/ed29aab40546c26cfe9167ea55108397d62d38890bd629891aa5afac2fb504be0c18b3f629888cc2dae300db2df04a5cbf23a41e8042e92630f87e0c871fef66
+ checksum: 10c0/bf7957152d00b3abd5405759f0c7568d58ecfd9e5c4a1beb1cc2912f6e3f7aee2f9cc01e5425825eb6aa7c7bfe6a8ee88a8d291125c3a51310b52192487d4bbc
languageName: node
linkType: hard
@@ -12530,9 +12640,9 @@ __metadata:
linkType: hard
"@types/braces@npm:*":
- version: 3.0.5
- resolution: "@types/braces@npm:3.0.5"
- checksum: 10c0/fff17426731376b452abf747e862f0116b80ccc68a2c8e6b56aff240048c26c983d61c456c6792dffe9df407d80c1a504bea21e8c1a56afaed1f311dfe75bc68
+ version: 3.0.4
+ resolution: "@types/braces@npm:3.0.4"
+ checksum: 10c0/05220f330814364318a1c2f403046d717690cabf3adc8417357b0b12713f92768cf9df76e0e25212b5a2727c8c56765ff19a284c7ece39e0985d0d6fadb6c4aa
languageName: node
linkType: hard
@@ -12771,11 +12881,11 @@ __metadata:
linkType: hard
"@types/d3-shape@npm:*":
- version: 3.1.7
- resolution: "@types/d3-shape@npm:3.1.7"
+ version: 3.1.6
+ resolution: "@types/d3-shape@npm:3.1.6"
dependencies:
"@types/d3-path": "npm:*"
- checksum: 10c0/38e59771c1c4c83b67aa1f941ce350410522a149d2175832fdc06396b2bb3b2c1a2dd549e0f8230f9f24296ee5641a515eaf10f55ee1ef6c4f83749e2dd7dcfd
+ checksum: 10c0/0625715925d3c7ed3d44ce998b42c993f063c31605b6e4a8046c4be0fe724e2d214fc83e86d04f429a30a6e1f439053e92b0d9e59e1180c3a5327b4a6e79fa0a
languageName: node
linkType: hard
@@ -12877,13 +12987,13 @@ __metadata:
linkType: hard
"@types/dockerode@npm:^3.3.28":
- version: 3.3.34
- resolution: "@types/dockerode@npm:3.3.34"
+ version: 3.3.32
+ resolution: "@types/dockerode@npm:3.3.32"
dependencies:
"@types/docker-modem": "npm:*"
"@types/node": "npm:*"
"@types/ssh2": "npm:*"
- checksum: 10c0/029ee5734c4d28b779c055ef8c4ca91b393e1408c507bcff378bbbaa331211ef4a5eea0f527b20e541e14dd1ac8c042910a93b203296a667272c33df0c7f455b
+ checksum: 10c0/89b45da46ffd0eee36b469a6e61ddcbf101835ee2212ac26b84ee01556c5a99155469e5e345eadb677fd3dd80e7f238d3f265c15b3f99f94f4c53cad9b35023c
languageName: node
linkType: hard
@@ -12941,14 +13051,14 @@ __metadata:
linkType: hard
"@types/express-serve-static-core@npm:*, @types/express-serve-static-core@npm:^5.0.0":
- version: 5.0.4
- resolution: "@types/express-serve-static-core@npm:5.0.4"
+ version: 5.0.2
+ resolution: "@types/express-serve-static-core@npm:5.0.2"
dependencies:
"@types/node": "npm:*"
"@types/qs": "npm:*"
"@types/range-parser": "npm:*"
"@types/send": "npm:*"
- checksum: 10c0/e469d179a8815703f0be495f400713394ddccaf37d1fab90907d2ec0b19b03df4db20a6bbde026ba0d218a817ed22c3ef3934d429649b1ce66d26084f5105eae
+ checksum: 10c0/9f6ee50bd81f0aa6cc9df6ad2c2d221a3a63249da944db58ec8bb8681e77a5b3b3fdb1931bda73beb13cfaf9125731f835fe5256afb6a6da35b0eb08ccbdbfdf
languageName: node
linkType: hard
@@ -13265,9 +13375,9 @@ __metadata:
linkType: hard
"@types/lodash@npm:*, @types/lodash@npm:^4.14.136, @types/lodash@npm:^4.14.175":
- version: 4.17.14
- resolution: "@types/lodash@npm:4.17.14"
- checksum: 10c0/343c6f722e0b39969036a885ad5aad6578479ead83987128c9b994e6b7f2fb9808244d802d4d332396bb09096f720a6c7060de16a492f5460e06a44560360322
+ version: 4.17.13
+ resolution: "@types/lodash@npm:4.17.13"
+ checksum: 10c0/c3d0b7efe7933ac0369b99f2f7bff9240d960680fdb74b41ed4bd1b3ca60cca1e31fe4046d9abbde778f941a41bc2a75eb629abf8659fa6c27b66efbbb0802a9
languageName: node
linkType: hard
@@ -13435,11 +13545,11 @@ __metadata:
linkType: hard
"@types/node@npm:^18.11.18":
- version: 18.19.70
- resolution: "@types/node@npm:18.19.70"
+ version: 18.19.68
+ resolution: "@types/node@npm:18.19.68"
dependencies:
undici-types: "npm:~5.26.4"
- checksum: 10c0/68866e53b92be60d8840f5c93232d3ae39c71663101decc1d4f1870d9236c3c89e74177b616c2a2cabce116b1356f3e89c57df3e969c9f9b0e0b5c59b5f790f7
+ checksum: 10c0/8c7f01be218c6e3c1e643173662af27e9a2b568f36c0fe83e4295cf7674fe2a0abb4a1c5d7c7abd3345b9114581387dfd3f14b6d0338daebdce9273cd7ba59ab
languageName: node
linkType: hard
@@ -13637,11 +13747,11 @@ __metadata:
linkType: hard
"@types/ssh2@npm:*":
- version: 1.15.3
- resolution: "@types/ssh2@npm:1.15.3"
+ version: 1.15.1
+ resolution: "@types/ssh2@npm:1.15.1"
dependencies:
"@types/node": "npm:^18.11.18"
- checksum: 10c0/277cafe07111e3191c10cf2ce686b7950343662c9661871127d905f3db736b49202618b94e3f2fbde129ebc7032da2b62d130107f877e2d0216955488c355667
+ checksum: 10c0/83c83684e0d620ab940e05c5b7e846eacf6c56761e421dbe6a5a51daa09c82fb71ea4843b792b6e6b2edd0bee8eb665034ffd73978d936b9f008c553bcc38ea7
languageName: node
linkType: hard
@@ -13841,23 +13951,23 @@ __metadata:
linkType: hard
"@typescript-eslint/eslint-plugin@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0":
- version: 8.19.1
- resolution: "@typescript-eslint/eslint-plugin@npm:8.19.1"
+ version: 8.18.1
+ resolution: "@typescript-eslint/eslint-plugin@npm:8.18.1"
dependencies:
"@eslint-community/regexpp": "npm:^4.10.0"
- "@typescript-eslint/scope-manager": "npm:8.19.1"
- "@typescript-eslint/type-utils": "npm:8.19.1"
- "@typescript-eslint/utils": "npm:8.19.1"
- "@typescript-eslint/visitor-keys": "npm:8.19.1"
+ "@typescript-eslint/scope-manager": "npm:8.18.1"
+ "@typescript-eslint/type-utils": "npm:8.18.1"
+ "@typescript-eslint/utils": "npm:8.18.1"
+ "@typescript-eslint/visitor-keys": "npm:8.18.1"
graphemer: "npm:^1.4.0"
ignore: "npm:^5.3.1"
natural-compare: "npm:^1.4.0"
- ts-api-utils: "npm:^2.0.0"
+ ts-api-utils: "npm:^1.3.0"
peerDependencies:
"@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: ">=4.8.4 <5.8.0"
- checksum: 10c0/993784b04533b13c3f3919c793cfc3a369fa61692e1a2d72de6fba27df247c275d852cdcbc4e393c310b73fce8d34d210a9b632b66f4d761a1a3b4781f8fa93f
+ checksum: 10c0/7994d323228f3fc3ec124291cd02761251bcd9a5a6356001d2cb8f68abdb400c3cfbeb343d6941d8e6b6c8d2d616a278bbb3b6d9ed839ba5148a05f60a1f67b4
languageName: node
linkType: hard
@@ -13913,18 +14023,18 @@ __metadata:
linkType: hard
"@typescript-eslint/parser@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0":
- version: 8.19.1
- resolution: "@typescript-eslint/parser@npm:8.19.1"
+ version: 8.18.1
+ resolution: "@typescript-eslint/parser@npm:8.18.1"
dependencies:
- "@typescript-eslint/scope-manager": "npm:8.19.1"
- "@typescript-eslint/types": "npm:8.19.1"
- "@typescript-eslint/typescript-estree": "npm:8.19.1"
- "@typescript-eslint/visitor-keys": "npm:8.19.1"
+ "@typescript-eslint/scope-manager": "npm:8.18.1"
+ "@typescript-eslint/types": "npm:8.18.1"
+ "@typescript-eslint/typescript-estree": "npm:8.18.1"
+ "@typescript-eslint/visitor-keys": "npm:8.18.1"
debug: "npm:^4.3.4"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: ">=4.8.4 <5.8.0"
- checksum: 10c0/1afbd2d0a25f439943bdc94637417429574eb3889a2a1ce24bd425721713aca213808a975bb518a6616171783bc04fa973167f05fc6a96cfd88c1d1666077ad4
+ checksum: 10c0/23ab30b3f00b86108137e7df03710a088046ead3582595b0f8e17d5062770365e24e0a1ae3398bb3a1c29aa0f05a0de30887e2e0f6fb86163e878dd0eed1b25c
languageName: node
linkType: hard
@@ -13955,13 +14065,13 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/scope-manager@npm:8.19.1":
- version: 8.19.1
- resolution: "@typescript-eslint/scope-manager@npm:8.19.1"
+"@typescript-eslint/scope-manager@npm:8.18.1":
+ version: 8.18.1
+ resolution: "@typescript-eslint/scope-manager@npm:8.18.1"
dependencies:
- "@typescript-eslint/types": "npm:8.19.1"
- "@typescript-eslint/visitor-keys": "npm:8.19.1"
- checksum: 10c0/7dca0c28ad27a0c7e26499e0f584f98efdcf34087f46aadc661b36c310484b90655e83818bafd249b5a28c7094a69c54d553f6cd403869bf134f95a9148733f5
+ "@typescript-eslint/types": "npm:8.18.1"
+ "@typescript-eslint/visitor-keys": "npm:8.18.1"
+ checksum: 10c0/97c503b2ece79b6c99ca8e6a5f1f40855cf72f17fbf05e42e62d19c2666e7e6f5df9bf71f13dbc4720c5ee0397670ba8052482a90441fbffa901da5f2e739565
languageName: node
linkType: hard
@@ -13992,18 +14102,18 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/type-utils@npm:8.19.1":
- version: 8.19.1
- resolution: "@typescript-eslint/type-utils@npm:8.19.1"
+"@typescript-eslint/type-utils@npm:8.18.1":
+ version: 8.18.1
+ resolution: "@typescript-eslint/type-utils@npm:8.18.1"
dependencies:
- "@typescript-eslint/typescript-estree": "npm:8.19.1"
- "@typescript-eslint/utils": "npm:8.19.1"
+ "@typescript-eslint/typescript-estree": "npm:8.18.1"
+ "@typescript-eslint/utils": "npm:8.18.1"
debug: "npm:^4.3.4"
- ts-api-utils: "npm:^2.0.0"
+ ts-api-utils: "npm:^1.3.0"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: ">=4.8.4 <5.8.0"
- checksum: 10c0/757592b515beec58c079c605aa648ba94d985ae48ba40460034e849c7bc2b603b1da6113e59688e284608c9d5ccaa27adf0a14fb032cb1782200c6acae51ddd2
+ checksum: 10c0/cfe5362a22fa5e18a2662928904da024e42c84cb58a46238b9b61edafcd046f53c9505637176c8cd1c386165c6a6ed15a2b51700495cad6c20e0e33499d483a1
languageName: node
linkType: hard
@@ -14029,10 +14139,10 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/types@npm:8.19.1":
- version: 8.19.1
- resolution: "@typescript-eslint/types@npm:8.19.1"
- checksum: 10c0/e907bf096d5ed7a812a1e537a98dd881ab5d2d47e072225bfffaa218c1433115a148b27a15744db8374b46dac721617c6d13a1da255fdeb369cf193416533f6e
+"@typescript-eslint/types@npm:8.18.1":
+ version: 8.18.1
+ resolution: "@typescript-eslint/types@npm:8.18.1"
+ checksum: 10c0/0a2ca5f7cdebcc844b6bc1e5afc5d83b563f55917d20e3fea3a17ed39c54b003178e26b5ec535113f45c93c569b46628d9a67defa70c01cbdfa801573fed69a2
languageName: node
linkType: hard
@@ -14061,21 +14171,21 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/typescript-estree@npm:8.19.1":
- version: 8.19.1
- resolution: "@typescript-eslint/typescript-estree@npm:8.19.1"
+"@typescript-eslint/typescript-estree@npm:8.18.1":
+ version: 8.18.1
+ resolution: "@typescript-eslint/typescript-estree@npm:8.18.1"
dependencies:
- "@typescript-eslint/types": "npm:8.19.1"
- "@typescript-eslint/visitor-keys": "npm:8.19.1"
+ "@typescript-eslint/types": "npm:8.18.1"
+ "@typescript-eslint/visitor-keys": "npm:8.18.1"
debug: "npm:^4.3.4"
fast-glob: "npm:^3.3.2"
is-glob: "npm:^4.0.3"
minimatch: "npm:^9.0.4"
semver: "npm:^7.6.0"
- ts-api-utils: "npm:^2.0.0"
+ ts-api-utils: "npm:^1.3.0"
peerDependencies:
typescript: ">=4.8.4 <5.8.0"
- checksum: 10c0/549d9d565a58a25fc8397a555506f2e8d29a740f5b6ed9105479e22de5aab89d9d535959034a8e9d4115adb435de09ee6987d28e8922052eea577842ddce1a7a
+ checksum: 10c0/7ecb061dc63c729b23f4f15db5736ca93b1ae633108400e6c31cf8af782494912f25c3683f9f952dbfd10cb96031caba247a1ad406abf5d163639a00ac3ce5a3
languageName: node
linkType: hard
@@ -14115,18 +14225,18 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/utils@npm:8.19.1":
- version: 8.19.1
- resolution: "@typescript-eslint/utils@npm:8.19.1"
+"@typescript-eslint/utils@npm:8.18.1":
+ version: 8.18.1
+ resolution: "@typescript-eslint/utils@npm:8.18.1"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.4.0"
- "@typescript-eslint/scope-manager": "npm:8.19.1"
- "@typescript-eslint/types": "npm:8.19.1"
- "@typescript-eslint/typescript-estree": "npm:8.19.1"
+ "@typescript-eslint/scope-manager": "npm:8.18.1"
+ "@typescript-eslint/types": "npm:8.18.1"
+ "@typescript-eslint/typescript-estree": "npm:8.18.1"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: ">=4.8.4 <5.8.0"
- checksum: 10c0/f7d2fe9a2bd8cb3ae6fafe5e465882a6784b2acf81d43d194c579381b92651c2ffc0fca69d2a35eee119f539622752a0e9ec063aaec7576d5d2bfe68b441980d
+ checksum: 10c0/1e29408bd8fbda9f3386dabdb2b7471dacff28342d5bd6521ca3b7932df0cae100030d2eac75d946a82cbefa33f78000eed4ce789128fdea069ffeabd4429d80
languageName: node
linkType: hard
@@ -14155,13 +14265,13 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/visitor-keys@npm:8.19.1":
- version: 8.19.1
- resolution: "@typescript-eslint/visitor-keys@npm:8.19.1"
+"@typescript-eslint/visitor-keys@npm:8.18.1":
+ version: 8.18.1
+ resolution: "@typescript-eslint/visitor-keys@npm:8.18.1"
dependencies:
- "@typescript-eslint/types": "npm:8.19.1"
+ "@typescript-eslint/types": "npm:8.18.1"
eslint-visitor-keys: "npm:^4.2.0"
- checksum: 10c0/117537450a099f51f3f0d39186f248ae370bdc1b7f6975dbdbffcfc89e6e1aa47c1870db790d4f778a48f2c1f6cd9c269b63867c12afaa424367c63dabee8fd0
+ checksum: 10c0/68651ae1825dbd660ea39b4e1d1618f6ad0026fa3a04aecec296750977cab316564e3e2ace8edbebf1ae86bd17d86acc98cac7b6e9aad4e1c666bd26f18706ad
languageName: node
linkType: hard
@@ -14638,11 +14748,11 @@ __metadata:
linkType: hard
"agentkeepalive@npm:^4.2.1":
- version: 4.6.0
- resolution: "agentkeepalive@npm:4.6.0"
+ version: 4.5.0
+ resolution: "agentkeepalive@npm:4.5.0"
dependencies:
humanize-ms: "npm:^1.2.1"
- checksum: 10c0/235c182432f75046835b05f239708107138a40103deee23b6a08caee5136873709155753b394ec212e49e60e94a378189562cb01347765515cff61b692c69187
+ checksum: 10c0/394ea19f9710f230722996e156607f48fdf3a345133b0b1823244b7989426c16019a428b56c82d3eabef616e938812981d9009f4792ecc66bd6a59e991c62612
languageName: node
linkType: hard
@@ -15135,7 +15245,7 @@ __metadata:
languageName: node
linkType: hard
-"array.prototype.flatmap@npm:^1.3.2, array.prototype.flatmap@npm:^1.3.3":
+"array.prototype.flatmap@npm:^1.3.2":
version: 1.3.3
resolution: "array.prototype.flatmap@npm:1.3.3"
dependencies:
@@ -15341,14 +15451,14 @@ __metadata:
linkType: hard
"axios-ntlm@npm:^1.4.2":
- version: 1.4.3
- resolution: "axios-ntlm@npm:1.4.3"
+ version: 1.4.2
+ resolution: "axios-ntlm@npm:1.4.2"
dependencies:
- axios: "npm:^1.7.9"
+ axios: "npm:^1.6.1"
des.js: "npm:^1.1.0"
dev-null: "npm:^0.1.1"
js-md4: "npm:^0.3.2"
- checksum: 10c0/9aaa532e245660ed0155eb8243fbeb8f628becffd6ea8646c9746ad8ee95730b4fd02b84342f1a06756d39b7c03c9bcc5cffc57625873b2692723f8125e12e0b
+ checksum: 10c0/21b1a5ce488937c0e90129840655833ed721e8e20e00d72ba72ff9c2ce2455343f37a95b5475ec46455e183260f658d2e72df705c23f9629655d6de742da9221
languageName: node
linkType: hard
@@ -15361,7 +15471,7 @@ __metadata:
languageName: node
linkType: hard
-"axios@npm:^1.7.9":
+"axios@npm:^1.6.1, axios@npm:^1.7.9":
version: 1.7.9
resolution: "axios@npm:1.7.9"
dependencies:
@@ -15911,7 +16021,7 @@ __metadata:
languageName: node
linkType: hard
-"browserslist@npm:^4.0.0, browserslist@npm:^4.18.1, browserslist@npm:^4.19.1, browserslist@npm:^4.21.4, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0, browserslist@npm:^4.24.3":
+"browserslist@npm:^4.0.0, browserslist@npm:^4.18.1, browserslist@npm:^4.19.1, browserslist@npm:^4.21.4, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0":
version: 4.24.4
resolution: "browserslist@npm:4.24.4"
dependencies:
@@ -15925,6 +16035,20 @@ __metadata:
languageName: node
linkType: hard
+"browserslist@npm:^4.24.2":
+ version: 4.24.3
+ resolution: "browserslist@npm:4.24.3"
+ dependencies:
+ caniuse-lite: "npm:^1.0.30001688"
+ electron-to-chromium: "npm:^1.5.73"
+ node-releases: "npm:^2.0.19"
+ update-browserslist-db: "npm:^1.1.1"
+ bin:
+ browserslist: cli.js
+ checksum: 10c0/bab261ef7b6e1656a719a9fa31240ae7ce4d5ba68e479f6b11e348d819346ab4c0ff6f4821f43adcc9c193a734b186775a83b37979e70a69d182965909fe569a
+ languageName: node
+ linkType: hard
+
"bs-logger@npm:^0.2.6":
version: 0.2.6
resolution: "bs-logger@npm:0.2.6"
@@ -16217,9 +16341,9 @@ __metadata:
linkType: hard
"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001688":
- version: 1.0.30001692
- resolution: "caniuse-lite@npm:1.0.30001692"
- checksum: 10c0/fca5105561ea12f3de593f3b0f062af82f7d07519e8dbcb97f34e7fd23349bcef1b1622a9a6cd2164d98e3d2f20059ef7e271edae46567aef88caf4c16c7708a
+ version: 1.0.30001690
+ resolution: "caniuse-lite@npm:1.0.30001690"
+ checksum: 10c0/646bd469032afa90400a84dec30a2b00a6eda62c03ead358117e3f884cda8aacec02ec058a6dbee5eaf9714f83e483b9b0eb4fb42febb8076569f5ca40f1d347
languageName: node
linkType: hard
@@ -17022,9 +17146,9 @@ __metadata:
linkType: hard
"compute-scroll-into-view@npm:^3.0.2":
- version: 3.1.1
- resolution: "compute-scroll-into-view@npm:3.1.1"
- checksum: 10c0/59761ed62304a9599b52ad75d0d6fbf0669ee2ab7dd472fdb0ad9da36628414c014dea7b5810046560180ad30ffec52a953d19297f66a1d4f3aa0999b9d2521d
+ version: 3.1.0
+ resolution: "compute-scroll-into-view@npm:3.1.0"
+ checksum: 10c0/bf305c4ece8e5c59ed3f7ed82b6dab5b7487ce26f56a693d903869964712870fccb08fe31d40edcbd600b03c99198f54d443acb315d674bd64fd344410c8672e
languageName: node
linkType: hard
@@ -17099,9 +17223,9 @@ __metadata:
linkType: hard
"consola@npm:^3.0.0":
- version: 3.3.3
- resolution: "consola@npm:3.3.3"
- checksum: 10c0/9f6f457f3d83fbb339b9f2ff4f5c2776a1a05fad7ce3939d8dc41765431d5f52401b5a632f4b10ed9145b2aadec1e84cea78c30178479d3a2fd4880894592fa5
+ version: 3.3.0
+ resolution: "consola@npm:3.3.0"
+ checksum: 10c0/78c847200d7f2cb2054a8451e31614da4b8cc8f4da2f2a764465f935509b24c2045b5f5951d788260961f33f7ca112ee1b78a7341fe8c2c617b7bddbdb92e4ec
languageName: node
linkType: hard
@@ -17175,25 +17299,25 @@ __metadata:
linkType: hard
"core-js-compat@npm:^3.38.0, core-js-compat@npm:^3.38.1":
- version: 3.40.0
- resolution: "core-js-compat@npm:3.40.0"
+ version: 3.39.0
+ resolution: "core-js-compat@npm:3.39.0"
dependencies:
- browserslist: "npm:^4.24.3"
- checksum: 10c0/44f6e88726fe266a5be9581a79766800478a8d5c492885f2d4c2a4e2babd9b06bc1689d5340d3a61ae7332f990aff2e83b6203ff8773137a627cfedfbeefabeb
+ browserslist: "npm:^4.24.2"
+ checksum: 10c0/880579a3dab235e3b6350f1e324269c600753b48e891ea859331618d5051e68b7a95db6a03ad2f3cc7df4397318c25a5bc7740562ad39e94f56568638d09d414
languageName: node
linkType: hard
"core-js-pure@npm:^3.23.3":
- version: 3.40.0
- resolution: "core-js-pure@npm:3.40.0"
- checksum: 10c0/97590017216e2614e44bacc0b73159061b58e3ac86b61a3ed8cd78fc12bef604c5fb559a7a4d51ae5f2d1bd23ec57760ba6bf2802e802beb42d6bbce136acf52
+ version: 3.39.0
+ resolution: "core-js-pure@npm:3.39.0"
+ checksum: 10c0/5d954e467703ea1e860eb070bd72cf9dc5bfddd7037c09d750f0eba3ffc4066db741a595af86dc833a709929e161a909e48da3cbdd2d9bee7795cb516dc9f7d4
languageName: node
linkType: hard
"core-js@npm:^3.19.2":
- version: 3.40.0
- resolution: "core-js@npm:3.40.0"
- checksum: 10c0/db7946ada881e845d8b157061945b1187618fa45cf162f392a151e8a497962aed2da688c982eaa1d444c864be97a70f8be4d73385294b515d224dd164d19f1d4
+ version: 3.39.0
+ resolution: "core-js@npm:3.39.0"
+ checksum: 10c0/f7602069b6afb2e3298eec612a5c1e0c3e6a458930fbfc7a4c5f9ac03426507f49ce395eecdd2d9bae9024f820e44582b67ffe16f2272395af26964f174eeb6b
languageName: node
linkType: hard
@@ -18116,13 +18240,6 @@ __metadata:
languageName: node
linkType: hard
-"data-uri-to-buffer@npm:^4.0.0":
- version: 4.0.1
- resolution: "data-uri-to-buffer@npm:4.0.1"
- checksum: 10c0/20a6b93107597530d71d4cb285acee17f66bcdfc03fd81040921a81252f19db27588d87fc8fc69e1950c55cfb0bf8ae40d0e5e21d907230813eb5d5a7f9eb45b
- languageName: node
- linkType: hard
-
"data-urls@npm:^2.0.0":
version: 2.0.0
resolution: "data-urls@npm:2.0.0"
@@ -18649,30 +18766,26 @@ __metadata:
languageName: node
linkType: hard
-"docker-modem@npm:^5.0.5":
- version: 5.0.5
- resolution: "docker-modem@npm:5.0.5"
+"docker-modem@npm:^5.0.3":
+ version: 5.0.3
+ resolution: "docker-modem@npm:5.0.3"
dependencies:
debug: "npm:^4.1.1"
readable-stream: "npm:^3.5.0"
split-ca: "npm:^1.0.1"
ssh2: "npm:^1.15.0"
- checksum: 10c0/9d6ef310f9babac81bb680b3093b845070c3ed12ddcf76b74307c65086edea25dfe9517a7d4877fdd68686b2a371ae1c600e00c12056857f52344c12b108477b
+ checksum: 10c0/86d18b1b1e92954f4f5632b82453588670c11265a60d982c57bfcd737fe0362f4aa68176edae6d3c3f92c17a59bcfe8840fc741c06baea55e2003a78d7d16045
languageName: node
linkType: hard
"dockerode@npm:^4.0.2":
- version: 4.0.3
- resolution: "dockerode@npm:4.0.3"
+ version: 4.0.2
+ resolution: "dockerode@npm:4.0.2"
dependencies:
"@balena/dockerignore": "npm:^1.0.2"
- "@grpc/grpc-js": "npm:^1.11.1"
- "@grpc/proto-loader": "npm:^0.7.13"
- docker-modem: "npm:^5.0.5"
- protobufjs: "npm:^7.3.2"
+ docker-modem: "npm:^5.0.3"
tar-fs: "npm:~2.0.1"
- uuid: "npm:^10.0.0"
- checksum: 10c0/7315450e22756a3faeacc36c88d86d32959cbf49dfbc8c8adbbc67d41c70a1c1c82dba19c166f0439b4da134ad4e6966bfdd10b546c39e5c8d10a221742a5427
+ checksum: 10c0/69ece79408aca8523726fcec9d9c168b9a987b60b7143502583cc0b731dd2abf8b69b9d7d71c20d2bddcc508ebb477d82849d0bd368df260fedd8d62de5c5937
languageName: node
linkType: hard
@@ -18919,9 +19032,9 @@ __metadata:
linkType: hard
"electron-to-chromium@npm:^1.5.73":
- version: 1.5.80
- resolution: "electron-to-chromium@npm:1.5.80"
- checksum: 10c0/6aaf1891e1b05251efac6f4a63c0ddccf567f0f76506cf0cb284f11413762423fddd7786558066f74c3a95e2a533dad7a97bebe38779b46b7a799d8dd20cea53
+ version: 1.5.75
+ resolution: "electron-to-chromium@npm:1.5.75"
+ checksum: 10c0/df769b7a5e9895a8ba8eb7f31b9525a0e00b8aef6e3ecab3faebe90756fc9ac008dddb8d9a2a78d2079cbaebd27da6e1379f77e910163f405bb1a3d622ec4276
languageName: node
linkType: hard
@@ -19194,7 +19307,7 @@ __metadata:
languageName: node
linkType: hard
-"es-iterator-helpers@npm:^1.2.1":
+"es-iterator-helpers@npm:^1.1.0":
version: 1.2.1
resolution: "es-iterator-helpers@npm:1.2.1"
dependencies:
@@ -19219,9 +19332,9 @@ __metadata:
linkType: hard
"es-module-lexer@npm:^1.2.1":
- version: 1.6.0
- resolution: "es-module-lexer@npm:1.6.0"
- checksum: 10c0/667309454411c0b95c476025929881e71400d74a746ffa1ff4cb450bd87f8e33e8eef7854d68e401895039ac0bac64e7809acbebb6253e055dd49ea9e3ea9212
+ version: 1.5.4
+ resolution: "es-module-lexer@npm:1.5.4"
+ checksum: 10c0/300a469488c2f22081df1e4c8398c78db92358496e639b0df7f89ac6455462aaf5d8893939087c1a1cbcbf20eed4610c70e0bcb8f3e4b0d80a5d2611c539408c
languageName: node
linkType: hard
@@ -19776,30 +19889,30 @@ __metadata:
linkType: hard
"eslint-plugin-react@npm:^7.27.1, eslint-plugin-react@npm:^7.37.0":
- version: 7.37.3
- resolution: "eslint-plugin-react@npm:7.37.3"
+ version: 7.37.2
+ resolution: "eslint-plugin-react@npm:7.37.2"
dependencies:
array-includes: "npm:^3.1.8"
array.prototype.findlast: "npm:^1.2.5"
- array.prototype.flatmap: "npm:^1.3.3"
+ array.prototype.flatmap: "npm:^1.3.2"
array.prototype.tosorted: "npm:^1.1.4"
doctrine: "npm:^2.1.0"
- es-iterator-helpers: "npm:^1.2.1"
+ es-iterator-helpers: "npm:^1.1.0"
estraverse: "npm:^5.3.0"
hasown: "npm:^2.0.2"
jsx-ast-utils: "npm:^2.4.1 || ^3.0.0"
minimatch: "npm:^3.1.2"
object.entries: "npm:^1.1.8"
object.fromentries: "npm:^2.0.8"
- object.values: "npm:^1.2.1"
+ object.values: "npm:^1.2.0"
prop-types: "npm:^15.8.1"
resolve: "npm:^2.0.0-next.5"
semver: "npm:^6.3.1"
- string.prototype.matchall: "npm:^4.0.12"
+ string.prototype.matchall: "npm:^4.0.11"
string.prototype.repeat: "npm:^1.0.0"
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
- checksum: 10c0/e8b267ab928c63e651e35ba936e84098f4189fbaebbf3607341e6affedcfe39f2afba85fb3ef83ec322b32829b22d7433230eb6af0f692d262473c6a19441ba5
+ checksum: 10c0/01c498f263c201698bf653973760f86a07fa0cdec56c044f3eaa5ddaae71c64326015dfa5fde76ca8c5386ffe789fc79932624b614e13b6a1ad789fee3f7c491
languageName: node
linkType: hard
@@ -20544,15 +20657,15 @@ __metadata:
linkType: hard
"fast-glob@npm:^3.1.1, fast-glob@npm:^3.2.12, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.0, fast-glob@npm:^3.3.2":
- version: 3.3.3
- resolution: "fast-glob@npm:3.3.3"
+ version: 3.3.2
+ resolution: "fast-glob@npm:3.3.2"
dependencies:
"@nodelib/fs.stat": "npm:^2.0.2"
"@nodelib/fs.walk": "npm:^1.2.3"
glob-parent: "npm:^5.1.2"
merge2: "npm:^1.3.0"
- micromatch: "npm:^4.0.8"
- checksum: 10c0/f6aaa141d0d3384cf73cbcdfc52f475ed293f6d5b65bfc5def368b09163a9f7e5ec2b3014d80f733c405f58e470ee0cc451c2937685045cddcdeaa24199c43fe
+ micromatch: "npm:^4.0.4"
+ checksum: 10c0/42baad7b9cd40b63e42039132bde27ca2cb3a4950d0a0f9abe4639ea1aa9d3e3b40f98b1fe31cbc0cc17b664c9ea7447d911a152fa34ec5b72977b125a6fc845
languageName: node
linkType: hard
@@ -20631,9 +20744,9 @@ __metadata:
linkType: hard
"fast-uri@npm:^3.0.0, fast-uri@npm:^3.0.1":
- version: 3.0.5
- resolution: "fast-uri@npm:3.0.5"
- checksum: 10c0/f5501fd849e02f16f1730d2c8628078718c492b5bc00198068bc5c2880363ae948287fdc8cebfff47465229b517dbeaf668866fbabdff829b4138a899e5c2ba3
+ version: 3.0.3
+ resolution: "fast-uri@npm:3.0.3"
+ checksum: 10c0/4b2c5ce681a062425eae4f15cdc8fc151fd310b2f69b1f96680677820a8b49c3cd6e80661a406e19d50f0c40a3f8bffdd458791baf66f4a879d80be28e10a320
languageName: node
linkType: hard
@@ -20683,11 +20796,11 @@ __metadata:
linkType: hard
"fastq@npm:^1.17.1, fastq@npm:^1.6.0":
- version: 1.18.0
- resolution: "fastq@npm:1.18.0"
+ version: 1.17.1
+ resolution: "fastq@npm:1.17.1"
dependencies:
reusify: "npm:^1.0.4"
- checksum: 10c0/7be87ecc41762adbddf558d24182f50a4b1a3ef3ee807d33b7623da7aee5faecdcc94fce5aa13fe91df93e269f383232bbcdb2dc5338cd1826503d6063221f36
+ checksum: 10c0/1095f16cea45fb3beff558bb3afa74ca7a9250f5a670b65db7ed585f92b4b48381445cd328b3d87323da81e43232b5d5978a8201bde84e0cd514310f1ea6da34
languageName: node
linkType: hard
@@ -20767,16 +20880,6 @@ __metadata:
languageName: node
linkType: hard
-"fetch-blob@npm:^3.1.2, fetch-blob@npm:^3.1.4":
- version: 3.2.0
- resolution: "fetch-blob@npm:3.2.0"
- dependencies:
- node-domexception: "npm:^1.0.0"
- web-streams-polyfill: "npm:^3.0.3"
- checksum: 10c0/60054bf47bfa10fb0ba6cb7742acec2f37c1f56344f79a70bb8b1c48d77675927c720ff3191fa546410a0442c998d27ab05e9144c32d530d8a52fbe68f843b69
- languageName: node
- linkType: hard
-
"fets@npm:0.8.4, fets@npm:^0.8.0, fets@npm:^0.8.1":
version: 0.8.4
resolution: "fets@npm:0.8.4"
@@ -21123,15 +21226,6 @@ __metadata:
languageName: node
linkType: hard
-"formdata-polyfill@npm:^4.0.10":
- version: 4.0.10
- resolution: "formdata-polyfill@npm:4.0.10"
- dependencies:
- fetch-blob: "npm:^3.1.2"
- checksum: 10c0/5392ec484f9ce0d5e0d52fb5a78e7486637d516179b0eb84d81389d7eccf9ca2f663079da56f761355c0a65792810e3b345dc24db9a8bbbcf24ef3c8c88570c6
- languageName: node
- linkType: hard
-
"formidable@npm:^3.5.2":
version: 3.5.2
resolution: "formidable@npm:3.5.2"
@@ -21499,11 +21593,11 @@ __metadata:
linkType: hard
"giscus@npm:^1.5.0":
- version: 1.6.0
- resolution: "giscus@npm:1.6.0"
+ version: 1.5.0
+ resolution: "giscus@npm:1.5.0"
dependencies:
- lit: "npm:^3.2.1"
- checksum: 10c0/2dc96e45591b38bbf8db7c9a0efbb25f598e57522cd90ca0cad23d573f88f5adbe4411c0c4cf61231f6dca57531d6fe4fbbcd12be78681cba3aa218eb4584e11
+ lit: "npm:^3.1.2"
+ checksum: 10c0/2e94c0260128c402de16550d1ec1b5797dc2efbebed994371920fed1a7018f4b20377f147205c6e479e3e99d975a499db746ae813ca11e1a7d58009e6f059842
languageName: node
linkType: hard
@@ -21563,8 +21657,8 @@ __metadata:
linkType: hard
"glob@npm:^11.0.0":
- version: 11.0.1
- resolution: "glob@npm:11.0.1"
+ version: 11.0.0
+ resolution: "glob@npm:11.0.0"
dependencies:
foreground-child: "npm:^3.1.0"
jackspeak: "npm:^4.0.1"
@@ -21574,7 +21668,7 @@ __metadata:
path-scurry: "npm:^2.0.0"
bin:
glob: dist/esm/bin.mjs
- checksum: 10c0/2b32588be52e9e90f914c7d8dec32f3144b81b84054b0f70e9adfebf37cd7014570489f2a79d21f7801b9a4bd4cca94f426966bfd00fb64a5b705cfe10da3a03
+ checksum: 10c0/419866015d8795258a8ac51de5b9d1a99c72634fc3ead93338e4da388e89773ab21681e494eac0fbc4250b003451ca3110bb4f1c9393d15d14466270094fdb4e
languageName: node
linkType: hard
@@ -22110,11 +22204,11 @@ __metadata:
linkType: hard
"graphql-sse@npm:^2.5.3":
- version: 2.5.4
- resolution: "graphql-sse@npm:2.5.4"
+ version: 2.5.3
+ resolution: "graphql-sse@npm:2.5.3"
peerDependencies:
graphql: ">=0.11 <=16"
- checksum: 10c0/b2635a4098b86492ecb04e7aab7efb715847ad11b785591cf90cf1f342ba78a03db0c6cf903975a7ad9e2c278dee55cd9e2e9d7edb560f334528bb8ee926ed95
+ checksum: 10c0/b556564aaddd8dfcc4e7fd25da37cfe95dbf5e100fca287b1b15ab6874a772fda96088b66e7d02739076fb769d60279c17afe54d5ab196eeca67972247c6c73e
languageName: node
linkType: hard
@@ -22149,11 +22243,11 @@ __metadata:
linkType: hard
"graphql-ws@npm:^5.12.1, graphql-ws@npm:^5.14.0, graphql-ws@npm:^5.16.0, graphql-ws@npm:^5.6.2":
- version: 5.16.2
- resolution: "graphql-ws@npm:5.16.2"
+ version: 5.16.0
+ resolution: "graphql-ws@npm:5.16.0"
peerDependencies:
graphql: ">=0.11 <=16"
- checksum: 10c0/ba373df11ea8c6349c9f67335a0dfb09050a09ecc6b724b64730d242675c41d9f4b4a114b190b8711d014f8491c2bb8249e0df8308d51c4b27c921f87c4f6c58
+ checksum: 10c0/5e538c3460ca997a1634bd0f64236d8d7aa6ac75c58aba549b49953faf0dd2497f4fa43eedb0bc82cfff50426c7ce47682a670d2571fd7f3af5dcf00911c9e1b
languageName: node
linkType: hard
@@ -22291,7 +22385,7 @@ __metadata:
languageName: node
linkType: hard
-"has-tostringtag@npm:^1.0.2":
+"has-tostringtag@npm:^1.0.0, has-tostringtag@npm:^1.0.2":
version: 1.0.2
resolution: "has-tostringtag@npm:1.0.2"
dependencies:
@@ -22412,8 +22506,8 @@ __metadata:
linkType: hard
"hast-util-to-estree@npm:^3.0.0, hast-util-to-estree@npm:^3.1.0":
- version: 3.1.1
- resolution: "hast-util-to-estree@npm:3.1.1"
+ version: 3.1.0
+ resolution: "hast-util-to-estree@npm:3.1.0"
dependencies:
"@types/estree": "npm:^1.0.0"
"@types/estree-jsx": "npm:^1.0.0"
@@ -22428,10 +22522,10 @@ __metadata:
mdast-util-mdxjs-esm: "npm:^2.0.0"
property-information: "npm:^6.0.0"
space-separated-tokens: "npm:^2.0.0"
- style-to-object: "npm:^1.0.0"
+ style-to-object: "npm:^0.4.0"
unist-util-position: "npm:^5.0.0"
zwitch: "npm:^2.0.0"
- checksum: 10c0/90b4faa892171597daec5b5c691bba0f9bcacd10573ea0254898cf877ab3898e7d95de73ee99cfcec371d9824183c0631dfbbeb1085c4c22f7b90b4904324749
+ checksum: 10c0/9003a8bac26a4580d5fc9f2a271d17330dd653266425e9f5539feecd2f7538868d6630a18f70698b8b804bf14c306418a3f4ab3119bb4692aca78b0c08b1291e
languageName: node
linkType: hard
@@ -22769,9 +22863,9 @@ __metadata:
linkType: hard
"http-parser-js@npm:>=0.5.1":
- version: 0.5.9
- resolution: "http-parser-js@npm:0.5.9"
- checksum: 10c0/25aac1096b5270e69b1f6c850c8d4363c1e8b5711f97109cf65d44ecf5dfe3438811036a9b4d4f432474a2519ac46e8feb1a7b6be6e292a956e63bdad12583fb
+ version: 0.5.8
+ resolution: "http-parser-js@npm:0.5.8"
+ checksum: 10c0/4ed89f812c44f84c4ae5d43dd3a0c47942b875b63be0ed2ccecbe6b0018af867d806495fc6e12474aff868721163699c49246585bddea4f0ecc6d2b02e19faf1
languageName: node
linkType: hard
@@ -23132,6 +23226,13 @@ __metadata:
languageName: node
linkType: hard
+"inline-style-parser@npm:0.1.1":
+ version: 0.1.1
+ resolution: "inline-style-parser@npm:0.1.1"
+ checksum: 10c0/08832a533f51a1e17619f2eabf2f5ec5e956d6dcba1896351285c65df022c9420de61d73256e1dca8015a52abf96cc84ddc3b73b898b22de6589d3962b5e501b
+ languageName: node
+ linkType: hard
+
"inline-style-parser@npm:0.2.4":
version: 0.2.4
resolution: "inline-style-parser@npm:0.2.4"
@@ -23348,14 +23449,11 @@ __metadata:
linkType: hard
"is-async-function@npm:^2.0.0":
- version: 2.1.0
- resolution: "is-async-function@npm:2.1.0"
+ version: 2.0.0
+ resolution: "is-async-function@npm:2.0.0"
dependencies:
- call-bound: "npm:^1.0.3"
- get-proto: "npm:^1.0.1"
- has-tostringtag: "npm:^1.0.2"
- safe-regex-test: "npm:^1.1.0"
- checksum: 10c0/5209b858c6d18d88a9fb56dea202a050d53d4b722448cc439fdca859b36e23edf27ee8c18958ba49330f1a71b8846576273f4581e1c0bb9d403738129d852fdb
+ has-tostringtag: "npm:^1.0.0"
+ checksum: 10c0/787bc931576aad525d751fc5ce211960fe91e49ac84a5c22d6ae0bc9541945fbc3f686dc590c3175722ce4f6d7b798a93f6f8ff4847fdb2199aea6f4baf5d668
languageName: node
linkType: hard
@@ -23542,14 +23640,11 @@ __metadata:
linkType: hard
"is-generator-function@npm:^1.0.10, is-generator-function@npm:^1.0.7":
- version: 1.1.0
- resolution: "is-generator-function@npm:1.1.0"
+ version: 1.0.10
+ resolution: "is-generator-function@npm:1.0.10"
dependencies:
- call-bound: "npm:^1.0.3"
- get-proto: "npm:^1.0.0"
- has-tostringtag: "npm:^1.0.2"
- safe-regex-test: "npm:^1.1.0"
- checksum: 10c0/fdfa96c8087bf36fc4cd514b474ba2ff404219a4dd4cfa6cf5426404a1eed259bdcdb98f082a71029a48d01f27733e3436ecc6690129a7ec09cb0434bee03a2a
+ has-tostringtag: "npm:^1.0.0"
+ checksum: 10c0/df03514df01a6098945b5a0cfa1abff715807c8e72f57c49a0686ad54b3b74d394e2d8714e6f709a71eb00c9630d48e73ca1796c1ccc84ac95092c1fecc0d98b
languageName: node
linkType: hard
@@ -24056,16 +24151,16 @@ __metadata:
linkType: hard
"iterator.prototype@npm:^1.1.4":
- version: 1.1.5
- resolution: "iterator.prototype@npm:1.1.5"
+ version: 1.1.4
+ resolution: "iterator.prototype@npm:1.1.4"
dependencies:
define-data-property: "npm:^1.1.4"
es-object-atoms: "npm:^1.0.0"
get-intrinsic: "npm:^1.2.6"
- get-proto: "npm:^1.0.0"
has-symbols: "npm:^1.1.0"
+ reflect.getprototypeof: "npm:^1.0.8"
set-function-name: "npm:^2.0.2"
- checksum: 10c0/f7a262808e1b41049ab55f1e9c29af7ec1025a000d243b83edf34ce2416eedd56079b117fa59376bb4a724110690f13aa8427f2ee29a09eec63a7e72367626d0
+ checksum: 10c0/e63fcb5c1094192f43795b836fae9149a7dc2d445425958045e8e193df428407f909efca21bfdf0d885668ae8204681984afac7dd75478118e62f3cd3959c538
languageName: node
linkType: hard
@@ -25529,9 +25624,9 @@ __metadata:
linkType: hard
"jsonschema@npm:^1.4.1":
- version: 1.5.0
- resolution: "jsonschema@npm:1.5.0"
- checksum: 10c0/c24ddb8d741f02efc0da3ad9b597a275f6b595062903d3edbfaa535c3f9c4c98613df68da5cb6635ed9aeab30d658986fea61d7662fc5b2b92840d5a1e21235e
+ version: 1.4.1
+ resolution: "jsonschema@npm:1.4.1"
+ checksum: 10c0/c3422d3fc7d33ff7234a806ffa909bb6fb5d1cd664bea229c64a1785dc04cbccd5fc76cf547c6ab6dd7881dbcaf3540a6a9f925a5956c61a9cd3e23a3c1796ef
languageName: node
linkType: hard
@@ -25608,13 +25703,13 @@ __metadata:
linkType: hard
"katex@npm:^0.16.0, katex@npm:^0.16.9":
- version: 0.16.20
- resolution: "katex@npm:0.16.20"
+ version: 0.16.18
+ resolution: "katex@npm:0.16.18"
dependencies:
commander: "npm:^8.3.0"
bin:
katex: cli.js
- checksum: 10c0/390a3b8364c087078dcd1c17babfec867f1b5f44eabf6f2e8b9841b88496330b1bf8dc95f477172a0ddab6d12c11a8da6ed6269720d3d8cef2c505f5c2652255
+ checksum: 10c0/f80844710ae28d435395df522cf2439ce1be240cb5e7196e569e16459f705c232cd1335ff96bb6a76a3a87962ddebeb7e212e25271f11ad8f80a30dec575ba53
languageName: node
linkType: hard
@@ -25770,101 +25865,101 @@ __metadata:
linkType: hard
"light-my-request@npm:^6.0.0":
- version: 6.5.1
- resolution: "light-my-request@npm:6.5.1"
+ version: 6.4.0
+ resolution: "light-my-request@npm:6.4.0"
dependencies:
cookie: "npm:^1.0.1"
process-warning: "npm:^4.0.0"
set-cookie-parser: "npm:^2.6.0"
- checksum: 10c0/176471f5e0e3de86a52fe2eee86a911386ecd72ef27de3d0d8be5074d2163be5820b3649e0e391b3904e1875625c08a5a0d8536636105a14a01621c75fe4c12d
+ checksum: 10c0/bdcd3afcfe14ebf0b910964a71a2b4e68fc9dc05f8e92709a3065a603502babdf58c2dbf6897b7c04577debcc9aa968bfa85a7a5b99248a6b6a9ea8290c39053
languageName: node
linkType: hard
-"lightningcss-darwin-arm64@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-darwin-arm64@npm:1.29.1"
+"lightningcss-darwin-arm64@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-darwin-arm64@npm:1.28.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"lightningcss-darwin-x64@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-darwin-x64@npm:1.29.1"
+"lightningcss-darwin-x64@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-darwin-x64@npm:1.28.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"lightningcss-freebsd-x64@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-freebsd-x64@npm:1.29.1"
+"lightningcss-freebsd-x64@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-freebsd-x64@npm:1.28.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"lightningcss-linux-arm-gnueabihf@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-linux-arm-gnueabihf@npm:1.29.1"
+"lightningcss-linux-arm-gnueabihf@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-linux-arm-gnueabihf@npm:1.28.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"lightningcss-linux-arm64-gnu@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-linux-arm64-gnu@npm:1.29.1"
+"lightningcss-linux-arm64-gnu@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-linux-arm64-gnu@npm:1.28.2"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"lightningcss-linux-arm64-musl@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-linux-arm64-musl@npm:1.29.1"
+"lightningcss-linux-arm64-musl@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-linux-arm64-musl@npm:1.28.2"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"lightningcss-linux-x64-gnu@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-linux-x64-gnu@npm:1.29.1"
+"lightningcss-linux-x64-gnu@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-linux-x64-gnu@npm:1.28.2"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"lightningcss-linux-x64-musl@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-linux-x64-musl@npm:1.29.1"
+"lightningcss-linux-x64-musl@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-linux-x64-musl@npm:1.28.2"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"lightningcss-win32-arm64-msvc@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-win32-arm64-msvc@npm:1.29.1"
+"lightningcss-win32-arm64-msvc@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-win32-arm64-msvc@npm:1.28.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"lightningcss-win32-x64-msvc@npm:1.29.1":
- version: 1.29.1
- resolution: "lightningcss-win32-x64-msvc@npm:1.29.1"
+"lightningcss-win32-x64-msvc@npm:1.28.2":
+ version: 1.28.2
+ resolution: "lightningcss-win32-x64-msvc@npm:1.28.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"lightningcss@npm:^1.22.0":
- version: 1.29.1
- resolution: "lightningcss@npm:1.29.1"
+ version: 1.28.2
+ resolution: "lightningcss@npm:1.28.2"
dependencies:
detect-libc: "npm:^1.0.3"
- lightningcss-darwin-arm64: "npm:1.29.1"
- lightningcss-darwin-x64: "npm:1.29.1"
- lightningcss-freebsd-x64: "npm:1.29.1"
- lightningcss-linux-arm-gnueabihf: "npm:1.29.1"
- lightningcss-linux-arm64-gnu: "npm:1.29.1"
- lightningcss-linux-arm64-musl: "npm:1.29.1"
- lightningcss-linux-x64-gnu: "npm:1.29.1"
- lightningcss-linux-x64-musl: "npm:1.29.1"
- lightningcss-win32-arm64-msvc: "npm:1.29.1"
- lightningcss-win32-x64-msvc: "npm:1.29.1"
+ lightningcss-darwin-arm64: "npm:1.28.2"
+ lightningcss-darwin-x64: "npm:1.28.2"
+ lightningcss-freebsd-x64: "npm:1.28.2"
+ lightningcss-linux-arm-gnueabihf: "npm:1.28.2"
+ lightningcss-linux-arm64-gnu: "npm:1.28.2"
+ lightningcss-linux-arm64-musl: "npm:1.28.2"
+ lightningcss-linux-x64-gnu: "npm:1.28.2"
+ lightningcss-linux-x64-musl: "npm:1.28.2"
+ lightningcss-win32-arm64-msvc: "npm:1.28.2"
+ lightningcss-win32-x64-msvc: "npm:1.28.2"
dependenciesMeta:
lightningcss-darwin-arm64:
optional: true
@@ -25886,7 +25981,7 @@ __metadata:
optional: true
lightningcss-win32-x64-msvc:
optional: true
- checksum: 10c0/c2f421f8fdbdf7e5fe271f12d18ffaf332a11c88094b2bcfb90c56d6a442281c609e23ad56b8974002d61f117e171c967e1fe74ffa458bed810e6c7526cd8c93
+ checksum: 10c0/3318770bc7cce1d18acd219ea1e988456b6a5f90a4c09cf12c9ef39c5d4fafff9ba18e798f828131c6d9ece9ae8d544de670becb226ed16e243353c88abc9b41
languageName: node
linkType: hard
@@ -25993,7 +26088,7 @@ __metadata:
languageName: node
linkType: hard
-"lit@npm:^3.2.1":
+"lit@npm:^3.1.2":
version: 3.2.1
resolution: "lit@npm:3.2.1"
dependencies:
@@ -26391,9 +26486,9 @@ __metadata:
linkType: hard
"long@npm:^5.0.0":
- version: 5.2.4
- resolution: "long@npm:5.2.4"
- checksum: 10c0/0cf819ce2a7bbe48663e79233917552c7667b11e68d4d9ea4ebb99173042509d9af461e5211c22939b913332c264d9a1135937ea533cbd05bc4f8cf46f6d2e07
+ version: 5.2.3
+ resolution: "long@npm:5.2.3"
+ checksum: 10c0/6a0da658f5ef683b90330b1af76f06790c623e148222da9d75b60e266bbf88f803232dd21464575681638894a84091616e7f89557aa087fd14116c0f4e0e43d9
languageName: node
linkType: hard
@@ -26694,14 +26789,14 @@ __metadata:
linkType: hard
"mdast-util-find-and-replace@npm:^3.0.0":
- version: 3.0.2
- resolution: "mdast-util-find-and-replace@npm:3.0.2"
+ version: 3.0.1
+ resolution: "mdast-util-find-and-replace@npm:3.0.1"
dependencies:
"@types/mdast": "npm:^4.0.0"
escape-string-regexp: "npm:^5.0.0"
unist-util-is: "npm:^6.0.0"
unist-util-visit-parents: "npm:^6.0.0"
- checksum: 10c0/c8417a35605d567772ff5c1aa08363ff3010b0d60c8ea68c53cba09bf25492e3dd261560425c1756535f3b7107f62e7ff3857cdd8fb1e62d1b2cc2ea6e074ca2
+ checksum: 10c0/1faca98c4ee10a919f23b8cc6d818e5bb6953216a71dfd35f51066ed5d51ef86e5063b43dcfdc6061cd946e016a9f0d44a1dccadd58452cf4ed14e39377f00cb
languageName: node
linkType: hard
@@ -28535,13 +28630,6 @@ __metadata:
languageName: node
linkType: hard
-"node-domexception@npm:^1.0.0":
- version: 1.0.0
- resolution: "node-domexception@npm:1.0.0"
- checksum: 10c0/5e5d63cda29856402df9472335af4bb13875e1927ad3be861dc5ebde38917aecbf9ae337923777af52a48c426b70148815e890a5d72760f1b4d758cc671b1a2b
- languageName: node
- linkType: hard
-
"node-fetch@npm:2.6.0":
version: 2.6.0
resolution: "node-fetch@npm:2.6.0"
@@ -28549,7 +28637,7 @@ __metadata:
languageName: node
linkType: hard
-"node-fetch@npm:^2.5.0, node-fetch@npm:^2.6.7, node-fetch@npm:^2.7.0":
+"node-fetch@npm:^2.5.0, node-fetch@npm:^2.6.1, node-fetch@npm:^2.6.7, node-fetch@npm:^2.7.0":
version: 2.7.0
resolution: "node-fetch@npm:2.7.0"
dependencies:
@@ -28563,17 +28651,6 @@ __metadata:
languageName: node
linkType: hard
-"node-fetch@npm:^3.3.2":
- version: 3.3.2
- resolution: "node-fetch@npm:3.3.2"
- dependencies:
- data-uri-to-buffer: "npm:^4.0.0"
- fetch-blob: "npm:^3.1.4"
- formdata-polyfill: "npm:^4.0.10"
- checksum: 10c0/f3d5e56190562221398c9f5750198b34cf6113aa304e34ee97c94fd300ec578b25b2c2906edba922050fce983338fde0d5d34fcb0fc3336ade5bd0e429ad7538
- languageName: node
- linkType: hard
-
"node-forge@npm:^1":
version: 1.3.1
resolution: "node-forge@npm:1.3.1"
@@ -28726,9 +28803,9 @@ __metadata:
linkType: hard
"npm-to-yarn@npm:^3.0.0":
- version: 3.0.1
- resolution: "npm-to-yarn@npm:3.0.1"
- checksum: 10c0/f0a72bfc0ed2ad50c5995511ff6442520d259aee5a58e1b0914572a33d29c07090a684a1d8ce95d2399dfe9bc51e649e8d029b0118ecf941f40212053693caca
+ version: 3.0.0
+ resolution: "npm-to-yarn@npm:3.0.0"
+ checksum: 10c0/2e0bba85dc4ac83d588da6a3636e4043beecb6360be76c110a982432ddc6c63fe181524aa767c97da4799fe80a104e0502901a177fb3a82f233722ded35a3a27
languageName: node
linkType: hard
@@ -28893,7 +28970,7 @@ __metadata:
languageName: node
linkType: hard
-"object.values@npm:^1.1.0, object.values@npm:^1.1.6, object.values@npm:^1.2.0, object.values@npm:^1.2.1":
+"object.values@npm:^1.1.0, object.values@npm:^1.1.6, object.values@npm:^1.2.0":
version: 1.2.1
resolution: "object.values@npm:1.2.1"
dependencies:
@@ -28992,14 +29069,14 @@ __metadata:
languageName: node
linkType: hard
-"oniguruma-to-es@npm:0.10.0":
- version: 0.10.0
- resolution: "oniguruma-to-es@npm:0.10.0"
+"oniguruma-to-es@npm:0.8.1":
+ version: 0.8.1
+ resolution: "oniguruma-to-es@npm:0.8.1"
dependencies:
emoji-regex-xs: "npm:^1.0.0"
- regex: "npm:^5.1.1"
- regex-recursion: "npm:^5.1.1"
- checksum: 10c0/d54c3975515d655186e51973bbbfa41c3191eedaca2fdb909c10d1ce463c4bbbfd075705f58552a724615e3e0d301de05123cb5cad8eac1255c36e75b8562fd5
+ regex: "npm:^5.0.2"
+ regex-recursion: "npm:^5.0.0"
+ checksum: 10c0/994373a52a424c6ecb81960ee46efdd03c5fbf3d0dd692ec7f164cc29e3a57cebd3ea069b4c1499f1b26cc36b5ef28b42012cedccd3c300f52c4a7acb5c15cbf
languageName: node
linkType: hard
@@ -29776,8 +29853,8 @@ __metadata:
linkType: hard
"pino@npm:^9.0.0":
- version: 9.6.0
- resolution: "pino@npm:9.6.0"
+ version: 9.5.0
+ resolution: "pino@npm:9.5.0"
dependencies:
atomic-sleep: "npm:^1.0.0"
fast-redact: "npm:^3.1.1"
@@ -29792,7 +29869,7 @@ __metadata:
thread-stream: "npm:^3.0.0"
bin:
pino: bin.js
- checksum: 10c0/bcd1e9d9b301bea13b95689ca9ad7105ae9451928fb6c0b67b3e58c5fe37cea1d40665f3d6641e3da00be0bbc17b89031e67abbc8ea6aac6164f399309fd78e7
+ checksum: 10c0/b06590c5f4da43df59905af1aac344432b43154c4c1569ebea168e7ae7fd0a4181ccabb769a6568cf3e781e1d1b9df13d65b3603e25ebb05539bcb02ea04215e
languageName: node
linkType: hard
@@ -31032,9 +31109,9 @@ __metadata:
linkType: hard
"process-warning@npm:^4.0.0":
- version: 4.0.1
- resolution: "process-warning@npm:4.0.1"
- checksum: 10c0/577a268b9fd5c3d9f6dbb4348220099391d830905642845d591e7ee8b1e45043d98b7b9826a3c1379bdd1686cdfe0f6cf349cb812affc5853b662e6a9896579e
+ version: 4.0.0
+ resolution: "process-warning@npm:4.0.0"
+ checksum: 10c0/5312a72b69d37a1b82ad03f3dfa0090dab3804a8fd995d06c28e3c002852bd82f5584217d9f4a3f197892bb2afc22d57e2c662c7e906b5abb48c0380c7b0880d
languageName: node
linkType: hard
@@ -31149,7 +31226,7 @@ __metadata:
languageName: node
linkType: hard
-"protobufjs@npm:^7.2.5, protobufjs@npm:^7.3.0, protobufjs@npm:^7.3.2":
+"protobufjs@npm:^7.2.5, protobufjs@npm:^7.3.0":
version: 7.4.0
resolution: "protobufjs@npm:7.4.0"
dependencies:
@@ -31871,6 +31948,22 @@ __metadata:
languageName: node
linkType: hard
+"reflect.getprototypeof@npm:^1.0.8":
+ version: 1.0.9
+ resolution: "reflect.getprototypeof@npm:1.0.9"
+ dependencies:
+ call-bind: "npm:^1.0.8"
+ define-properties: "npm:^1.2.1"
+ dunder-proto: "npm:^1.0.1"
+ es-abstract: "npm:^1.23.6"
+ es-errors: "npm:^1.3.0"
+ get-intrinsic: "npm:^1.2.6"
+ gopd: "npm:^1.2.0"
+ which-builtin-type: "npm:^1.2.1"
+ checksum: 10c0/db42118a8699fa8b5856e6aa06eac32498a7bbc3c22832729049501733d060662bf16f204c546db87df8bb78b36491ecd6b3b0478c0a27be6c8302cc0770a42e
+ languageName: node
+ linkType: hard
+
"regenerate-unicode-properties@npm:^10.2.0":
version: 10.2.0
resolution: "regenerate-unicode-properties@npm:10.2.0"
@@ -31917,13 +32010,12 @@ __metadata:
languageName: node
linkType: hard
-"regex-recursion@npm:^5.1.1":
- version: 5.1.1
- resolution: "regex-recursion@npm:5.1.1"
+"regex-recursion@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "regex-recursion@npm:5.0.0"
dependencies:
- regex: "npm:^5.1.1"
regex-utilities: "npm:^2.3.0"
- checksum: 10c0/c61c284bc41f2b271dfa0549d657a5a26397108b860d7cdb15b43080196681c0092bf8cf920a8836213e239d1195c4ccf6db9be9298bce4e68c9daab1febeab9
+ checksum: 10c0/ceb46f92b0c986db7d26359a4d3ce2aecc7ec6735ebfd8a48e99e5f4d075d1c2b453c6e5c269d00cd8a1289a930e52061e6c03152fd1f2ebb5c7ca82e1d0d726
languageName: node
linkType: hard
@@ -31934,7 +32026,7 @@ __metadata:
languageName: node
linkType: hard
-"regex@npm:^5.1.1":
+"regex@npm:^5.0.2":
version: 5.1.1
resolution: "regex@npm:5.1.1"
dependencies:
@@ -31951,16 +32043,14 @@ __metadata:
linkType: hard
"regexp.prototype.flags@npm:^1.5.1, regexp.prototype.flags@npm:^1.5.3":
- version: 1.5.4
- resolution: "regexp.prototype.flags@npm:1.5.4"
+ version: 1.5.3
+ resolution: "regexp.prototype.flags@npm:1.5.3"
dependencies:
- call-bind: "npm:^1.0.8"
+ call-bind: "npm:^1.0.7"
define-properties: "npm:^1.2.1"
es-errors: "npm:^1.3.0"
- get-proto: "npm:^1.0.1"
- gopd: "npm:^1.2.0"
set-function-name: "npm:^2.0.2"
- checksum: 10c0/83b88e6115b4af1c537f8dabf5c3744032cb875d63bc05c288b1b8c0ef37cbe55353f95d8ca817e8843806e3e150b118bc624e4279b24b4776b4198232735a77
+ checksum: 10c0/e1a7c7dc42cc91abf73e47a269c4b3a8f225321b7f617baa25821f6a123a91d23a73b5152f21872c566e699207e1135d075d2251cd3e84cc96d82a910adf6020
languageName: node
linkType: hard
@@ -32424,9 +32514,9 @@ __metadata:
linkType: hard
"response-iterator@npm:^0.2.6":
- version: 0.2.13
- resolution: "response-iterator@npm:0.2.13"
- checksum: 10c0/72e580df2d9d5f8609d06140dd24a3612ca3f6eec820b5b309a4d1b08a9a5475bda9132aa20794442d8776f03d30130850491997ee08ba41e865cd3d3edad087
+ version: 0.2.6
+ resolution: "response-iterator@npm:0.2.6"
+ checksum: 10c0/60e6b552cd610643269d5d916d270cc8a4bea978cbe4779d6ef8083ac6b89006795508034e4c4ebe204eded75ac32bf243589ba82c1184591dde0674f6db785e
languageName: node
linkType: hard
@@ -32684,28 +32774,28 @@ __metadata:
linkType: hard
"rollup@npm:^4.23.0":
- version: 4.30.1
- resolution: "rollup@npm:4.30.1"
- dependencies:
- "@rollup/rollup-android-arm-eabi": "npm:4.30.1"
- "@rollup/rollup-android-arm64": "npm:4.30.1"
- "@rollup/rollup-darwin-arm64": "npm:4.30.1"
- "@rollup/rollup-darwin-x64": "npm:4.30.1"
- "@rollup/rollup-freebsd-arm64": "npm:4.30.1"
- "@rollup/rollup-freebsd-x64": "npm:4.30.1"
- "@rollup/rollup-linux-arm-gnueabihf": "npm:4.30.1"
- "@rollup/rollup-linux-arm-musleabihf": "npm:4.30.1"
- "@rollup/rollup-linux-arm64-gnu": "npm:4.30.1"
- "@rollup/rollup-linux-arm64-musl": "npm:4.30.1"
- "@rollup/rollup-linux-loongarch64-gnu": "npm:4.30.1"
- "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.30.1"
- "@rollup/rollup-linux-riscv64-gnu": "npm:4.30.1"
- "@rollup/rollup-linux-s390x-gnu": "npm:4.30.1"
- "@rollup/rollup-linux-x64-gnu": "npm:4.30.1"
- "@rollup/rollup-linux-x64-musl": "npm:4.30.1"
- "@rollup/rollup-win32-arm64-msvc": "npm:4.30.1"
- "@rollup/rollup-win32-ia32-msvc": "npm:4.30.1"
- "@rollup/rollup-win32-x64-msvc": "npm:4.30.1"
+ version: 4.29.1
+ resolution: "rollup@npm:4.29.1"
+ dependencies:
+ "@rollup/rollup-android-arm-eabi": "npm:4.29.1"
+ "@rollup/rollup-android-arm64": "npm:4.29.1"
+ "@rollup/rollup-darwin-arm64": "npm:4.29.1"
+ "@rollup/rollup-darwin-x64": "npm:4.29.1"
+ "@rollup/rollup-freebsd-arm64": "npm:4.29.1"
+ "@rollup/rollup-freebsd-x64": "npm:4.29.1"
+ "@rollup/rollup-linux-arm-gnueabihf": "npm:4.29.1"
+ "@rollup/rollup-linux-arm-musleabihf": "npm:4.29.1"
+ "@rollup/rollup-linux-arm64-gnu": "npm:4.29.1"
+ "@rollup/rollup-linux-arm64-musl": "npm:4.29.1"
+ "@rollup/rollup-linux-loongarch64-gnu": "npm:4.29.1"
+ "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.29.1"
+ "@rollup/rollup-linux-riscv64-gnu": "npm:4.29.1"
+ "@rollup/rollup-linux-s390x-gnu": "npm:4.29.1"
+ "@rollup/rollup-linux-x64-gnu": "npm:4.29.1"
+ "@rollup/rollup-linux-x64-musl": "npm:4.29.1"
+ "@rollup/rollup-win32-arm64-msvc": "npm:4.29.1"
+ "@rollup/rollup-win32-ia32-msvc": "npm:4.29.1"
+ "@rollup/rollup-win32-x64-msvc": "npm:4.29.1"
"@types/estree": "npm:1.0.6"
fsevents: "npm:~2.3.2"
dependenciesMeta:
@@ -32751,7 +32841,7 @@ __metadata:
optional: true
bin:
rollup: dist/bin/rollup
- checksum: 10c0/a318c57e2ca9741e1503bcd75483949c6e83edd72234a468010a3098a34248f523e44f7ad4fde90dc5c2da56abc1b78ac42a9329e1dbd708682728adbd8df7cc
+ checksum: 10c0/fcd0321df78fdc74b36858e92c4b73ebf5aa8f0b9cf7c446f008e0dc3c5c4ed855d662dc44e5a09c7794bbe91017b4dd7be88b619c239f0494f9f0fbfa67c557
languageName: node
linkType: hard
@@ -32848,11 +32938,11 @@ __metadata:
linkType: hard
"safe-regex2@npm:^4.0.0":
- version: 4.0.1
- resolution: "safe-regex2@npm:4.0.1"
+ version: 4.0.0
+ resolution: "safe-regex2@npm:4.0.0"
dependencies:
ret: "npm:~0.5.0"
- checksum: 10c0/fe6edc2c0fa9847b572d0f0fc2b1f487c36ae603fec65445ae38cfb40483afa85107d3b6ffe63cbe029fd06e6ccb5c5730415c1595a1011fa00bafa2b866a8f0
+ checksum: 10c0/faebf910036228868e83b4a33a84405b04e8e89f01283efe847e17e96b6b4658cc65c6560cef11de3bd5aef3b28b58dffac48744df67ca2ae46e073f668cb71d
languageName: node
linkType: hard
@@ -33004,9 +33094,9 @@ __metadata:
linkType: hard
"secure-json-parse@npm:^3.0.1":
- version: 3.0.2
- resolution: "secure-json-parse@npm:3.0.2"
- checksum: 10c0/4c9c005e7fdd8528df35fcdec41dc4e8e15820ce52de19f8102da808f9400a9ed8c0a28971e3efe24b001ee1e60296af553f12bbaab81a152f702dd00af2092d
+ version: 3.0.1
+ resolution: "secure-json-parse@npm:3.0.1"
+ checksum: 10c0/4e4555f62a570fd11a37fe7853fb0fd6661084e53ed11324c68496128f5300309c81279d890fe5145e8ec79887c58682be33e67693392c44cc835859c041dd12
languageName: node
linkType: hard
@@ -33363,18 +33453,16 @@ __metadata:
linkType: hard
"shiki@npm:^1.0.0":
- version: 1.26.1
- resolution: "shiki@npm:1.26.1"
- dependencies:
- "@shikijs/core": "npm:1.26.1"
- "@shikijs/engine-javascript": "npm:1.26.1"
- "@shikijs/engine-oniguruma": "npm:1.26.1"
- "@shikijs/langs": "npm:1.26.1"
- "@shikijs/themes": "npm:1.26.1"
- "@shikijs/types": "npm:1.26.1"
- "@shikijs/vscode-textmate": "npm:^10.0.1"
+ version: 1.24.4
+ resolution: "shiki@npm:1.24.4"
+ dependencies:
+ "@shikijs/core": "npm:1.24.4"
+ "@shikijs/engine-javascript": "npm:1.24.4"
+ "@shikijs/engine-oniguruma": "npm:1.24.4"
+ "@shikijs/types": "npm:1.24.4"
+ "@shikijs/vscode-textmate": "npm:^9.3.1"
"@types/hast": "npm:^3.0.4"
- checksum: 10c0/1a9ca4d8e1adfc8c6342ffd4760781667b7c3e7647231b12c82b8087bcf782b0c5189fb950d740f89dc38f403f3707807d10831f3ec9fcd28569297b42e292e5
+ checksum: 10c0/c3758f67ea997f7b9ce4fe32cf50178a5f26fa49fdb2c3550115764d0a55441f63bd89e659e6ba133bdaeac57bfad485412c1b19c19f3ae523c8ffd4334b0c38
languageName: node
linkType: hard
@@ -34177,7 +34265,7 @@ __metadata:
languageName: node
linkType: hard
-"string.prototype.matchall@npm:^4.0.12, string.prototype.matchall@npm:^4.0.6":
+"string.prototype.matchall@npm:^4.0.11, string.prototype.matchall@npm:^4.0.6":
version: 4.0.12
resolution: "string.prototype.matchall@npm:4.0.12"
dependencies:
@@ -34418,6 +34506,15 @@ __metadata:
languageName: node
linkType: hard
+"style-to-object@npm:^0.4.0":
+ version: 0.4.4
+ resolution: "style-to-object@npm:0.4.4"
+ dependencies:
+ inline-style-parser: "npm:0.1.1"
+ checksum: 10c0/3a733080da66952881175b17d65f92985cf94c1ca358a92cf21b114b1260d49b94a404ed79476047fb95698d64c7e366ca7443f0225939e2fb34c38bbc9c7639
+ languageName: node
+ linkType: hard
+
"style-to-object@npm:^1.0.0":
version: 1.0.8
resolution: "style-to-object@npm:1.0.8"
@@ -34631,17 +34728,6 @@ __metadata:
languageName: node
linkType: hard
-"sync-fetch@npm:0.6.0-2":
- version: 0.6.0-2
- resolution: "sync-fetch@npm:0.6.0-2"
- dependencies:
- node-fetch: "npm:^3.3.2"
- timeout-signal: "npm:^2.0.0"
- whatwg-mimetype: "npm:^4.0.0"
- checksum: 10c0/1b3e96dfe12de520d9530abb0765baa3ce5921b6fc33ff23171cf838916a58956e755eb359669fba59bfba9b0eefd7e5b6eed737db0ba03bc2cb98a93de5cdb3
- languageName: node
- linkType: hard
-
"sync-request@npm:^6.1.0":
version: 6.1.0
resolution: "sync-request@npm:6.1.0"
@@ -34689,9 +34775,9 @@ __metadata:
linkType: hard
"tailwind-merge@npm:^2.5.2":
- version: 2.6.0
- resolution: "tailwind-merge@npm:2.6.0"
- checksum: 10c0/fc8a5535524de9f4dacf1c16ab298581c7bb757d68a95faaf28942b1c555a619bba9d4c6726fe83986e44973b315410c1a5226e5354c30ba82353bd6d2288fa5
+ version: 2.5.5
+ resolution: "tailwind-merge@npm:2.5.5"
+ checksum: 10c0/32614dd2b4ddd4fab070d5ec569e6da00e2b34269b9ac2f2ff16733cef29a076c8e2210fbfc1904d7983a8fdb6b3e63d18ca117645f21b12ca7bcf8fe3507241
languageName: node
linkType: hard
@@ -34743,14 +34829,14 @@ __metadata:
linkType: hard
"tar-fs@npm:^2.0.0, tar-fs@npm:^2.1.1":
- version: 2.1.2
- resolution: "tar-fs@npm:2.1.2"
+ version: 2.1.1
+ resolution: "tar-fs@npm:2.1.1"
dependencies:
chownr: "npm:^1.1.1"
mkdirp-classic: "npm:^0.5.2"
pump: "npm:^3.0.0"
tar-stream: "npm:^2.1.4"
- checksum: 10c0/9c704bd4a53be7565caf34ed001d1428532457fe3546d8fc1233f0f0882c3d2403f8602e8046e0b0adeb31fe95336572a69fb28851a391523126b697537670fc
+ checksum: 10c0/871d26a934bfb7beeae4c4d8a09689f530b565f79bd0cf489823ff0efa3705da01278160da10bb006d1a793fa0425cf316cec029b32a9159eacbeaff4965fb6d
languageName: node
linkType: hard
@@ -35002,13 +35088,6 @@ __metadata:
languageName: node
linkType: hard
-"timeout-signal@npm:^2.0.0":
- version: 2.0.0
- resolution: "timeout-signal@npm:2.0.0"
- checksum: 10c0/dd0a41712552fd45e075664edbdb5d1715a0791e6a206f1d00f5808b954b18046f87b71a7b9216a5030ba772516212b696bbbfb3115bf81b3277b04f62aab135
- languageName: node
- linkType: hard
-
"timers-ext@npm:^0.1.5, timers-ext@npm:^0.1.7":
version: 0.1.8
resolution: "timers-ext@npm:0.1.8"
@@ -35043,9 +35122,9 @@ __metadata:
linkType: hard
"tinyexec@npm:^0.3.0":
- version: 0.3.2
- resolution: "tinyexec@npm:0.3.2"
- checksum: 10c0/3efbf791a911be0bf0821eab37a3445c2ba07acc1522b1fa84ae1e55f10425076f1290f680286345ed919549ad67527d07281f1c19d584df3b74326909eb1f90
+ version: 0.3.1
+ resolution: "tinyexec@npm:0.3.1"
+ checksum: 10c0/11e7a7c5d8b3bddf8b5cbe82a9290d70a6fad84d528421d5d18297f165723cb53d2e737d8f58dcce5ca56f2e4aa2d060f02510b1f8971784f97eb3e9aec28f09
languageName: node
linkType: hard
@@ -35249,6 +35328,15 @@ __metadata:
languageName: node
linkType: hard
+"ts-api-utils@npm:^1.3.0":
+ version: 1.4.3
+ resolution: "ts-api-utils@npm:1.4.3"
+ peerDependencies:
+ typescript: ">=4.2.0"
+ checksum: 10c0/e65dc6e7e8141140c23e1dc94984bf995d4f6801919c71d6dc27cf0cd51b100a91ffcfe5217626193e5bea9d46831e8586febdc7e172df3f1091a7384299e23a
+ languageName: node
+ linkType: hard
+
"ts-api-utils@npm:^2.0.0":
version: 2.0.0
resolution: "ts-api-utils@npm:2.0.0"
@@ -35706,12 +35794,12 @@ __metadata:
linkType: hard
"typescript@npm:^5.4.2":
- version: 5.7.3
- resolution: "typescript@npm:5.7.3"
+ version: 5.7.2
+ resolution: "typescript@npm:5.7.2"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: 10c0/b7580d716cf1824736cc6e628ab4cd8b51877408ba2be0869d2866da35ef8366dd6ae9eb9d0851470a39be17cbd61df1126f9e211d8799d764ea7431d5435afa
+ checksum: 10c0/a873118b5201b2ef332127ef5c63fb9d9c155e6fdbe211cbd9d8e65877283797cca76546bad742eea36ed7efbe3424a30376818f79c7318512064e8625d61622
languageName: node
linkType: hard
@@ -35726,12 +35814,12 @@ __metadata:
linkType: hard
"typescript@patch:typescript@npm%3A^5.4.2#optional!builtin":
- version: 5.7.3
- resolution: "typescript@patch:typescript@npm%3A5.7.3#optional!builtin::version=5.7.3&hash=5786d5"
+ version: 5.7.2
+ resolution: "typescript@patch:typescript@npm%3A5.7.2#optional!builtin::version=5.7.2&hash=5786d5"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: 10c0/6fd7e0ed3bf23a81246878c613423730c40e8bdbfec4c6e4d7bf1b847cbb39076e56ad5f50aa9d7ebd89877999abaee216002d3f2818885e41c907caaa192cc4
+ checksum: 10c0/f3b8082c9d1d1629a215245c9087df56cb784f9fb6f27b5d55577a20e68afe2a889c040aacff6d27e35be165ecf9dca66e694c42eb9a50b3b2c451b36b5675cb
languageName: node
linkType: hard
@@ -36212,16 +36300,16 @@ __metadata:
linkType: hard
"update-browserslist-db@npm:^1.1.1":
- version: 1.1.2
- resolution: "update-browserslist-db@npm:1.1.2"
+ version: 1.1.1
+ resolution: "update-browserslist-db@npm:1.1.1"
dependencies:
escalade: "npm:^3.2.0"
- picocolors: "npm:^1.1.1"
+ picocolors: "npm:^1.1.0"
peerDependencies:
browserslist: ">= 4.21.0"
bin:
update-browserslist-db: cli.js
- checksum: 10c0/9cb353998d6d7d6ba1e46b8fa3db888822dd972212da4eda609d185eb5c3557a93fd59780ceb757afd4d84240518df08542736969e6a5d6d6ce2d58e9363aac6
+ checksum: 10c0/536a2979adda2b4be81b07e311bd2f3ad5e978690987956bc5f514130ad50cac87cd22c710b686d79731e00fbee8ef43efe5fcd72baa241045209195d43dcc80
languageName: node
linkType: hard
@@ -36641,13 +36729,6 @@ __metadata:
languageName: node
linkType: hard
-"web-streams-polyfill@npm:^3.0.3":
- version: 3.3.3
- resolution: "web-streams-polyfill@npm:3.3.3"
- checksum: 10c0/64e855c47f6c8330b5436147db1c75cb7e7474d924166800e8e2aab5eb6c76aac4981a84261dd2982b3e754490900b99791c80ae1407a9fa0dcff74f82ea3a7f
- languageName: node
- linkType: hard
-
"web-vitals@npm:4.2.4":
version: 4.2.4
resolution: "web-vitals@npm:4.2.4"
@@ -36854,7 +36935,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "website@workspace:website"
dependencies:
- "@theguild/components": "npm:^7.0.0"
+ "@theguild/components": "npm:^7.6.0"
"@theguild/tailwind-config": "npm:0.6.2"
"@types/node": "npm:22.10.6"
"@types/react": "npm:19.0.7"
@@ -36920,7 +37001,7 @@ __metadata:
languageName: node
linkType: hard
-"whatwg-mimetype@npm:4.0.0, whatwg-mimetype@npm:^4.0.0":
+"whatwg-mimetype@npm:4.0.0":
version: 4.0.0
resolution: "whatwg-mimetype@npm:4.0.0"
checksum: 10c0/a773cdc8126b514d790bdae7052e8bf242970cebd84af62fb2f35a33411e78e981f6c0ab9ed1fe6ec5071b09d5340ac9178e05b52d35a9c4bcf558ba1b1551df
@@ -37698,16 +37779,7 @@ __metadata:
languageName: node
linkType: hard
-"yaml@npm:^2.3.1, yaml@npm:^2.3.2, yaml@npm:^2.3.4":
- version: 2.7.0
- resolution: "yaml@npm:2.7.0"
- bin:
- yaml: bin.mjs
- checksum: 10c0/886a7d2abbd70704b79f1d2d05fe9fb0aa63aefb86e1cb9991837dced65193d300f5554747a872b4b10ae9a12bc5d5327e4d04205f70336e863e35e89d8f4ea9
- languageName: node
- linkType: hard
-
-"yaml@npm:~2.6.1":
+"yaml@npm:^2.3.1, yaml@npm:^2.3.2, yaml@npm:^2.3.4, yaml@npm:~2.6.1":
version: 2.6.1
resolution: "yaml@npm:2.6.1"
bin: