From 48ce75012c636e62be5a409dacd8c3c93ba769e5 Mon Sep 17 00:00:00 2001 From: AlanRacciatti Date: Tue, 10 Oct 2023 11:11:11 -0300 Subject: [PATCH 1/6] feat: abstract privy and rainbowkit providers as integrations --- app/(general)/layout.tsx | 2 +- app/admin/layout.tsx | 67 + app/dashboard/layout.tsx | 3 +- app/layout.tsx | 4 +- components/layout/dashboard-header.tsx | 67 + config/networks.ts | 8 +- env.mjs | 2 + integrations/privy/provider.tsx | 25 + integrations/privy/root-provider.tsx | 31 + integrations/privy/wallet-connect.tsx | 83 + integrations/rainbow-kit/provider.tsx | 48 + integrations/rainbow-kit/root-provider.tsx | 44 + .../rainbow-kit/wallet-connect-custom.tsx | 80 + integrations/rainbow-kit/wallet-connect.tsx | 26 + lib/blockchain.ts | 287 + lib/generated/blockchain.ts | 74 +- lib/utils/shorten.ts | 4 + package.json | 3 + pnpm-lock.yaml | 6765 ++++++++++------- 19 files changed, 4961 insertions(+), 2662 deletions(-) create mode 100644 app/admin/layout.tsx create mode 100644 components/layout/dashboard-header.tsx create mode 100644 integrations/privy/provider.tsx create mode 100644 integrations/privy/root-provider.tsx create mode 100644 integrations/privy/wallet-connect.tsx create mode 100644 integrations/rainbow-kit/provider.tsx create mode 100644 integrations/rainbow-kit/root-provider.tsx create mode 100644 integrations/rainbow-kit/wallet-connect-custom.tsx create mode 100644 integrations/rainbow-kit/wallet-connect.tsx create mode 100644 lib/blockchain.ts create mode 100644 lib/utils/shorten.ts diff --git a/app/(general)/layout.tsx b/app/(general)/layout.tsx index 1dc48288..06879328 100644 --- a/app/(general)/layout.tsx +++ b/app/(general)/layout.tsx @@ -1,9 +1,9 @@ import { ReactNode } from "react" import { NetworkStatus } from "@/components/blockchain/network-status" -import { WalletConnect } from "@/components/blockchain/wallet-connect" import { Footer } from "@/components/layout/footer" import { SiteHeader } from "@/components/layout/site-header" +import { WalletConnect } from '@/integrations/rainbow-kit/wallet-connect' interface RootLayoutProps { children: ReactNode diff --git a/app/admin/layout.tsx b/app/admin/layout.tsx new file mode 100644 index 00000000..3793d49c --- /dev/null +++ b/app/admin/layout.tsx @@ -0,0 +1,67 @@ +'use client' + +import classNames from 'clsx' +import Image from 'next/image' + +import { DashboardFooter } from '@/components/layout/dashboard-footer' +import { DashboardHeader } from '@/components/layout/dashboard-header' +import { MenuAdminSidebar } from '@/components/layout/menu-admin-sidebar' +import { UserDropdown } from '@/components/layout/user-dropdown' +import { BranchColorMode } from '@/components/shared/branch-color-mode' +import { LinkComponent } from '@/components/shared/link-component' +import { ResponsiveMobileAndDesktop } from '@/components/shared/responsive-mobile-and-desktop' +import { siteConfig } from '@/config/site' +import { WalletConnect } from '@/integrations/rainbow-kit/wallet-connect' + +export default function AdminLayout({ children }: any) { + const classes = classNames('AdminLayout', 'bg-gradient-dark h-screen lg:grid lg:grid-cols-12') + return ( + <> +
+
+ + <> +
+ + + Logo + Logo + + +
+ +
+
+ + <> +
+ + + Logo + Logo + +

{siteConfig.name}

+
+
+
+ +
+
+ + + Dashboard + +
+
+ + +
+
+
+ +
{children}
+
+
+ + ) +} diff --git a/app/dashboard/layout.tsx b/app/dashboard/layout.tsx index d96626ff..21579218 100644 --- a/app/dashboard/layout.tsx +++ b/app/dashboard/layout.tsx @@ -5,7 +5,6 @@ import { menuAdmin } from "@/config/menu-admin" import { menuDashboard } from "@/config/menu-dashboard" import { siteConfig } from "@/config/site" import { ScrollArea } from "@/components/ui/scroll-area" -import { WalletConnect } from "@/components/blockchain/wallet-connect" import { SidebarNav } from "@/components/layout/sidebar-nav" import { SiteHeader } from "@/components/layout/site-header" @@ -13,6 +12,8 @@ interface DashboardLayoutProps { children: React.ReactNode } +import { WalletConnect } from '@/integrations/rainbow-kit/wallet-connect' + export default function DashboardLayout({ children }: DashboardLayoutProps) { return (
diff --git a/app/layout.tsx b/app/layout.tsx index 04d78263..b4ade089 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,12 +3,12 @@ import "@/styles/globals.css" import { ReactNode } from "react" import { env } from "@/env.mjs" +import RootProvider from '@/integrations/rainbow-kit/root-provider' +import { cn } from '@/lib/utils' import { siteConfig } from "@/config/site" import { fontSans } from "@/lib/fonts" -import { cn } from "@/lib/utils" import { Toaster } from "@/components/ui/toaster" -import RootProvider from "@/components/providers/root-provider" const url = env.NEXT_PUBLIC_SITE_URL || "http://localhost:3000" diff --git a/components/layout/dashboard-header.tsx b/components/layout/dashboard-header.tsx new file mode 100644 index 00000000..67eee7e6 --- /dev/null +++ b/components/layout/dashboard-header.tsx @@ -0,0 +1,67 @@ +import { WalletAddress } from '@turbo-eth/core-wagmi' +import classNames from 'clsx' +import { CopyToClipboard } from 'react-copy-to-clipboard' +import { FaCopy } from 'react-icons/fa' +import { useAccount } from 'wagmi' + +import { BranchIsWalletConnected } from '@/components/shared/branch-is-wallet-connected' +import { WalletConnect } from '@/integrations/rainbow-kit/wallet-connect' +import { BranchIsAuthenticated } from '@/integrations/siwe/components/branch-is-authenticated' +import { ButtonSIWELogin } from '@/integrations/siwe/components/button-siwe-login' +import { ButtonSIWELogout } from '@/integrations/siwe/components/button-siwe-logout' +import { useToast } from '@/lib/hooks/use-toast' + +import { ThemeToggle } from '../shared/theme-toggle' + +interface Props { + className?: string +} + +export function DashboardHeader(props: Props) { + const classes = classNames(props.className, 'Header', 'px-6 lg:px-10 py-3 flex items-center w-full') + const { address } = useAccount() + const { toast, dismiss } = useToast() + + const handleToast = () => { + toast({ + title: 'Addess Copied', + description: 'Your address has been copied to your clipboard.', + }) + + setTimeout(() => { + dismiss() + }, 4200) + } + + return ( +
+
+ + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+ ) +} diff --git a/config/networks.ts b/config/networks.ts index 2c1fa8a1..a5fe3e2d 100644 --- a/config/networks.ts +++ b/config/networks.ts @@ -121,7 +121,7 @@ if (PROVIDERS.length === 0 || env.NEXT_PUBLIC_USE_PUBLIC_PROVIDER === "true") { PROVIDERS.push(publicProvider()) } -export const { chains, publicClient, webSocketPublicClient } = configureChains( - CHAINS, - PROVIDERS -) +// @ts-ignore +// TODO: The sepolia chain is throwing type errors for some reason. +export const configureChainsConfig = configureChains(UNIQUE_CHAINS, [...PROVIDERS]) +export const { chains, publicClient, webSocketPublicClient } = configureChainsConfig diff --git a/env.mjs b/env.mjs index 775e646d..9bd3c855 100644 --- a/env.mjs +++ b/env.mjs @@ -31,6 +31,7 @@ export const env = createEnv({ NEXT_PUBLIC_INFURA_API_KEY: z.string().min(1).optional(), NEXT_PUBLIC_LIVEPEER_API_KEY: z.string().min(1).optional(), NEXT_PUBLIC_SITE_URL: z.string().url().optional(), + NEXT_PUBLIC_PRIVY_APP_ID: z.string().optional(), }, runtimeEnv: { NEXTAUTH_SECRET: process.env.NEXTAUTH_SECRET, @@ -52,5 +53,6 @@ export const env = createEnv({ NEXT_PUBLIC_INFURA_API_KEY: process.env.NEXT_PUBLIC_INFURA_API_KEY, NEXT_PUBLIC_LIVEPEER_API_KEY: process.env.NEXT_PUBLIC_LIVEPEER_API_KEY, NEXT_PUBLIC_SITE_URL: process.env.NEXT_PUBLIC_SITE_URL, + NEXT_PUBLIC_PRIVY_APP_ID: process.env.NEXT_PUBLIC_PRIVY_APP_ID, }, }) diff --git a/integrations/privy/provider.tsx b/integrations/privy/provider.tsx new file mode 100644 index 00000000..4b96a928 --- /dev/null +++ b/integrations/privy/provider.tsx @@ -0,0 +1,25 @@ +'use client' + +import { ReactNode } from 'react' + +import { PrivyProvider } from '@privy-io/react-auth' +import { PrivyWagmiConnector } from '@privy-io/wagmi-connector' + +import { configureChainsConfig } from '@/config/networks' +import { env } from '@/env.mjs' + +export function Privy({ children }: { children: ReactNode }) { + return ( + + {children} + + ) +} diff --git a/integrations/privy/root-provider.tsx b/integrations/privy/root-provider.tsx new file mode 100644 index 00000000..4f2fc60b --- /dev/null +++ b/integrations/privy/root-provider.tsx @@ -0,0 +1,31 @@ +'use client' + +import { ReactNode } from 'react' + +import { QueryClient, QueryClientProvider } from '@tanstack/react-query' +import { ThemeProvider } from 'next-themes' +import { ModalProvider } from 'react-modal-hook' + +import HandleWalletEvents from '@/components/blockchain/handle-wallet-events' +import { Privy } from '@/integrations/privy/provider' +import { useIsMounted } from '@/lib/hooks/use-is-mounted' + +const queryClient = new QueryClient() +interface RootProviderProps { + children: ReactNode +} + +export default function RootProvider({ children }: RootProviderProps) { + const isMounted = useIsMounted() + return isMounted ? ( + + + + + {children} + + + + + ) : null +} diff --git a/integrations/privy/wallet-connect.tsx b/integrations/privy/wallet-connect.tsx new file mode 100644 index 00000000..02a8d841 --- /dev/null +++ b/integrations/privy/wallet-connect.tsx @@ -0,0 +1,83 @@ +'use client' + +import { HTMLAttributes } from 'react' + +import { usePrivy, useWallets } from '@privy-io/react-auth' +import { usePrivyWagmi } from '@privy-io/wagmi-connector' + +import { Button } from '@/components/ui/button' +import { Dialog, DialogContent, DialogFooter, DialogTrigger } from '@/components/ui/dialog' +import { shorten } from '@/lib/utils/shorten' + +interface WalletConnectPrivyProps extends HTMLAttributes { + classNameConnect?: string + classNameConnected?: string + classNameWrongNetwork?: string + labelConnect?: string + labelManage?: string +} + +export const WalletConnect = ({ + className, + classNameConnected, + classNameWrongNetwork, + labelConnect = 'Connect', + labelManage = 'Manage Wallets', + ...props +}: WalletConnectPrivyProps) => { + const { login, ready, authenticated, logout } = usePrivy() + const { wallets } = useWallets() + const { wallet: activeWallet, setActiveWallet } = usePrivyWagmi() + + if (!ready) return null + + return ( +
+ {(() => { + if (!authenticated) { + return ( + <> + + + ) + } else { + return ( + + + + + +
+

Manage wallets

+

+ Active: {activeWallet?.address} +

+ {wallets.map((wallet, index) => ( +
+
+ {shorten(wallet.address)} + {wallet.address === activeWallet?.address ? ( + Active + ) : ( + + )} +
+ ))} +
+ + + +
+
+ ) + } + })()} +
+ ) +} diff --git a/integrations/rainbow-kit/provider.tsx b/integrations/rainbow-kit/provider.tsx new file mode 100644 index 00000000..9551a23b --- /dev/null +++ b/integrations/rainbow-kit/provider.tsx @@ -0,0 +1,48 @@ +'use client' +import '@rainbow-me/rainbowkit/styles.css' +import { ReactNode } from 'react' + +import { RainbowKitProvider, darkTheme, lightTheme } from '@rainbow-me/rainbowkit' +import { connectorsForWallets } from '@rainbow-me/rainbowkit' +import { coinbaseWallet, injectedWallet, metaMaskWallet, rainbowWallet, walletConnectWallet } from '@rainbow-me/rainbowkit/wallets' +import { WagmiConfig, createConfig } from 'wagmi' + +import { chains, publicClient, webSocketPublicClient } from '@/config/networks' +import { siteConfig } from '@/config/site' +import { useColorMode } from '@/lib/state/color-mode' + +interface Props { + children: ReactNode + autoConnect?: boolean +} + +const connectors = connectorsForWallets([ + { + groupName: 'Recommended', + wallets: [ + injectedWallet({ chains }), + metaMaskWallet({ chains }), + rainbowWallet({ chains }), + coinbaseWallet({ chains, appName: siteConfig.name }), + walletConnectWallet({ chains }), + ], + }, +]) + +const wagmiConfig = createConfig({ + autoConnect: true, + connectors, + publicClient, + webSocketPublicClient, +}) + +export function RainbowKit(props: Props) { + const [colorMode] = useColorMode() + return ( + + + {props.children} + + + ) +} diff --git a/integrations/rainbow-kit/root-provider.tsx b/integrations/rainbow-kit/root-provider.tsx new file mode 100644 index 00000000..40249321 --- /dev/null +++ b/integrations/rainbow-kit/root-provider.tsx @@ -0,0 +1,44 @@ +'use client' + +import { QueryClient, QueryClientProvider } from '@tanstack/react-query' +import { ThemeProvider } from 'next-themes' +import { ModalProvider } from 'react-modal-hook' +import { Provider as RWBProvider } from 'react-wrap-balancer' +import { SWRConfig } from 'swr' + +import HandleWalletEvents from '@/components/blockchain/handle-wallet-events' +import { RainbowKit } from '@/integrations/rainbow-kit/provider' +import { useIsMounted } from '@/lib/hooks/use-is-mounted' +import fetchJson from '@/lib/utils/fetch-json' + +const queryClient = new QueryClient() +interface RootProviderProps { + children: React.ReactNode +} + +export default function RootProvider({ children }: RootProviderProps) { + const isMounted = useIsMounted() + return ( + { + console.error(err) + }, + }}> + {isMounted && ( + + + + + + {children} + + + + + + )} + + ) +} diff --git a/integrations/rainbow-kit/wallet-connect-custom.tsx b/integrations/rainbow-kit/wallet-connect-custom.tsx new file mode 100644 index 00000000..5d29bf35 --- /dev/null +++ b/integrations/rainbow-kit/wallet-connect-custom.tsx @@ -0,0 +1,80 @@ +'use client' +import * as React from 'react' + +import { ConnectButton } from '@rainbow-me/rainbowkit' + +interface WalletConnectCustomProps { + className?: string + classNameConnect?: string + classNameConnected?: string + classNameWrongNetwork?: string + labelConnect?: string + labelWrongNetwork?: string +} + +export const WalletConnectCustom = ({ + className, + classNameConnect = 'btn btn-primary w-full', + classNameConnected = 'btn btn-primary w-full', + classNameWrongNetwork = 'btn btn-red w-full', + labelConnect = 'Connect Wallet', + labelWrongNetwork = 'Wrong Network', +}: WalletConnectCustomProps) => { + return ( + + {({ account, chain, openChainModal, openConnectModal, authenticationStatus }) => { + const connected = account && chain && (!authenticationStatus || authenticationStatus === 'authenticated') + + return ( +
+ {(() => { + if (!connected) { + return ( + <> + + + ) + } + + if (chain.unsupported) { + return ( + + ) + } + + return ( +
+ +
+ ) + })()} +
+ ) + }} +
+ ) +} + +export default WalletConnectCustom diff --git a/integrations/rainbow-kit/wallet-connect.tsx b/integrations/rainbow-kit/wallet-connect.tsx new file mode 100644 index 00000000..7ff8ced4 --- /dev/null +++ b/integrations/rainbow-kit/wallet-connect.tsx @@ -0,0 +1,26 @@ +'use client' +import * as React from 'react' + +import { ConnectButton } from '@rainbow-me/rainbowkit' + +interface WalletConnectProps { + className?: string +} + +export const WalletConnect = ({ className }: WalletConnectProps) => { + return ( + + + + ) +} diff --git a/lib/blockchain.ts b/lib/blockchain.ts new file mode 100644 index 00000000..16f6711d --- /dev/null +++ b/lib/blockchain.ts @@ -0,0 +1,287 @@ +// Generated by @wagmi/cli@1.1.0 on 6/23/2023 at 9:32:32 AM +import { + UseContractEventConfig, + UseContractReadConfig, + UseContractWriteConfig, + UsePrepareContractWriteConfig, + useContractEvent, + useContractRead, + useContractWrite, + usePrepareContractWrite, +} from 'wagmi' +import { PrepareWriteContractResult, ReadContractResult, WriteContractMode } from 'wagmi/actions' + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// erc20 +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +export const erc20ABI = [ + { + type: 'event', + inputs: [ + { name: 'owner', type: 'address', indexed: true }, + { name: 'spender', type: 'address', indexed: true }, + { name: 'value', type: 'uint256', indexed: false }, + ], + name: 'Approval', + }, + { + type: 'event', + inputs: [ + { name: 'from', type: 'address', indexed: true }, + { name: 'to', type: 'address', indexed: true }, + { name: 'value', type: 'uint256', indexed: false }, + ], + name: 'Transfer', + }, + { + stateMutability: 'view', + type: 'function', + inputs: [ + { name: 'owner', type: 'address' }, + { name: 'spender', type: 'address' }, + ], + name: 'allowance', + outputs: [{ name: '', type: 'uint256' }], + }, + { + stateMutability: 'nonpayable', + type: 'function', + inputs: [ + { name: 'spender', type: 'address' }, + { name: 'amount', type: 'uint256' }, + ], + name: 'approve', + outputs: [{ name: '', type: 'bool' }], + }, + { + stateMutability: 'view', + type: 'function', + inputs: [{ name: 'account', type: 'address' }], + name: 'balanceOf', + outputs: [{ name: '', type: 'uint256' }], + }, + { stateMutability: 'view', type: 'function', inputs: [], name: 'decimals', outputs: [{ name: '', type: 'uint8' }] }, + { stateMutability: 'view', type: 'function', inputs: [], name: 'name', outputs: [{ name: '', type: 'string' }] }, + { stateMutability: 'view', type: 'function', inputs: [], name: 'symbol', outputs: [{ name: '', type: 'string' }] }, + { stateMutability: 'view', type: 'function', inputs: [], name: 'totalSupply', outputs: [{ name: '', type: 'uint256' }] }, + { + stateMutability: 'nonpayable', + type: 'function', + inputs: [ + { name: 'recipient', type: 'address' }, + { name: 'amount', type: 'uint256' }, + ], + name: 'transfer', + outputs: [{ name: '', type: 'bool' }], + }, + { + stateMutability: 'nonpayable', + type: 'function', + inputs: [ + { name: 'sender', type: 'address' }, + { name: 'recipient', type: 'address' }, + { name: 'amount', type: 'uint256' }, + ], + name: 'transferFrom', + outputs: [{ name: '', type: 'bool' }], + }, +] as const + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// React +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * Wraps __{@link useContractRead}__ with `abi` set to __{@link erc20ABI}__. + */ +export function useErc20Read>( + config: Omit, 'abi'> = {} as any +) { + return useContractRead({ abi: erc20ABI, ...config } as UseContractReadConfig) +} + +/** + * Wraps __{@link useContractRead}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"allowance"`. + */ +export function useErc20Allowance>( + config: Omit, 'abi' | 'functionName'> = {} as any +) { + return useContractRead({ abi: erc20ABI, functionName: 'allowance', ...config } as UseContractReadConfig< + typeof erc20ABI, + TFunctionName, + TSelectData + >) +} + +/** + * Wraps __{@link useContractRead}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"balanceOf"`. + */ +export function useErc20BalanceOf>( + config: Omit, 'abi' | 'functionName'> = {} as any +) { + return useContractRead({ abi: erc20ABI, functionName: 'balanceOf', ...config } as UseContractReadConfig< + typeof erc20ABI, + TFunctionName, + TSelectData + >) +} + +/** + * Wraps __{@link useContractRead}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"decimals"`. + */ +export function useErc20Decimals>( + config: Omit, 'abi' | 'functionName'> = {} as any +) { + return useContractRead({ abi: erc20ABI, functionName: 'decimals', ...config } as UseContractReadConfig) +} + +/** + * Wraps __{@link useContractRead}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"name"`. + */ +export function useErc20Name>( + config: Omit, 'abi' | 'functionName'> = {} as any +) { + return useContractRead({ abi: erc20ABI, functionName: 'name', ...config } as UseContractReadConfig) +} + +/** + * Wraps __{@link useContractRead}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"symbol"`. + */ +export function useErc20Symbol>( + config: Omit, 'abi' | 'functionName'> = {} as any +) { + return useContractRead({ abi: erc20ABI, functionName: 'symbol', ...config } as UseContractReadConfig) +} + +/** + * Wraps __{@link useContractRead}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"totalSupply"`. + */ +export function useErc20TotalSupply>( + config: Omit, 'abi' | 'functionName'> = {} as any +) { + return useContractRead({ abi: erc20ABI, functionName: 'totalSupply', ...config } as UseContractReadConfig< + typeof erc20ABI, + TFunctionName, + TSelectData + >) +} + +/** + * Wraps __{@link useContractWrite}__ with `abi` set to __{@link erc20ABI}__. + */ +export function useErc20Write( + config: TMode extends 'prepared' + ? UseContractWriteConfig['request']['abi'], TFunctionName, TMode> + : UseContractWriteConfig & { + abi?: never + } = {} as any +) { + return useContractWrite({ abi: erc20ABI, ...config } as any) +} + +/** + * Wraps __{@link useContractWrite}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"approve"`. + */ +export function useErc20Approve( + config: TMode extends 'prepared' + ? UseContractWriteConfig['request']['abi'], 'approve', TMode> & { + functionName?: 'approve' + } + : UseContractWriteConfig & { + abi?: never + functionName?: 'approve' + } = {} as any +) { + return useContractWrite({ abi: erc20ABI, functionName: 'approve', ...config } as any) +} + +/** + * Wraps __{@link useContractWrite}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"transfer"`. + */ +export function useErc20Transfer( + config: TMode extends 'prepared' + ? UseContractWriteConfig['request']['abi'], 'transfer', TMode> & { + functionName?: 'transfer' + } + : UseContractWriteConfig & { + abi?: never + functionName?: 'transfer' + } = {} as any +) { + return useContractWrite({ abi: erc20ABI, functionName: 'transfer', ...config } as any) +} + +/** + * Wraps __{@link useContractWrite}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"transferFrom"`. + */ +export function useErc20TransferFrom( + config: TMode extends 'prepared' + ? UseContractWriteConfig['request']['abi'], 'transferFrom', TMode> & { + functionName?: 'transferFrom' + } + : UseContractWriteConfig & { + abi?: never + functionName?: 'transferFrom' + } = {} as any +) { + return useContractWrite({ abi: erc20ABI, functionName: 'transferFrom', ...config } as any) +} + +/** + * Wraps __{@link usePrepareContractWrite}__ with `abi` set to __{@link erc20ABI}__. + */ +export function usePrepareErc20Write( + config: Omit, 'abi'> = {} as any +) { + return usePrepareContractWrite({ abi: erc20ABI, ...config } as UsePrepareContractWriteConfig) +} + +/** + * Wraps __{@link usePrepareContractWrite}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"approve"`. + */ +export function usePrepareErc20Approve(config: Omit, 'abi' | 'functionName'> = {} as any) { + return usePrepareContractWrite({ abi: erc20ABI, functionName: 'approve', ...config } as UsePrepareContractWriteConfig) +} + +/** + * Wraps __{@link usePrepareContractWrite}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"transfer"`. + */ +export function usePrepareErc20Transfer( + config: Omit, 'abi' | 'functionName'> = {} as any +) { + return usePrepareContractWrite({ abi: erc20ABI, functionName: 'transfer', ...config } as UsePrepareContractWriteConfig) +} + +/** + * Wraps __{@link usePrepareContractWrite}__ with `abi` set to __{@link erc20ABI}__ and `functionName` set to `"transferFrom"`. + */ +export function usePrepareErc20TransferFrom( + config: Omit, 'abi' | 'functionName'> = {} as any +) { + return usePrepareContractWrite({ abi: erc20ABI, functionName: 'transferFrom', ...config } as UsePrepareContractWriteConfig< + typeof erc20ABI, + 'transferFrom' + >) +} + +/** + * Wraps __{@link useContractEvent}__ with `abi` set to __{@link erc20ABI}__. + */ +export function useErc20Event(config: Omit, 'abi'> = {} as any) { + return useContractEvent({ abi: erc20ABI, ...config } as UseContractEventConfig) +} + +/** + * Wraps __{@link useContractEvent}__ with `abi` set to __{@link erc20ABI}__ and `eventName` set to `"Approval"`. + */ +export function useErc20ApprovalEvent(config: Omit, 'abi' | 'eventName'> = {} as any) { + return useContractEvent({ abi: erc20ABI, eventName: 'Approval', ...config } as UseContractEventConfig) +} + +/** + * Wraps __{@link useContractEvent}__ with `abi` set to __{@link erc20ABI}__ and `eventName` set to `"Transfer"`. + */ +export function useErc20TransferEvent(config: Omit, 'abi' | 'eventName'> = {} as any) { + return useContractEvent({ abi: erc20ABI, eventName: 'Transfer', ...config } as UseContractEventConfig) +} diff --git a/lib/generated/blockchain.ts b/lib/generated/blockchain.ts index 65219fec..82e1af56 100644 --- a/lib/generated/blockchain.ts +++ b/lib/generated/blockchain.ts @@ -1,4 +1,4 @@ -// Generated by @wagmi/cli@1.1.0 on 9/11/2023 at 12:19:34 PM +// Generated by @wagmi/cli@1.1.0 on 10/10/2023 at 10:31:26 AM import { useContractEvent, UseContractEventConfig, @@ -262,13 +262,13 @@ export function useErc20Write< >( config: TMode extends "prepared" ? UseContractWriteConfig< - PrepareWriteContractResult["request"]["abi"], - TFunctionName, - TMode - > + PrepareWriteContractResult["request"]["abi"], + TFunctionName, + TMode + > : UseContractWriteConfig & { - abi?: never - } = {} as any + abi?: never + } = {} as any ) { return useContractWrite({ abi: erc20ABI, @@ -282,17 +282,17 @@ export function useErc20Write< export function useErc20Approve( config: TMode extends "prepared" ? UseContractWriteConfig< - PrepareWriteContractResult< - typeof erc20ABI, - "approve" - >["request"]["abi"], - "approve", - TMode - > & { functionName?: "approve" } + PrepareWriteContractResult< + typeof erc20ABI, + "approve" + >["request"]["abi"], + "approve", + TMode + > & { functionName?: "approve" } : UseContractWriteConfig & { - abi?: never - functionName?: "approve" - } = {} as any + abi?: never + functionName?: "approve" + } = {} as any ) { return useContractWrite({ abi: erc20ABI, @@ -307,17 +307,17 @@ export function useErc20Approve( export function useErc20Transfer( config: TMode extends "prepared" ? UseContractWriteConfig< - PrepareWriteContractResult< - typeof erc20ABI, - "transfer" - >["request"]["abi"], - "transfer", - TMode - > & { functionName?: "transfer" } + PrepareWriteContractResult< + typeof erc20ABI, + "transfer" + >["request"]["abi"], + "transfer", + TMode + > & { functionName?: "transfer" } : UseContractWriteConfig & { - abi?: never - functionName?: "transfer" - } = {} as any + abi?: never + functionName?: "transfer" + } = {} as any ) { return useContractWrite({ abi: erc20ABI, @@ -334,17 +334,17 @@ export function useErc20TransferFrom< >( config: TMode extends "prepared" ? UseContractWriteConfig< - PrepareWriteContractResult< - typeof erc20ABI, - "transferFrom" - >["request"]["abi"], - "transferFrom", - TMode - > & { functionName?: "transferFrom" } + PrepareWriteContractResult< + typeof erc20ABI, + "transferFrom" + >["request"]["abi"], + "transferFrom", + TMode + > & { functionName?: "transferFrom" } : UseContractWriteConfig & { - abi?: never - functionName?: "transferFrom" - } = {} as any + abi?: never + functionName?: "transferFrom" + } = {} as any ) { return useContractWrite({ abi: erc20ABI, diff --git a/lib/utils/shorten.ts b/lib/utils/shorten.ts new file mode 100644 index 00000000..2739df36 --- /dev/null +++ b/lib/utils/shorten.ts @@ -0,0 +1,4 @@ +export const shorten = (address: string | undefined) => { + if (!address) return '' + return `${address.substring(0, 6)}...${address.substring(address.length - 4, address.length)}` +} diff --git a/package.json b/package.json index b624c3b8..97c5d388 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,9 @@ "@prisma/client": "^4.8.1", "@pushprotocol/restapi": "^1.3.9", "@pushprotocol/uiweb": "1.0.1", + "@privy-io/react-auth": "^1.43.2", + "@privy-io/wagmi-connector": "^0.1.4", + "@radix-ui/react-accessible-icon": "^1.0.1", "@radix-ui/react-accordion": "^1.1.0", "@radix-ui/react-alert-dialog": "^1.0.2", "@radix-ui/react-avatar": "^1.0.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2c10e396..a1b295db 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,22 +1,18 @@ lockfileVersion: '6.0' -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - dependencies: '@bgd-labs/aave-address-book': specifier: ^1.30.0 version: 1.30.0 '@connext/sdk': specifier: 2.0.4-alpha.2 - version: 2.0.4-alpha.2(sinon@15.2.0)(ts-node@10.9.1)(typescript@5.0.4) + version: 2.0.4-alpha.2(sinon@16.1.0)(ts-node@10.9.1)(typescript@5.0.4) '@gelatonetwork/automate-sdk': specifier: ^2.14.0 version: 2.14.0 '@graphql-typed-document-node/core': specifier: ^3.2.0 - version: 3.2.0(graphql@16.8.0) + version: 3.2.0(graphql@16.8.1) '@hookform/resolvers': specifier: ^3.1.1 version: 3.1.1(react-hook-form@7.43.9) @@ -31,19 +27,28 @@ dependencies: version: 2.1.161(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2)(@ethersproject/wallet@5.7.0)(react@18.2.0) '@livepeer/react': specifier: ^2.6.0 - version: 2.6.0(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0) + version: 2.6.0(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0) '@moralisweb3/common-evm-utils': specifier: ^2.22.4 version: 2.22.4 '@prisma/client': specifier: ^4.8.1 version: 4.11.0(prisma@4.11.0) + '@privy-io/react-auth': + specifier: ^1.43.2 + version: 1.43.2(@babel/core@7.18.5)(@types/react@18.0.26)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + '@privy-io/wagmi-connector': + specifier: ^0.1.4 + version: 0.1.4(@privy-io/react-auth@1.43.2)(react-dom@18.2.0)(react@18.2.0)(viem@1.0.0)(wagmi@1.3.10) '@pushprotocol/restapi': specifier: ^1.3.9 version: 1.3.9(ethers@5.7.2) '@pushprotocol/uiweb': specifier: 1.0.1 version: 1.0.1(@pushprotocol/restapi@1.3.9)(@pushprotocol/socket@0.4.2)(ethers@5.7.2)(react@18.2.0)(styled-components@5.3.11) + '@radix-ui/react-accessible-icon': + specifier: ^1.0.1 + version: 1.0.2(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-accordion': specifier: ^1.1.0 version: 1.1.1(react-dom@18.2.0)(react@18.2.0) @@ -112,7 +117,7 @@ dependencies: version: 0.4.0(typescript@5.0.4)(zod@3.21.4) '@tanstack/react-query': specifier: ^4.3.9 - version: 4.26.1(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0) + version: 4.26.1(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0) abitype: specifier: ^0.9.6 version: 0.9.6(typescript@5.0.4)(zod@3.21.4) @@ -124,7 +129,7 @@ dependencies: version: 1.4.0 axios: specifier: ^1.2.2 - version: 1.3.4 + version: 1.2.2 class-variance-authority: specifier: ^0.4.0 version: 0.4.0(typescript@5.0.4) @@ -148,7 +153,7 @@ dependencies: version: 8.5.5(react-dom@18.2.0)(react@18.2.0) graphql-request: specifier: ^6.1.0 - version: 6.1.0(graphql@16.8.0) + version: 6.1.0(graphql@16.8.1) iron-session: specifier: ^6.3.1 version: 6.3.1(next@13.5.2) @@ -223,7 +228,7 @@ dependencies: version: 1.0.0(typescript@5.0.4)(zod@3.21.4) wagmi: specifier: 1.3.10 - version: 1.3.10(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) + version: 1.3.10(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) zod: specifier: ^3.21.4 version: 3.21.4 @@ -240,13 +245,13 @@ devDependencies: version: 17.4.4 '@graphprotocol/client-cli': specifier: ^3.0.0 - version: 3.0.0(@babel/core@7.18.5)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.2)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.0)(@types/node@17.0.45)(graphql-tag@2.12.6)(graphql@16.8.0)(react-native@0.72.4) + version: 3.0.0(@babel/core@7.18.5)(@envelop/core@4.0.3)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.3)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.1)(@types/node@17.0.45)(graphql-tag@2.12.6)(graphql@16.8.1)(react-native@0.71.0) '@graphql-codegen/cli': specifier: ^5.0.0 - version: 5.0.0(@types/node@17.0.45)(graphql@16.8.0) + version: 5.0.0(@types/node@17.0.45)(graphql@16.8.1)(typescript@5.0.4) '@graphql-codegen/client-preset': specifier: ^4.1.0 - version: 4.1.0(graphql@16.8.0) + version: 4.1.0(graphql@16.8.1) '@ianvs/prettier-plugin-sort-imports': specifier: ^4.1.0 version: 4.1.0(prettier@2.8.4) @@ -349,11 +354,6 @@ devDependencies: packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - dev: true - /@adraffy/ens-normalize@1.9.0: resolution: {integrity: sha512-iowxq3U30sghZotgl4s/oJRci6WPBfNO5YYgk2cIOMCHr3LeGPcsZjCEr+33Q4N+oV3OABDAtA+pyvWjbvBifQ==} @@ -380,8 +380,8 @@ packages: leven: 3.1.0 dev: false - /@apollo/client@3.8.1(graphql@16.8.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-JGGj/9bdoLEqzatRikDeN8etseY5qeFAY0vSAx/Pd0ePNsaflKzHx6V2NZ0NsGkInq+9IXXX3RLVDf0EotizMA==} + /@apollo/client@3.8.5(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-/ueWC3f1pFeH+tWbM1phz6pzUGGijyml6oQ+LKUcQzpXF6tVFPrb6oUIUQCbZpr6Xmv/dtNiFDohc39ra7Solg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-ws: ^5.5.5 @@ -398,12 +398,12 @@ packages: subscriptions-transport-ws: optional: true dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) '@wry/context': 0.7.3 '@wry/equality': 0.5.6 '@wry/trie': 0.4.3 - graphql: 16.8.0 - graphql-tag: 2.12.6(graphql@16.8.0) + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) hoist-non-react-statics: 3.3.2 optimism: 0.17.5 prop-types: 15.8.1 @@ -429,24 +429,24 @@ packages: rfdc: 1.3.0 dev: true - /@ardatan/relay-compiler@12.0.0(graphql@16.8.0): + /@ardatan/relay-compiler@12.0.0(graphql@16.8.1): resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true peerDependencies: graphql: '*' dependencies: '@babel/core': 7.18.5 - '@babel/generator': 7.22.10 - '@babel/parser': 7.22.10 + '@babel/generator': 7.23.0 + '@babel/parser': 7.23.0 '@babel/runtime': 7.21.5 - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 babel-preset-fbjs: 3.4.0(@babel/core@7.18.5) chalk: 4.1.2 fb-watchman: 2.0.2 fbjs: 3.0.5 glob: 7.2.3 - graphql: 16.8.0 + graphql: 16.8.1 immutable: 3.7.6 invariant: 2.2.4 nullthrows: 1.1.1 @@ -462,7 +462,7 @@ packages: resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==} engines: {node: '>=14'} dependencies: - node-fetch: 2.6.12 + node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding dev: true @@ -477,19 +477,25 @@ packages: dependencies: '@babel/highlight': 7.18.6 - /@babel/code-frame@7.22.10: - resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==} + /@babel/code-frame@7.21.4: + resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + + /@babel/code-frame@7.22.13: + resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.22.10 + '@babel/highlight': 7.22.20 chalk: 2.4.2 /@babel/compat-data@7.21.0: resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==} engines: {node: '>=6.9.0'} - /@babel/compat-data@7.22.9: - resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} + /@babel/compat-data@7.22.20: + resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==} engines: {node: '>=6.9.0'} /@babel/core@7.18.5: @@ -520,38 +526,38 @@ packages: dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.22.10 + '@babel/generator': 7.21.1 '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) '@babel/helper-module-transforms': 7.21.2 '@babel/helpers': 7.21.0 - '@babel/parser': 7.22.10 + '@babel/parser': 7.21.2 '@babel/template': 7.20.7 - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 + '@babel/traverse': 7.21.2 + '@babel/types': 7.21.2 convert-source-map: 1.9.0 debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 - semver: 6.3.1 + semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/core@7.22.10: - resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==} + /@babel/core@7.23.0: + resolution: {integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) - '@babel/helpers': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 - convert-source-map: 1.9.0 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helpers': 7.23.1 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 + convert-source-map: 2.0.0 debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 @@ -572,17 +578,16 @@ packages: resolution: {integrity: sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.0 '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.18 jsesc: 2.5.2 - dev: true - /@babel/generator@7.22.10: - resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==} + /@babel/generator@7.23.0: + resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.0 '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.18 jsesc: 2.5.2 @@ -591,21 +596,20 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.5 /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 - dev: false + '@babel/types': 7.23.0 /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9: resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.22.10 + '@babel/types': 7.21.5 /@babel/helper-compilation-targets@7.20.7(@babel/core@7.18.5): resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} @@ -634,13 +638,26 @@ packages: semver: 6.3.0 dev: true - /@babel/helper-compilation-targets@7.22.10: - resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==} + /@babel/helper-compilation-targets@7.20.7(@babel/core@7.23.0): + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.21.0 + '@babel/core': 7.23.0 + '@babel/helper-validator-option': 7.21.0 + browserslist: 4.21.5 + lru-cache: 5.1.1 + semver: 6.3.0 + + /@babel/helper-compilation-targets@7.22.15: + resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.22.9 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.10 + '@babel/compat-data': 7.22.20 + '@babel/helper-validator-option': 7.22.15 + browserslist: 4.22.1 lru-cache: 5.1.1 semver: 6.3.1 @@ -652,13 +669,13 @@ packages: dependencies: '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 '@babel/helper-member-expression-to-functions': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.20.7 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color @@ -670,32 +687,70 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 '@babel/helper-member-expression-to-functions': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.20.7 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.22.10): + /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.23.0): resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 '@babel/helper-member-expression-to-functions': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.20.7 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/helper-split-export-declaration': 7.18.6 + transitivePeerDependencies: + - supports-color + + /@babel/helper-create-class-features-plugin@7.21.8(@babel/core@7.18.5): + resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.21.5 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.21.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /@babel/helper-create-class-features-plugin@7.21.8(@babel/core@7.23.0): + resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.0 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.21.5 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.21.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -720,13 +775,13 @@ packages: regexpu-core: 5.3.2 dev: true - /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.22.10): + /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.23.0): resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.3.2 @@ -736,12 +791,12 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.18.5 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.18.5) '@babel/helper-plugin-utils': 7.20.2 debug: 4.3.4(supports-color@5.5.0) lodash.debounce: 4.0.8 resolve: 1.22.2 - semver: 6.3.1 + semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -751,41 +806,28 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 debug: 4.3.4(supports-color@5.5.0) lodash.debounce: 4.0.8 resolve: 1.22.2 - semver: 6.3.1 + semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.18.5): - resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@5.5.0) - lodash.debounce: 4.0.8 - resolve: 1.22.2 - transitivePeerDependencies: - - supports-color - - /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.10): - resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} + /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.23.0): + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.20.2 debug: 4.3.4(supports-color@5.5.0) lodash.debounce: 4.0.8 resolve: 1.22.2 + semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -793,59 +835,76 @@ packages: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} engines: {node: '>=6.9.0'} - /@babel/helper-environment-visitor@7.22.5: - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} + /@babel/helper-environment-visitor@7.21.5: + resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==} + engines: {node: '>=6.9.0'} + + /@babel/helper-environment-visitor@7.22.20: + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} /@babel/helper-explode-assignable-expression@7.18.6: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.0 /@babel/helper-function-name@7.21.0: resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/template': 7.20.7 + '@babel/types': 7.21.2 - /@babel/helper-function-name@7.22.5: - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} + /@babel/helper-function-name@7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 /@babel/helper-hoist-variables@7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.2 /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.0 /@babel/helper-member-expression-to-functions@7.21.0: resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.0 + + /@babel/helper-member-expression-to-functions@7.21.5: + resolution: {integrity: sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.0 /@babel/helper-module-imports@7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.2 + + /@babel/helper-module-imports@7.21.4: + resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.21.5 + dev: false - /@babel/helper-module-imports@7.22.5: - resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} + /@babel/helper-module-imports@7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.0 /@babel/helper-module-transforms@7.21.2: resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==} @@ -862,51 +921,37 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-module-transforms@7.22.9(@babel/core@7.18.5): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.18.5): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.21.0): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.21.0 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 - dev: true - - /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.10): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 /@babel/helper-optimise-call-expression@7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.5 /@babel/helper-plugin-utils@7.20.2: resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} @@ -924,9 +969,9 @@ packages: dependencies: '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.10 + '@babel/types': 7.21.5 transitivePeerDependencies: - supports-color @@ -938,24 +983,24 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.10 + '@babel/types': 7.21.5 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.10): + /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.23.0): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.10 + '@babel/types': 7.21.5 transitivePeerDependencies: - supports-color @@ -963,12 +1008,25 @@ packages: resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-member-expression-to-functions': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 + '@babel/template': 7.20.7 + '@babel/traverse': 7.21.5(supports-color@5.5.0) + '@babel/types': 7.21.5 + transitivePeerDependencies: + - supports-color + + /@babel/helper-replace-supers@7.21.5: + resolution: {integrity: sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.21.5 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 transitivePeerDependencies: - supports-color @@ -976,31 +1034,31 @@ packages: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.2 /@babel/helper-simple-access@7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.0 /@babel/helper-skip-transparent-expression-wrappers@7.20.0: resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.5 /@babel/helper-split-export-declaration@7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.2 /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.0 /@babel/helper-string-parser@7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} @@ -1009,7 +1067,6 @@ packages: /@babel/helper-string-parser@7.21.5: resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==} engines: {node: '>=6.9.0'} - dev: true /@babel/helper-string-parser@7.22.5: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} @@ -1019,26 +1076,26 @@ packages: resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.22.5: - resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} /@babel/helper-validator-option@7.21.0: resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.22.5: - resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} + /@babel/helper-validator-option@7.22.15: + resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} /@babel/helper-wrap-function@7.20.5: resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 + '@babel/helper-function-name': 7.21.0 + '@babel/template': 7.20.7 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 transitivePeerDependencies: - supports-color @@ -1052,13 +1109,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helpers@7.22.10: - resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==} + /@babel/helpers@7.23.1: + resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 transitivePeerDependencies: - supports-color @@ -1066,15 +1123,15 @@ packages: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.19.1 chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/highlight@7.22.10: - resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==} + /@babel/highlight@7.22.20: + resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 @@ -1085,12 +1142,19 @@ packages: dependencies: '@babel/types': 7.21.2 - /@babel/parser@7.22.10: - resolution: {integrity: sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==} + /@babel/parser@7.21.8: + resolution: {integrity: sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.23.0 + + /@babel/parser@7.23.0: + resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.23.0 /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.18.5): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} @@ -1141,7 +1205,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.18.5) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.5) @@ -1155,7 +1219,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.0) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0) @@ -1163,17 +1227,17 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.10): + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.0): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) transitivePeerDependencies: - supports-color @@ -1202,14 +1266,14 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.10): + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -1262,25 +1326,25 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.0) dev: true - /@babel/plugin-proposal-export-default-from@7.22.5(@babel/core@7.18.5): - resolution: {integrity: sha512-UCe1X/hplyv6A5g2WnQ90tnHRvYL29dabCWww92lO7VdfMVTVReBTRrhiMrKQejHD9oVkdnRdwYuzUZkBVQisg==} + /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.18.5): + resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.18.5) + '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.18.5) - /@babel/plugin-proposal-export-default-from@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-UCe1X/hplyv6A5g2WnQ90tnHRvYL29dabCWww92lO7VdfMVTVReBTRrhiMrKQejHD9oVkdnRdwYuzUZkBVQisg==} + /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.23.0): + resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.23.0) /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.18.5): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} @@ -1366,15 +1430,15 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.10): + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.18.5): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} @@ -1397,25 +1461,15 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0) dev: true - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10) - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.18.5): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.21.0 '@babel/core': 7.18.5 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.18.5) '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.5) '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.18.5) @@ -1426,26 +1480,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.21.0 '@babel/core': 7.21.0 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0) '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.0) dev: true - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.10): + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.0): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/compat-data': 7.21.0 + '@babel/core': 7.23.0 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.22.10) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.23.0) /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.18.5): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} @@ -1468,15 +1522,15 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0) dev: true - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.10): + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.18.5): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} @@ -1501,16 +1555,16 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0) dev: true - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.10): + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.0): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.18.5): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} @@ -1604,12 +1658,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.10): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.18.5): @@ -1629,12 +1683,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.10): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.18.5): @@ -1673,16 +1727,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.18.5): - resolution: {integrity: sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==} + /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.18.5): + resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1690,13 +1744,13 @@ packages: '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==} + /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.23.0): + resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.18.5): @@ -1716,8 +1770,8 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.18.5): - resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} + /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.18.5): + resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1725,13 +1779,13 @@ packages: '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} + /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.23.0): + resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.18.5): @@ -1753,16 +1807,24 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.10): + /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.23.0): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.18.5): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.18.5): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -1780,15 +1842,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.18.5): - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} @@ -1799,24 +1852,23 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.18.5): + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.18.5): + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - dev: false /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.18.5): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} @@ -1852,12 +1904,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.18.5): @@ -1877,14 +1929,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.10): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.18.5): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -1902,12 +1946,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.18.5): @@ -1927,12 +1971,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.5): @@ -1952,12 +1996,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.18.5): @@ -1998,15 +2042,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.18.5): - resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.21.0): resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} engines: {node: '>=6.9.0'} @@ -2017,23 +2052,23 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.10): - resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} + /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.18.5): + resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.18.5): - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} + /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.23.0): + resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} @@ -2045,14 +2080,23 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} + /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.18.5): + resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.23.0): + resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.18.5): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} @@ -2061,7 +2105,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.18.5) transitivePeerDependencies: @@ -2074,23 +2118,23 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.0) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.10): + /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.23.0): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.10) + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.0) transitivePeerDependencies: - supports-color @@ -2113,13 +2157,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.10): + /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.18.5): @@ -2141,13 +2185,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.10): + /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.23.0): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-classes@7.21.0(@babel/core@7.18.5): @@ -2158,13 +2202,13 @@ packages: dependencies: '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.18.5) + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.20.7 - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -2177,47 +2221,37 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.20.7 - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.10): + /@babel/plugin-transform-classes@7.21.0(@babel/core@7.23.0): resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.23.0) + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.20.7 - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.18.5): - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/template': 7.22.5 - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} engines: {node: '>=6.9.0'} @@ -2226,27 +2260,28 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/template': 7.22.5 + '@babel/template': 7.20.7 dev: true - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} + /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.18.5): + resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/template': 7.22.5 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 - /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.18.5): - resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} + /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.23.0): + resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} @@ -2258,14 +2293,23 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} + /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.18.5): + resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.23.0): + resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.18.5): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} @@ -2328,53 +2372,53 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.18.5): - resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} + /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.18.5): + resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.18.5) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.18.5) - /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} + /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.23.0): + resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.23.0) - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.18.5): + /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.0): - resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} + /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.18.5): + resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - dev: true + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} + /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.23.0): + resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.18.5): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} @@ -2383,8 +2427,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.18.5) + '@babel/helper-function-name': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.0): @@ -2394,20 +2438,20 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) + '@babel/helper-function-name': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.10): + /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.23.0): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-function-name': 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.23.0) + '@babel/helper-function-name': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-literals@7.18.9(@babel/core@7.18.5): @@ -2429,13 +2473,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.10): + /@babel/plugin-transform-literals@7.18.9(@babel/core@7.23.0): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.18.5): @@ -2457,13 +2501,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.10): + /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.18.5): @@ -2473,8 +2517,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.5) + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.0): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} @@ -2483,42 +2529,46 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0) + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.18.5): + /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.0): resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.5) + '@babel/core': 7.21.0 + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-simple-access': 7.22.5 + '@babel/helper-simple-access': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.0): - resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} + /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.18.5): + resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.0 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.18.5 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.5) + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.10): - resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} + /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.23.0): + resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.23.0 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.18.5): @@ -2528,10 +2578,12 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.5) + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.19.1 + transitivePeerDependencies: + - supports-color /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.0): resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} @@ -2540,10 +2592,12 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0) + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.19.1 + transitivePeerDependencies: + - supports-color dev: true /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.18.5): @@ -2553,8 +2607,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.5) + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} @@ -2563,8 +2619,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0) + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.18.5): @@ -2588,14 +2646,14 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.10): + /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.23.0): resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.18.5): @@ -2642,13 +2700,13 @@ packages: - supports-color dev: true - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.10): + /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: @@ -2673,15 +2731,33 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.22.10): + /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.23.0): resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.18.5): + resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.23.0): + resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.18.5): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -2701,13 +2777,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.10): + /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-react-constant-elements@7.20.2(@babel/core@7.21.0): @@ -2739,13 +2815,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.10): + /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.0): @@ -2758,8 +2834,8 @@ packages: '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.0) dev: true - /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.18.5): - resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} + /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.18.5): + resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2767,17 +2843,17 @@ packages: '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} + /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.23.0): + resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.18.5): - resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} + /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.18.5): + resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2785,54 +2861,54 @@ packages: '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} + /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.23.0): + resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.18.5): + /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 + '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.18.5) - '@babel/types': 7.22.10 + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.0) + '@babel/types': 7.21.2 + dev: true - /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.0): - resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} + /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.18.5): + resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.0 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.0) - '@babel/types': 7.22.10 - dev: true + '@babel/core': 7.18.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.18.5) + '@babel/types': 7.23.0 - /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} + /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.23.0): + resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.10) - '@babel/types': 7.22.10 + '@babel/core': 7.23.0 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) + '@babel/types': 7.23.0 /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} @@ -2845,26 +2921,26 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.18.5): + /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.0): resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 regenerator-transform: 0.15.1 + dev: true - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.0): - resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} + /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.18.5): + resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 - dev: true /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.18.5): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} @@ -2885,34 +2961,34 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-runtime@7.22.10(@babel/core@7.18.5): - resolution: {integrity: sha512-RchI7HePu1eu0CYNKHHHQdfenZcM4nz8rew5B1VWqeRKdcwW5aQ5HeG9eTUbWiAS1UrmHVLmoxTWHt3iLD/NhA==} + /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.18.5): + resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.18.5) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.18.5) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.18.5) + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.18.5) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.18.5) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.18.5) semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-runtime@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-RchI7HePu1eu0CYNKHHHQdfenZcM4nz8rew5B1VWqeRKdcwW5aQ5HeG9eTUbWiAS1UrmHVLmoxTWHt3iLD/NhA==} + /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.23.0): + resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.10) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.10) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.10) + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.23.0) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.23.0) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.23.0) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -2936,13 +3012,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.10): + /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-spread@7.20.7(@babel/core@7.18.5): @@ -2966,13 +3042,13 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: true - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.10): + /@babel/plugin-transform-spread@7.20.7(@babel/core@7.23.0): resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 @@ -2995,13 +3071,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.10): + /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.18.5): @@ -3023,13 +3099,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.10): + /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.23.0): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.18.5): @@ -3051,19 +3127,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-typescript@7.21.0(@babel/core@7.18.5): - resolution: {integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.18.5) - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.18.5) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-typescript@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==} engines: {node: '>=6.9.0'} @@ -3078,154 +3141,84 @@ packages: - supports-color dev: true - /@babel/plugin-transform-typescript@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==} + /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.18.5): + resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.10) + '@babel/core': 7.18.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.18.5) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.18.5) transitivePeerDependencies: - supports-color - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.18.5): - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-plugin-utils': 7.20.2 - - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.0): - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.18.5): - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.18.5) - '@babel/helper-plugin-utils': 7.20.2 - - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.0): - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0) - '@babel/helper-plugin-utils': 7.20.2 - dev: true - - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.23.0): + resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.20.2 - - /@babel/preset-env@7.20.2(@babel/core@7.18.5): - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.21.0 - '@babel/core': 7.18.5 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.18.5) - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.18.5) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.5) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.18.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.18.5) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.18.5) - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.5) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.5) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.18.5) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.18.5) - '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.18.5) - '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.18.5) - '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.18.5) - '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.5) - '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.18.5) - '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.18.5) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.5) - '@babel/preset-modules': 0.1.5(@babel/core@7.18.5) - '@babel/types': 7.22.10 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.18.5) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.18.5) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.18.5) - core-js-compat: 3.29.0 - semver: 6.3.1 + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.0 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.23.0) transitivePeerDependencies: - supports-color + /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.0): + resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.18.5): + resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.18.5): + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.18.5) + '@babel/helper-plugin-utils': 7.20.2 + + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.0): + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0) + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.23.0): + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.20.2 + /@babel/preset-env@7.20.2(@babel/core@7.21.0): resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} engines: {node: '>=6.9.0'} @@ -3302,26 +3295,112 @@ packages: '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.0) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.0) '@babel/preset-modules': 0.1.5(@babel/core@7.21.0) - '@babel/types': 7.22.10 + '@babel/types': 7.21.2 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.0) babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.0) babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.0) core-js-compat: 3.29.0 - semver: 6.3.1 + semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-flow@7.22.5(@babel/core@7.18.5): - resolution: {integrity: sha512-ta2qZ+LSiGCrP5pgcGt8xMnnkXQrq8Sa4Ulhy06BOlF5QbLw9q5hIx7bn5MrsvyTGAfh6kTOo07Q+Pfld/8Y5Q==} + /@babel/preset-env@7.21.5(@babel/core@7.18.5): + resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.20 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.5) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.5) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.5) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.18.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.18.5) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.5) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.18.5) + '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.18.5) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.18.5) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.18.5) + '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.18.5) + '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.5) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.5) + '@babel/preset-modules': 0.1.5(@babel/core@7.18.5) + '@babel/types': 7.23.0 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.18.5) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.18.5) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.18.5) + core-js-compat: 3.30.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /@babel/preset-flow@7.21.4(@babel/core@7.18.5): + resolution: {integrity: sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.18.5) + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.18.5) /@babel/preset-modules@0.1.5(@babel/core@7.18.5): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -3332,7 +3411,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.5) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.5) - '@babel/types': 7.22.10 + '@babel/types': 7.21.2 esutils: 2.0.3 /@babel/preset-modules@0.1.5(@babel/core@7.21.0): @@ -3344,7 +3423,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.0) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.0) - '@babel/types': 7.22.10 + '@babel/types': 7.21.2 esutils: 2.0.3 dev: true @@ -3363,35 +3442,37 @@ packages: '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.21.0) dev: true - /@babel/preset-typescript@7.21.0(@babel/core@7.18.5): + /@babel/preset-typescript@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.21.0) transitivePeerDependencies: - supports-color + dev: true - /@babel/preset-typescript@7.21.0(@babel/core@7.21.0): - resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==} + /@babel/preset-typescript@7.21.5(@babel/core@7.18.5): + resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.21.0) + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.18.5) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.18.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/register@7.22.5(@babel/core@7.18.5): - resolution: {integrity: sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ==} + /@babel/register@7.21.0(@babel/core@7.18.5): + resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3400,7 +3481,7 @@ packages: clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 - pirates: 4.0.6 + pirates: 4.0.5 source-map-support: 0.5.21 /@babel/regjsgen@0.8.0: @@ -3426,13 +3507,13 @@ packages: '@babel/parser': 7.21.2 '@babel/types': 7.21.2 - /@babel/template@7.22.5: - resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} + /@babel/template@7.22.15: + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/types': 7.22.10 + '@babel/code-frame': 7.22.13 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 /@babel/traverse@7.21.2: resolution: {integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==} @@ -3451,18 +3532,35 @@ packages: transitivePeerDependencies: - supports-color - /@babel/traverse@7.22.10(supports-color@5.5.0): - resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==} + /@babel/traverse@7.21.5(supports-color@5.5.0): + resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.21.4 + '@babel/generator': 7.21.5 + '@babel/helper-environment-visitor': 7.21.5 + '@babel/helper-function-name': 7.21.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.21.8 + '@babel/types': 7.21.5 + debug: 4.3.4(supports-color@5.5.0) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + /@babel/traverse@7.23.0: + resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.10 - '@babel/types': 7.22.10 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: @@ -3483,14 +3581,13 @@ packages: '@babel/helper-string-parser': 7.21.5 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 - dev: true - /@babel/types@7.22.10: - resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==} + /@babel/types@7.23.0: + resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 /@bgd-labs/aave-address-book@1.30.0: @@ -3533,7 +3630,34 @@ packages: engines: {node: '>= 10.0.0'} dependencies: '@metamask/safe-event-emitter': 2.0.0 - '@solana/web3.js': 1.75.0 + '@solana/web3.js': 1.75.0(encoding@0.1.13) + bind-decorator: 1.0.11 + bn.js: 5.2.1 + buffer: 6.0.3 + clsx: 1.2.1 + eth-block-tracker: 6.1.0 + eth-json-rpc-filters: 5.1.0 + eth-rpc-errors: 4.0.2 + json-rpc-engine: 6.1.0 + keccak: 3.0.3 + preact: 10.13.2 + qs: 6.11.1 + rxjs: 6.6.7 + sha.js: 2.4.11 + stream-browserify: 3.0.0 + util: 0.12.5 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + /@coinbase/wallet-sdk@3.8.0-beta.3(encoding@0.1.13): + resolution: {integrity: sha512-PffXu/F4plqaHNEBIVHAX6WsKv6Es9r/tkXZj/myGoUk+lfkzIV8tudZh+2ugRqGCIidl8CgVcpqjWD453Nr4g==} + engines: {node: '>= 10.0.0'} + dependencies: + '@metamask/safe-event-emitter': 2.0.0 + '@solana/web3.js': 1.75.0(encoding@0.1.13) bind-decorator: 1.0.11 bn.js: 5.2.1 buffer: 6.0.3 @@ -3554,6 +3678,7 @@ packages: - encoding - supports-color - utf-8-validate + dev: false /@commitlint/cli@17.4.4: resolution: {integrity: sha512-HwKlD7CPVMVGTAeFZylVNy14Vm5POVY0WxPkZr7EXLC/os0LH/obs6z4HRvJtH/nHCMYBvUBQhGwnufKfTjd5g==} @@ -3726,14 +3851,14 @@ packages: /@confio/ics23@0.6.8: resolution: {integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==} dependencies: - '@noble/hashes': 1.3.0 - protobufjs: 6.11.3 + '@noble/hashes': 1.3.1 + protobufjs: 6.11.4 dev: false - /@connext/nxtp-txservice@2.0.0-alpha.1(sinon@15.2.0)(ts-node@10.9.1)(typescript@5.0.4): + /@connext/nxtp-txservice@2.0.0-alpha.1(sinon@16.1.0)(ts-node@10.9.1)(typescript@5.0.4): resolution: {integrity: sha512-EbzayMvkLB8WhshcKSwbsW0y5q/4XY/k12OJSAMyYeYW38EH7jKdp32Ag4Vs9txwVmPnvAuiKoMM68dWzSX1Vg==} dependencies: - '@connext/nxtp-utils': 2.0.0-alpha.1(sinon@15.2.0) + '@connext/nxtp-utils': 2.0.0-alpha.1(sinon@16.1.0) '@connext/smart-contracts': 2.0.0-alpha.1(ethers@5.7.2)(ts-node@10.9.1)(typescript@5.0.4) '@sinclair/typebox': 0.25.21 ajv: 8.12.0 @@ -3753,7 +3878,7 @@ packages: - utf-8-validate dev: false - /@connext/nxtp-utils@2.0.0-alpha.1(sinon@15.2.0): + /@connext/nxtp-utils@2.0.0-alpha.1(sinon@16.1.0): resolution: {integrity: sha512-55+M+FUq5leI0VFLKyM6htbOECRe6IE++5zVlQ5E9UidpRS/CNYQpXHObBpzyvm7tmHiGwZgwoYa0BocXaYTyQ==} dependencies: '@maticnetwork/maticjs': 3.6.0-beta.6 @@ -3770,7 +3895,7 @@ packages: merkletreejs: 0.3.9 pino: 8.10.0 secp256k1: 4.0.3 - sinon-chai: 3.7.0(chai@4.3.7)(sinon@15.2.0) + sinon-chai: 3.7.0(chai@4.3.7)(sinon@16.1.0) transitivePeerDependencies: - bufferutil - debug @@ -3780,7 +3905,7 @@ packages: - utf-8-validate dev: false - /@connext/nxtp-utils@2.0.3(sinon@15.2.0): + /@connext/nxtp-utils@2.0.3(sinon@16.1.0): resolution: {integrity: sha512-oDvBxnRyv4wa0FYybnj6kyWT1Esam/F+z1A4FX9TLgRI2J3hPlD8MIkqQ54HXL+H5YD7UG23vq5t8R8Lp7uCWg==} dependencies: '@maticnetwork/maticjs': 3.6.0-beta.11 @@ -3797,7 +3922,7 @@ packages: merkletreejs: 0.3.9 pino: 8.10.0 secp256k1: 4.0.3 - sinon-chai: 3.7.0(chai@4.3.7)(sinon@15.2.0) + sinon-chai: 3.7.0(chai@4.3.7)(sinon@16.1.0) transitivePeerDependencies: - bufferutil - debug @@ -3807,11 +3932,11 @@ packages: - utf-8-validate dev: false - /@connext/sdk@2.0.4-alpha.2(sinon@15.2.0)(ts-node@10.9.1)(typescript@5.0.4): + /@connext/sdk@2.0.4-alpha.2(sinon@16.1.0)(ts-node@10.9.1)(typescript@5.0.4): resolution: {integrity: sha512-FP8IBRVIAnhRouY+O+inTcIhsk18rWAexW2eLMMztgO3iJ7c7Oi7Nng+Nfbp+l8ls9+3tyX2DrEw2LHKGIE3jQ==} dependencies: - '@connext/nxtp-txservice': 2.0.0-alpha.1(sinon@15.2.0)(ts-node@10.9.1)(typescript@5.0.4) - '@connext/nxtp-utils': 2.0.3(sinon@15.2.0) + '@connext/nxtp-txservice': 2.0.0-alpha.1(sinon@16.1.0)(ts-node@10.9.1)(typescript@5.0.4) + '@connext/nxtp-utils': 2.0.3(sinon@16.1.0) '@sinclair/typebox': 0.25.21 ethers: 5.7.2 isomorphic-fetch: 3.0.0 @@ -3856,10 +3981,10 @@ packages: '@cosmjs/encoding': 0.30.1 '@cosmjs/math': 0.30.1 '@cosmjs/utils': 0.30.1 - '@noble/hashes': 1.3.0 + '@noble/hashes': 1.3.1 bn.js: 5.2.1 elliptic: 6.5.4 - libsodium-wrappers: 0.7.11 + libsodium-wrappers: 0.7.13 dev: false /@cosmjs/encoding@0.30.1: @@ -3920,7 +4045,7 @@ packages: '@cosmjs/utils': 0.30.1 cosmjs-types: 0.7.2 long: 4.0.0 - protobufjs: 6.11.3 + protobufjs: 6.11.4 xstream: 11.14.0 transitivePeerDependencies: - bufferutil @@ -3983,7 +4108,6 @@ packages: /@emotion/memoize@0.7.4: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} - requiresBuild: true dev: false optional: true @@ -4006,23 +4130,23 @@ packages: tslib: 2.5.0 dev: true - /@envelop/core@4.0.0: - resolution: {integrity: sha512-6usEZO86hWT0ZajAbhOX0QXlV++lrlEmu8br6KQVvyXOxttiHADIibgfzb3GtSI7RnnJDnrcRb7Jynv6Lca3iQ==} + /@envelop/core@4.0.3: + resolution: {integrity: sha512-O0Vz8E0TObT6ijAob8jYFVJavcGywKThM3UAsxUIBBVPYZTMiqI9lo2gmAnbMUnrDcAYkUTZEW9FDYPRdF5l6g==} engines: {node: '>=16.0.0'} dependencies: - '@envelop/types': 4.0.0 + '@envelop/types': 4.0.1 tslib: 2.5.0 dev: true - /@envelop/extended-validation@2.0.6(@envelop/core@3.0.6)(graphql@16.8.0): + /@envelop/extended-validation@2.0.6(@envelop/core@3.0.6)(graphql@16.8.1): resolution: {integrity: sha512-aXAf1bg5Z71YfEKLCZ8OMUZAOYPGHV/a+7avd5TIMFNDxl5wJTmIonep3T+kdMpwRInDphfNPGFD0GcGdGxpHg==} peerDependencies: '@envelop/core': ^3.0.6 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@envelop/core': 3.0.6 - '@graphql-tools/utils': 8.13.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/utils': 8.13.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true @@ -4032,21 +4156,21 @@ packages: tslib: 2.5.0 dev: true - /@envelop/types@4.0.0: - resolution: {integrity: sha512-dmBK16VVfKCkqYYemvE+gt1cPBP0d9CbYO4yjNhSSYy9K+w6+Lw48wOLK238mSR339PNAvwj/JW/qzNy2llggA==} + /@envelop/types@4.0.1: + resolution: {integrity: sha512-ULo27/doEsP7uUhm2iTnElx13qTO6I5FKvmLoX41cpfuw8x6e0NUFknoqhEsLzAbgz8xVS5mjwcxGCXh4lDYzg==} engines: {node: '>=16.0.0'} dependencies: tslib: 2.5.0 dev: true - /@envelop/validation-cache@5.1.3(@envelop/core@3.0.6)(graphql@16.8.0): + /@envelop/validation-cache@5.1.3(@envelop/core@3.0.6)(graphql@16.8.1): resolution: {integrity: sha512-MkzcScQHJJQ/9YCAPdWShEi3xZv4F4neTs+NszzSrZOdlU8z/THuRt7gZ0sO0y2be+sx+SKjHQP8Gq3VXXcTTg==} peerDependencies: '@envelop/core': ^3.0.6 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@envelop/core': 3.0.6 - graphql: 16.8.0 + graphql: 16.8.1 hash-it: 6.0.0 lru-cache: 6.0.0 tslib: 2.5.0 @@ -4078,8 +4202,8 @@ packages: eslint-visitor-keys: 3.4.1 dev: true - /@eslint-community/regexpp@4.5.1: - resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} + /@eslint-community/regexpp@4.9.1: + resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true @@ -4107,7 +4231,7 @@ packages: '@openzeppelin/contracts': 4.7.3 '@openzeppelin/contracts-upgradeable': 4.7.3 ethers: 5.7.2 - hardhat: 2.16.1(ts-node@10.9.1)(typescript@5.0.4) + hardhat: 2.18.0(ts-node@10.9.1)(typescript@5.0.4) transitivePeerDependencies: - bufferutil - supports-color @@ -4147,8 +4271,8 @@ packages: '@ethersproject/rlp': 5.7.0 '@ethersproject/transactions': 5.7.0 '@ethersproject/web': 5.7.1 - bufio: 1.2.0 - chai: 4.3.7 + bufio: 1.2.1 + chai: 4.3.10 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -4197,6 +4321,13 @@ packages: ethereumjs-util: 7.1.5 dev: false + /@ethereumjs/common@3.2.0: + resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==} + dependencies: + '@ethereumjs/util': 8.1.0 + crc-32: 1.2.2 + dev: false + /@ethereumjs/rlp@4.0.1: resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==} engines: {node: '>=14'} @@ -4217,6 +4348,16 @@ packages: ethereumjs-util: 7.1.5 dev: false + /@ethereumjs/tx@4.2.0: + resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==} + engines: {node: '>=14'} + dependencies: + '@ethereumjs/common': 3.2.0 + '@ethereumjs/rlp': 4.0.1 + '@ethereumjs/util': 8.1.0 + ethereum-cryptography: 2.1.2 + dev: false + /@ethereumjs/util@8.1.0: resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==} engines: {node: '>=14'} @@ -4541,6 +4682,11 @@ packages: '@ethersproject/strings': 5.7.0 dev: false + /@fastify/busboy@2.0.0: + resolution: {integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==} + engines: {node: '>=14'} + dev: false + /@fastify/deepmerge@1.3.0: resolution: {integrity: sha512-J8TOSBq3SoZbDhM9+R/u77hP93gz/rajSA+K2kGyijPpORPWUXHUpTaleoj+92As0S9uPRP7Oi8IqMf0u+ro6A==} dev: true @@ -4549,8 +4695,10 @@ packages: resolution: {integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==} dev: false - /@floating-ui/core@1.3.1: - resolution: {integrity: sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==} + /@floating-ui/core@1.5.0: + resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==} + dependencies: + '@floating-ui/utils': 0.1.6 dev: false /@floating-ui/dom@0.5.4: @@ -4559,10 +4707,11 @@ packages: '@floating-ui/core': 0.7.3 dev: false - /@floating-ui/dom@1.4.5: - resolution: {integrity: sha512-96KnRWkRnuBSSFbj0sFGwwOUd8EkiecINVl0O9wiZlZ64EkpyAOG3Xc2vKKNJmru0Z7RqWNymA+6b8OZqjgyyw==} + /@floating-ui/dom@1.5.3: + resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==} dependencies: - '@floating-ui/core': 1.3.1 + '@floating-ui/core': 1.5.0 + '@floating-ui/utils': 0.1.6 dev: false /@floating-ui/react-dom@0.7.2(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): @@ -4579,17 +4728,21 @@ packages: - '@types/react' dev: false - /@floating-ui/react-dom@2.0.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-rZtAmSht4Lry6gdhAJDrCp/6rKN7++JnL1/Anbr/DdeyYXQPxvg/ivrbYvJulbRf4vL8b212suwMM2lxbv+RQA==} + /@floating-ui/react-dom@2.0.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@floating-ui/dom': 1.4.5 + '@floating-ui/dom': 1.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false + /@floating-ui/utils@0.1.6: + resolution: {integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==} + dev: false + /@gelatonetwork/automate-sdk@2.14.0: resolution: {integrity: sha512-wj+q42yzrhLG4k3EBKBHFyHiPRSNjwk7fdRPgDZrGe52MhaM+Rwxhly4ME6cUWgIhh31KrU8N60kkhIR3lWhww==} dependencies: @@ -4603,7 +4756,7 @@ packages: - utf-8-validate dev: false - /@graphprotocol/client-add-source-name@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.2)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.0)(graphql@16.8.0): + /@graphprotocol/client-add-source-name@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.3)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.1)(graphql@16.8.1): resolution: {integrity: sha512-3vX8mVPIEJFwAoRhjTPd9IjQrBuE+Gv+JB7IEf8/9222qiU9EzHVFUekKxVtcxQXD40CfageS41CxOreWQ1enA==} engines: {node: '>=16.0.0'} peerDependencies: @@ -4613,16 +4766,16 @@ packages: '@graphql-tools/wrap': ^9.4.2 || ^10.0.0 graphql: ^15.2.0 || ^16.0.0 dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/delegate': 10.0.2(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) + graphql: 16.8.1 lodash: 4.17.21 tslib: 2.5.0 dev: true - /@graphprotocol/client-auto-pagination@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.2)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.0)(graphql@16.8.0): + /@graphprotocol/client-auto-pagination@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.3)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.1)(graphql@16.8.1): resolution: {integrity: sha512-TouHgs6rQLpZSgnMoPdes8/ZTtMMEoxWeUUCkfho/xfSi49prb5DcsI83pykln0OEAUnNPnaX0MhP+xA5LtFSg==} engines: {node: '>=16.0.0'} peerDependencies: @@ -4632,16 +4785,16 @@ packages: '@graphql-tools/wrap': ^9.4.2 || ^10.0.0 graphql: ^15.2.0 || ^16.0.0 dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/delegate': 10.0.2(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) + graphql: 16.8.1 lodash: 4.17.21 tslib: 2.5.0 dev: true - /@graphprotocol/client-auto-type-merging@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.2)(graphql@16.8.0): + /@graphprotocol/client-auto-type-merging@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.3)(graphql@16.8.1): resolution: {integrity: sha512-mxqXKHK2lO+k4r02Q44n3qhd5dufo+SSDduD8zGUDBsYcRQAtQD9PwmXRHyUoB9nw4A+NC+CtVh+76fueXCG1w==} engines: {node: '>=16.0.0'} peerDependencies: @@ -4649,43 +4802,43 @@ packages: '@graphql-tools/delegate': ^9.0.32 || ^10.0.0 graphql: ^15.2.0 || ^16.0.0 dependencies: - '@graphql-mesh/transform-type-merging': 0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/delegate': 10.0.2(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-mesh/transform-type-merging': 0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - '@graphql-mesh/utils' dev: true - /@graphprotocol/client-block-tracking@2.0.0(@graphql-tools/delegate@10.0.2)(graphql@16.8.0): + /@graphprotocol/client-block-tracking@2.0.0(@graphql-tools/delegate@10.0.3)(graphql@16.8.1): resolution: {integrity: sha512-mpr0JAlefFGhxeb25ndeRKZ+t9cDHcUKGfRKIsoDzCclUEh5tBVTiQCDVGt6Eu+pxnrHPF2v/NQWktaB3+6twQ==} engines: {node: '>=16.0.0'} peerDependencies: '@graphql-tools/delegate': ^9.0.32 || ^10.0.0 graphql: ^15.2.0 || ^16.0.0 dependencies: - '@graphql-tools/delegate': 10.0.2(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphprotocol/client-cli@3.0.0(@babel/core@7.18.5)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.2)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.0)(@types/node@17.0.45)(graphql-tag@2.12.6)(graphql@16.8.0)(react-native@0.72.4): + /@graphprotocol/client-cli@3.0.0(@babel/core@7.18.5)(@envelop/core@4.0.3)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.3)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.1)(@types/node@17.0.45)(graphql-tag@2.12.6)(graphql@16.8.1)(react-native@0.71.0): resolution: {integrity: sha512-hTISbOzKavlDifBNsR6JqQMfdYwY7++hflPy+c3WHRrZ4OMoxFmW7ZuvaP6LvgKdJV77O8w9dnT/uxeHs6a90g==} engines: {node: '>=16.0.0'} hasBin: true peerDependencies: graphql: ^15.2.0 || ^16.0.0 dependencies: - '@graphprotocol/client-add-source-name': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.2)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.0)(graphql@16.8.0) - '@graphprotocol/client-auto-pagination': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.2)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.0)(graphql@16.8.0) - '@graphprotocol/client-auto-type-merging': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.2)(graphql@16.8.0) - '@graphprotocol/client-block-tracking': 2.0.0(@graphql-tools/delegate@10.0.2)(graphql@16.8.0) - '@graphprotocol/client-polling-live': 2.0.0(@envelop/core@4.0.0)(@graphql-tools/merge@9.0.0)(graphql@16.8.0) - '@graphql-mesh/cli': 0.82.35(@babel/core@7.18.5)(@types/node@17.0.45)(graphql-tag@2.12.6)(graphql@16.8.0)(react-native@0.72.4) - '@graphql-mesh/graphql': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(@types/node@17.0.45)(graphql@16.8.0)(tslib@2.5.0) - graphql: 16.8.0 + '@graphprotocol/client-add-source-name': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.3)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.1)(graphql@16.8.1) + '@graphprotocol/client-auto-pagination': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.3)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.1)(graphql@16.8.1) + '@graphprotocol/client-auto-type-merging': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.3)(graphql@16.8.1) + '@graphprotocol/client-block-tracking': 2.0.0(@graphql-tools/delegate@10.0.3)(graphql@16.8.1) + '@graphprotocol/client-polling-live': 2.0.0(@envelop/core@4.0.3)(@graphql-tools/merge@9.0.0)(graphql@16.8.1) + '@graphql-mesh/cli': 0.82.35(@babel/core@7.18.5)(@types/node@17.0.45)(graphql-tag@2.12.6)(graphql@16.8.1)(react-native@0.71.0) + '@graphql-mesh/graphql': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(@types/node@17.0.45)(graphql@16.8.1)(tslib@2.5.0) + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - '@babel/core' @@ -4710,7 +4863,7 @@ packages: - utf-8-validate dev: true - /@graphprotocol/client-polling-live@2.0.0(@envelop/core@4.0.0)(@graphql-tools/merge@9.0.0)(graphql@16.8.0): + /@graphprotocol/client-polling-live@2.0.0(@envelop/core@4.0.3)(@graphql-tools/merge@9.0.0)(graphql@16.8.1): resolution: {integrity: sha512-JQ0sKiFCX+ErR0fynBNUg/WDiVaaEndlS12fkgrFZrQA2vVpSyow9pW0nKMGVZJa4cN+VDskgwqK5BWXMvdeRA==} engines: {node: '>=16.0.0'} peerDependencies: @@ -4718,24 +4871,24 @@ packages: '@graphql-tools/merge': ^8.3.14 || ^9.0.0 graphql: ^15.2.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 - '@graphql-tools/merge': 9.0.0(graphql@16.8.0) + '@envelop/core': 4.0.3 + '@graphql-tools/merge': 9.0.0(graphql@16.8.1) '@repeaterjs/repeater': 3.0.4 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-codegen/add@5.0.0(graphql@16.8.0): + /@graphql-codegen/add@5.0.0(graphql@16.8.1): resolution: {integrity: sha512-ynWDOsK2yxtFHwcJTB9shoSkUd7YXd6ZE57f0nk7W5cu/nAgxZZpEsnTPEpZB/Mjf14YRGe2uJHQ7AfElHjqUQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-codegen/cli@5.0.0(@types/node@17.0.45)(graphql@16.8.0): + /@graphql-codegen/cli@5.0.0(@types/node@17.0.45)(graphql@16.8.1)(typescript@5.0.4): resolution: {integrity: sha512-A7J7+be/a6e+/ul2KI5sfJlpoqeqwX8EzktaKCeduyVKgOLA6W5t+NUGf6QumBDXU8PEOqXk3o3F+RAwCWOiqA==} hasBin: true peerDependencies: @@ -4747,29 +4900,29 @@ packages: dependencies: '@babel/generator': 7.21.5 '@babel/template': 7.20.7 - '@babel/types': 7.21.5 - '@graphql-codegen/core': 4.0.0(graphql@16.8.0) - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - '@graphql-tools/apollo-engine-loader': 8.0.0(graphql@16.8.0) - '@graphql-tools/code-file-loader': 8.0.2(graphql@16.8.0) - '@graphql-tools/git-loader': 8.0.2(graphql@16.8.0) - '@graphql-tools/github-loader': 8.0.0(@types/node@17.0.45)(graphql@16.8.0) - '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.0) - '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.0) - '@graphql-tools/load': 8.0.0(graphql@16.8.0) - '@graphql-tools/prisma-loader': 8.0.1(@types/node@17.0.45)(graphql@16.8.0) - '@graphql-tools/url-loader': 8.0.0(@types/node@17.0.45)(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@babel/types': 7.23.0 + '@graphql-codegen/core': 4.0.0(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-tools/apollo-engine-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/code-file-loader': 8.0.2(graphql@16.8.1) + '@graphql-tools/git-loader': 8.0.2(graphql@16.8.1) + '@graphql-tools/github-loader': 8.0.0(@types/node@17.0.45)(graphql@16.8.1) + '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/load': 8.0.0(graphql@16.8.1) + '@graphql-tools/prisma-loader': 8.0.1(@types/node@17.0.45)(graphql@16.8.1) + '@graphql-tools/url-loader': 8.0.0(@types/node@17.0.45)(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) '@whatwg-node/fetch': 0.8.8 chalk: 4.1.2 - cosmiconfig: 8.2.0 + cosmiconfig: 8.3.6(typescript@5.0.4) debounce: 1.2.1 detect-indent: 6.1.0 - graphql: 16.8.0 - graphql-config: 5.0.2(@types/node@17.0.45)(graphql@16.8.0) + graphql: 16.8.1 + graphql-config: 5.0.3(@types/node@17.0.45)(graphql@16.8.1)(typescript@5.0.4) inquirer: 8.2.6 is-glob: 4.0.3 - jiti: 1.19.3 + jiti: 1.20.0 json-to-pretty-yaml: 1.2.2 listr2: 4.0.5 log-symbols: 4.1.0 @@ -4778,7 +4931,7 @@ packages: string-env-interpolation: 1.0.1 ts-log: 2.2.5 tslib: 2.5.0 - yaml: 2.3.1 + yaml: 2.3.2 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' @@ -4787,295 +4940,296 @@ packages: - encoding - enquirer - supports-color + - typescript - utf-8-validate dev: true - /@graphql-codegen/client-preset@4.1.0(graphql@16.8.0): + /@graphql-codegen/client-preset@4.1.0(graphql@16.8.1): resolution: {integrity: sha512-/3Ymb/fjxIF1+HGmaI1YwSZbWsrZAWMSQjh3dU425eBjctjsVQ6gzGRr+l/gE5F1mtmCf+vlbTAT03heAc/QIw==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.20.7 - '@graphql-codegen/add': 5.0.0(graphql@16.8.0) - '@graphql-codegen/gql-tag-operations': 4.0.1(graphql@16.8.0) - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - '@graphql-codegen/typed-document-node': 5.0.1(graphql@16.8.0) - '@graphql-codegen/typescript': 4.0.1(graphql@16.8.0) - '@graphql-codegen/typescript-operations': 4.0.1(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.0) - '@graphql-tools/documents': 1.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-codegen/add': 5.0.0(graphql@16.8.1) + '@graphql-codegen/gql-tag-operations': 4.0.1(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-codegen/typed-document-node': 5.0.1(graphql@16.8.1) + '@graphql-codegen/typescript': 4.0.1(graphql@16.8.1) + '@graphql-codegen/typescript-operations': 4.0.1(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.1) + '@graphql-tools/documents': 1.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/core@3.1.0(graphql@16.8.0): + /@graphql-codegen/core@3.1.0(graphql@16.8.1): resolution: {integrity: sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.0) - '@graphql-tools/schema': 9.0.19(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.1) + '@graphql-tools/schema': 9.0.19(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-codegen/core@4.0.0(graphql@16.8.0): + /@graphql-codegen/core@4.0.0(graphql@16.8.1): resolution: {integrity: sha512-JAGRn49lEtSsZVxeIlFVIRxts2lWObR+OQo7V2LHDJ7ohYYw3ilv7nJ8pf8P4GTg/w6ptcYdSdVVdkI8kUHB/Q==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - '@graphql-tools/schema': 10.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-tools/schema': 10.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-codegen/gql-tag-operations@4.0.1(graphql@16.8.0): + /@graphql-codegen/gql-tag-operations@4.0.1(graphql@16.8.1): resolution: {integrity: sha512-qF6wIbBzW8BNT+wiVsBxrYOs2oYcsxQ7mRvCpfEI3HnNZMAST/uX76W8MqFEJvj4mw7NIDv7xYJAcAZIWM5LWw==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) auto-bind: 4.0.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/plugin-helpers@2.7.2(graphql@16.8.0): + /@graphql-codegen/plugin-helpers@2.7.2(graphql@16.8.1): resolution: {integrity: sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 8.13.1(graphql@16.8.0) + '@graphql-tools/utils': 8.13.1(graphql@16.8.1) change-case-all: 1.0.14 common-tags: 1.8.2 - graphql: 16.8.0 + graphql: 16.8.1 import-from: 4.0.0 lodash: 4.17.21 tslib: 2.4.1 dev: true - /@graphql-codegen/plugin-helpers@3.1.2(graphql@16.8.0): + /@graphql-codegen/plugin-helpers@3.1.2(graphql@16.8.1): resolution: {integrity: sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) change-case-all: 1.0.15 common-tags: 1.8.2 - graphql: 16.8.0 + graphql: 16.8.1 import-from: 4.0.0 lodash: 4.17.21 tslib: 2.4.1 dev: true - /@graphql-codegen/plugin-helpers@4.2.0(graphql@16.8.0): + /@graphql-codegen/plugin-helpers@4.2.0(graphql@16.8.1): resolution: {integrity: sha512-THFTCfg+46PXlXobYJ/OoCX6pzjI+9woQqCjdyKtgoI0tn3Xq2HUUCiidndxUpEYVrXb5pRiRXb7b/ZbMQqD0A==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) change-case-all: 1.0.15 common-tags: 1.8.2 - graphql: 16.8.0 + graphql: 16.8.1 import-from: 4.0.0 lodash: 4.17.21 tslib: 2.5.0 dev: true - /@graphql-codegen/plugin-helpers@5.0.1(graphql@16.8.0): + /@graphql-codegen/plugin-helpers@5.0.1(graphql@16.8.1): resolution: {integrity: sha512-6L5sb9D8wptZhnhLLBcheSPU7Tg//DGWgc5tQBWX46KYTOTQHGqDpv50FxAJJOyFVJrveN9otWk9UT9/yfY4ww==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) change-case-all: 1.0.15 common-tags: 1.8.2 - graphql: 16.8.0 + graphql: 16.8.1 import-from: 4.0.0 lodash: 4.17.21 tslib: 2.5.0 dev: true - /@graphql-codegen/schema-ast@3.0.1(graphql@16.8.0): + /@graphql-codegen/schema-ast@3.0.1(graphql@16.8.1): resolution: {integrity: sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-codegen/schema-ast@4.0.0(graphql@16.8.0): + /@graphql-codegen/schema-ast@4.0.0(graphql@16.8.1): resolution: {integrity: sha512-WIzkJFa9Gz28FITAPILbt+7A8+yzOyd1NxgwFh7ie+EmO9a5zQK6UQ3U/BviirguXCYnn+AR4dXsoDrSrtRA1g==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-codegen/typed-document-node@4.0.1(graphql@16.8.0): + /@graphql-codegen/typed-document-node@4.0.1(graphql@16.8.1): resolution: {integrity: sha512-mQNYCd12JsFSaK6xLry4olY9TdYG7GxQPexU6qU4Om++eKhseGwk2eGmQDRG4Qp8jEDFLMXuHMVUKqMQ1M+F/A==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.8.1) auto-bind: 4.0.0 change-case-all: 1.0.15 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typed-document-node@5.0.1(graphql@16.8.0): + /@graphql-codegen/typed-document-node@5.0.1(graphql@16.8.1): resolution: {integrity: sha512-VFkhCuJnkgtbbgzoCAwTdJe2G1H6sd3LfCrDqWUrQe53y2ukfSb5Ov1PhAIkCBStKCMQBUY9YgGz9GKR40qQ8g==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.1) auto-bind: 4.0.0 change-case-all: 1.0.15 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-generic-sdk@3.1.0(graphql-tag@2.12.6)(graphql@16.8.0): + /@graphql-codegen/typescript-generic-sdk@3.1.0(graphql-tag@2.12.6)(graphql@16.8.1): resolution: {integrity: sha512-nQZi/YGRI1+qCZZsh0V5nz6+hCHSN4OU9tKyOTDsEPyDFnGEukDuRdCH2IZasGn22a3Iu5TUDkgp5w9wEQwGmg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-tag: ^2.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.8.1) auto-bind: 4.0.0 - graphql: 16.8.0 - graphql-tag: 2.12.6(graphql@16.8.0) + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-operations@3.0.4(graphql@16.8.0): + /@graphql-codegen/typescript-operations@3.0.4(graphql@16.8.1): resolution: {integrity: sha512-6yE2OL2+WJ1vd5MwFEGXpaxsFGzjAGUytPVHDML3Bi3TwP1F3lnQlIko4untwvHW0JhZEGQ7Ck30H9HjcxpdKA==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.0) - '@graphql-codegen/typescript': 3.0.4(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.1) + '@graphql-codegen/typescript': 3.0.4(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.8.1) auto-bind: 4.0.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-operations@4.0.1(graphql@16.8.0): + /@graphql-codegen/typescript-operations@4.0.1(graphql@16.8.1): resolution: {integrity: sha512-GpUWWdBVUec/Zqo23aFLBMrXYxN2irypHqDcKjN78JclDPdreasAEPcIpMfqf4MClvpmvDLy4ql+djVAwmkjbw==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - '@graphql-codegen/typescript': 4.0.1(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-codegen/typescript': 4.0.1(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.1) auto-bind: 4.0.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-resolvers@3.2.1(graphql@16.8.0): + /@graphql-codegen/typescript-resolvers@3.2.1(graphql@16.8.1): resolution: {integrity: sha512-2ZIHk5J6HTuylse5ZIxw+aega54prHxvj7vM8hiKJ6vejZ94kvVPAq4aWmSFOkZ5lqU3YnM/ZyWfnhT5CUDj1g==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.0) - '@graphql-codegen/typescript': 3.0.4(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.1) + '@graphql-codegen/typescript': 3.0.4(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) auto-bind: 4.0.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript@3.0.4(graphql@16.8.0): + /@graphql-codegen/typescript@3.0.4(graphql@16.8.1): resolution: {integrity: sha512-x4O47447DZrWNtE/l5CU9QzzW4m1RbmCEdijlA3s2flG/y1Ckqdemob4CWfilSm5/tZ3w1junVDY616RDTSvZw==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.0) - '@graphql-codegen/schema-ast': 3.0.1(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.1) + '@graphql-codegen/schema-ast': 3.0.1(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.8.1) auto-bind: 4.0.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript@4.0.1(graphql@16.8.0): + /@graphql-codegen/typescript@4.0.1(graphql@16.8.1): resolution: {integrity: sha512-3YziQ21dCVdnHb+Us1uDb3pA6eG5Chjv0uTK+bt9dXeMlwYBU8MbtzvQTo4qvzWVC1AxSOKj0rgfNu1xCXqJyA==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - '@graphql-codegen/schema-ast': 4.0.0(graphql@16.8.0) - '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-codegen/schema-ast': 4.0.0(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 4.0.1(graphql@16.8.1) auto-bind: 4.0.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/visitor-plugin-common@2.13.1(graphql@16.8.0): + /@graphql-codegen/visitor-plugin-common@2.13.1(graphql@16.8.1): resolution: {integrity: sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.0) - '@graphql-tools/optimize': 1.4.0(graphql@16.8.0) - '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@16.8.0) - '@graphql-tools/utils': 8.13.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.1) + '@graphql-tools/optimize': 1.4.0(graphql@16.8.1) + '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@16.8.1) + '@graphql-tools/utils': 8.13.1(graphql@16.8.1) auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 - graphql: 16.8.0 - graphql-tag: 2.12.6(graphql@16.8.0) + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) parse-filepath: 1.0.2 tslib: 2.4.1 transitivePeerDependencies: @@ -5083,20 +5237,20 @@ packages: - supports-color dev: true - /@graphql-codegen/visitor-plugin-common@3.1.1(graphql@16.8.0): + /@graphql-codegen/visitor-plugin-common@3.1.1(graphql@16.8.1): resolution: {integrity: sha512-uAfp+zu/009R3HUAuTK2AamR1bxIltM6rrYYI6EXSmkM3rFtFsLTuJhjUDj98HcUCszJZrADppz8KKLGRUVlNg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.0) - '@graphql-tools/optimize': 1.4.0(graphql@16.8.0) - '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.8.1) + '@graphql-tools/optimize': 1.4.0(graphql@16.8.1) + '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 - graphql: 16.8.0 - graphql-tag: 2.12.6(graphql@16.8.0) + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) parse-filepath: 1.0.2 tslib: 2.5.0 transitivePeerDependencies: @@ -5104,20 +5258,20 @@ packages: - supports-color dev: true - /@graphql-codegen/visitor-plugin-common@4.0.1(graphql@16.8.0): + /@graphql-codegen/visitor-plugin-common@4.0.1(graphql@16.8.1): resolution: {integrity: sha512-Bi/1z0nHg4QMsAqAJhds+ForyLtk7A3HQOlkrZNm3xEkY7lcBzPtiOTLBtvziwopBsXUxqeSwVjOOFPLS5Yw1Q==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.8.0) - '@graphql-tools/relay-operation-optimizer': 7.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-tools/optimize': 2.0.0(graphql@16.8.1) + '@graphql-tools/relay-operation-optimizer': 7.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 - graphql: 16.8.0 - graphql-tag: 2.12.6(graphql@16.8.0) + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) parse-filepath: 1.0.2 tslib: 2.5.0 transitivePeerDependencies: @@ -5125,18 +5279,18 @@ packages: - supports-color dev: true - /@graphql-inspector/core@3.3.0(graphql@16.8.0): + /@graphql-inspector/core@3.3.0(graphql@16.8.1): resolution: {integrity: sha512-LRtk9sHgj9qqVPIkkThAVq3iZ7QxgHCx6elEwd0eesZBCmaIYQxD/BFu+VT8jr10YfOURBZuAnVdyGu64vYpBg==} peerDependencies: graphql: ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: dependency-graph: 0.11.0 - graphql: 16.8.0 + graphql: 16.8.1 object-inspect: 1.10.3 tslib: 2.5.0 dev: true - /@graphql-mesh/cache-localforage@0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/cache-localforage@0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-cY/LJ+XC8kiyPoLxqPAMlOAvaeB81CZafdadLNyNDFuu66qDiZqWTYPw/lnhp2nyeukC8o/P69oP7d2OqVaCZA==} peerDependencies: '@graphql-mesh/types': ^0.93.1 @@ -5144,47 +5298,47 @@ packages: graphql: '*' tslib: ^2.4.0 dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - graphql: 16.8.0 + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + graphql: 16.8.1 localforage: 1.10.0 tslib: 2.5.0 dev: true - /@graphql-mesh/cli@0.82.35(@babel/core@7.18.5)(@types/node@17.0.45)(graphql-tag@2.12.6)(graphql@16.8.0)(react-native@0.72.4): + /@graphql-mesh/cli@0.82.35(@babel/core@7.18.5)(@types/node@17.0.45)(graphql-tag@2.12.6)(graphql@16.8.1)(react-native@0.71.0): resolution: {integrity: sha512-5IuXpk+Zpg05u6qNPX19VzC5/HCiLdDRF6EPZ3ze57FIRgGA3YsB1CUGga6Ky3inalURYwx0kWqmdjbdKZYx1w==} hasBin: true peerDependencies: graphql: '*' dependencies: - '@graphql-codegen/core': 3.1.0(graphql@16.8.0) - '@graphql-codegen/typed-document-node': 4.0.1(graphql@16.8.0) - '@graphql-codegen/typescript': 3.0.4(graphql@16.8.0) - '@graphql-codegen/typescript-generic-sdk': 3.1.0(graphql-tag@2.12.6)(graphql@16.8.0) - '@graphql-codegen/typescript-operations': 3.0.4(graphql@16.8.0) - '@graphql-codegen/typescript-resolvers': 3.2.1(graphql@16.8.0) - '@graphql-mesh/config': 0.93.1(@babel/core@7.18.5)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(react-native@0.72.4) - '@graphql-mesh/http': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-codegen/core': 3.1.0(graphql@16.8.1) + '@graphql-codegen/typed-document-node': 4.0.1(graphql@16.8.1) + '@graphql-codegen/typescript': 3.0.4(graphql@16.8.1) + '@graphql-codegen/typescript-generic-sdk': 3.1.0(graphql-tag@2.12.6)(graphql@16.8.1) + '@graphql-codegen/typescript-operations': 3.0.4(graphql@16.8.1) + '@graphql-codegen/typescript-resolvers': 3.2.1(graphql@16.8.1) + '@graphql-mesh/config': 0.93.1(@babel/core@7.18.5)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(react-native@0.71.0) + '@graphql-mesh/http': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) ajv: 8.12.0 change-case: 4.1.2 - cosmiconfig: 8.2.0 + cosmiconfig: 8.3.6(typescript@5.0.4) dnscache: 1.0.2 dotenv: 16.0.3 - graphql: 16.8.0 - graphql-import-node: 0.0.5(graphql@16.8.0) - graphql-ws: 5.14.0(graphql@16.8.0) + graphql: 16.8.1 + graphql-import-node: 0.0.5(graphql@16.8.1) + graphql-ws: 5.14.1(graphql@16.8.1) json-bigint-patch: 0.0.8 json5: 2.2.3 mkdirp: 3.0.1 open: 7.4.2 pascal-case: 3.1.2 - rimraf: 5.0.1 + rimraf: 5.0.5 ts-node: 10.9.1(@types/node@17.0.45)(typescript@5.0.4) tsconfig-paths: 4.2.0 tslib: 2.5.0 @@ -5205,7 +5359,7 @@ packages: - utf-8-validate dev: true - /@graphql-mesh/config@0.93.1(@babel/core@7.18.5)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/config@0.93.1(@babel/core@7.18.5)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-g4omjuBBVPtyhEDeEa6uwfSSvUehV3zcwZVNbk+UJuFJEYPO4yBLsxfEZBpoeO6EriiPX2WnQyn5kiHbC3YTRA==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -5218,21 +5372,21 @@ packages: tslib: ^2.4.0 dependencies: '@envelop/core': 3.0.6 - '@graphql-mesh/cache-localforage': 0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(react-native@0.72.4) - '@graphql-mesh/merger-bare': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/merger-stitching': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.18.5)(graphql@16.8.0) - '@graphql-tools/graphql-file-loader': 7.5.17(graphql@16.8.0) - '@graphql-tools/load': 7.8.14(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-mesh/cache-localforage': 0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(react-native@0.71.0) + '@graphql-mesh/merger-bare': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/merger-stitching': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.18.5)(graphql@16.8.1) + '@graphql-tools/graphql-file-loader': 7.5.17(graphql@16.8.1) + '@graphql-tools/load': 7.8.14(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) '@whatwg-node/fetch': 0.8.8 camel-case: 4.1.2 - graphql: 16.8.0 + graphql: 16.8.1 param-case: 3.0.4 pascal-case: 3.1.2 tslib: 2.5.0 @@ -5241,23 +5395,23 @@ packages: - supports-color dev: true - /@graphql-mesh/cross-helpers@0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(react-native@0.72.4): + /@graphql-mesh/cross-helpers@0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(react-native@0.71.0): resolution: {integrity: sha512-jseNppSNEwNWjcjDDwsxmRBK+ub8tz2qc/ca2ZfCTebuCk/+D3dI3LJ95ceNFOIhInK0g2HVq8BO8lMMX1pQtg==} peerDependencies: '@graphql-tools/utils': ^9.2.1 graphql: '*' dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 path-browserify: 1.0.1 - react-native-fs: 2.20.0(react-native@0.72.4) + react-native-fs: 2.20.0(react-native@0.71.0) react-native-path: 0.0.5 transitivePeerDependencies: - react-native - react-native-windows dev: true - /@graphql-mesh/graphql@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(@types/node@17.0.45)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/graphql@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(@types/node@17.0.45)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-1G2/1jkl1VPWhsZsUBwFQI5d9OxxEc+CMxy5ef0qI2WEXqIocOxMhEY53cc+tCSbuXR99rxos+KD/8Z6ZasaOQ==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -5268,16 +5422,16 @@ packages: graphql: '*' tslib: ^2.4.0 dependencies: - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(react-native@0.72.4) - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/url-loader': 7.17.18(@types/node@17.0.45)(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(react-native@0.71.0) + '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/url-loader': 7.17.18(@types/node@17.0.45)(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@graphql-tools/wrap': 9.4.2(graphql@16.8.1) + graphql: 16.8.1 lodash.get: 4.4.2 tslib: 2.5.0 transitivePeerDependencies: @@ -5287,7 +5441,7 @@ packages: - utf-8-validate dev: true - /@graphql-mesh/http@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/http@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-tdGEvijb3w2YJsncoh59ZobWLWpYPDmTd07XOYroJTg3m95zloFRJr/IzklKOsAa57zVIuRLCOfDju5m1m47CQ==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -5297,17 +5451,17 @@ packages: graphql: '*' tslib: ^2.4.0 dependencies: - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(react-native@0.72.4) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(react-native@0.71.0) + '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) fets: 0.1.5 - graphql: 16.8.0 - graphql-yoga: 3.9.1(graphql@16.8.0) + graphql: 16.8.1 + graphql-yoga: 3.9.1(graphql@16.8.1) tslib: 2.5.0 dev: true - /@graphql-mesh/merger-bare@0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/merger-bare@0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-S/G3WSSa4+9YT320iRL/tODK4hTvepkQNUSzmddf3oz10xeyQD7hPJyOAnB6D+2dGVhaOTwmXJIueqevcAcP6Q==} peerDependencies: '@graphql-mesh/types': ^0.93.1 @@ -5316,18 +5470,18 @@ packages: graphql: '*' tslib: ^2.4.0 dependencies: - '@graphql-mesh/merger-stitching': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/schema': 9.0.19(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-mesh/merger-stitching': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/schema': 9.0.19(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - '@graphql-mesh/store' dev: true - /@graphql-mesh/merger-stitching@0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/merger-stitching@0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-8km5UFhKQGd0XY8bTBpHoBhVx/7qCkflPHLoTAguIWN8nJrcXJoqPamodci/U+2hudLAtRqhWosHu/8z7ctZpg==} peerDependencies: '@graphql-mesh/store': ^0.93.1 @@ -5337,19 +5491,19 @@ packages: graphql: '*' tslib: ^2.4.0 dependencies: - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/schema': 9.0.19(graphql@16.8.0) - '@graphql-tools/stitch': 8.7.50(graphql@16.8.0) - '@graphql-tools/stitching-directives': 2.3.34(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/schema': 9.0.19(graphql@16.8.1) + '@graphql-tools/stitch': 8.7.50(graphql@16.8.1) + '@graphql-tools/stitching-directives': 2.3.34(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-mesh/runtime@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/runtime@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-8z9ag3jZLmkzawMzF6+i/+P1nQai+HmSZzNeJJen6fRkwprSM1Z7B4lfYBYhdiCbK11HHubDfw4LYwRuBcISMQ==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -5360,22 +5514,22 @@ packages: tslib: ^2.4.0 dependencies: '@envelop/core': 3.0.6 - '@envelop/extended-validation': 2.0.6(@envelop/core@3.0.6)(graphql@16.8.0) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(react-native@0.72.4) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/batch-delegate': 8.4.27(graphql@16.8.0) - '@graphql-tools/batch-execute': 8.5.22(graphql@16.8.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.8.0) + '@envelop/extended-validation': 2.0.6(@envelop/core@3.0.6)(graphql@16.8.1) + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(react-native@0.71.0) + '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/batch-delegate': 8.4.27(graphql@16.8.1) + '@graphql-tools/batch-execute': 8.5.22(graphql@16.8.1) + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@graphql-tools/wrap': 9.4.2(graphql@16.8.1) '@whatwg-node/fetch': 0.8.8 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-mesh/store@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/store@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-OEljVuaZn2htU1rt4Yll/aJmynw3/Kvhd6eE8V0/del0u9iuLJqiKkzFJl8HUSMh0IkO10OnficJnTM0tCmxRw==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -5385,29 +5539,29 @@ packages: graphql: '*' tslib: ^2.4.0 dependencies: - '@graphql-inspector/core': 3.3.0(graphql@16.8.0) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(react-native@0.72.4) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-inspector/core': 3.3.0(graphql@16.8.1) + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(react-native@0.71.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-mesh/string-interpolation@0.4.4(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/string-interpolation@0.4.4(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-IotswBYZRaPswOebcr2wuOFuzD3dHIJxVEkPiiQubqjUIR8HhQI22XHJv0WNiQZ65z8NR9+GYWwEDIc2JRCNfQ==} peerDependencies: graphql: '*' tslib: ^2.4.0 dependencies: dayjs: 1.11.7 - graphql: 16.8.0 + graphql: 16.8.1 json-pointer: 0.6.2 lodash.get: 4.4.2 tslib: 2.5.0 dev: true - /@graphql-mesh/transform-type-merging@0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/transform-type-merging@0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-CUrqCMaEqO1LDusv59UPqmQju3f+LpEGxFu7CydMiIvbfKDDDrf8+dF3OVU7d/ZOMRxB6hR80JsQF0SVeXPCOQ==} peerDependencies: '@graphql-mesh/types': ^0.93.1 @@ -5415,15 +5569,15 @@ packages: graphql: '*' tslib: ^2.4.0 dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/stitching-directives': 2.3.34(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/stitching-directives': 2.3.34(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-mesh/types@0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/types@0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-113DuJzmR7aj2EMnLPu33ktCe5k7+Mk0BxFfmQViUH+mkr6i4JMsWvPKs9dTODSYuSuwvAZ90Vw2l3QyMrbFVA==} peerDependencies: '@graphql-mesh/store': ^0.93.1 @@ -5431,16 +5585,16 @@ packages: graphql: '*' tslib: ^2.4.0 dependencies: - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/batch-delegate': 8.4.27(graphql@16.8.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/batch-delegate': 8.4.27(graphql@16.8.1) + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-mesh/utils@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0): + /@graphql-mesh/utils@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0): resolution: {integrity: sha512-U+VytfSoqPofH/pmYZHFY10SkIFtHKrvE7Isxv1d0DiweVjdH3Qtojw13DWFpu/EKtgJY5bqoVnlcsZJYlKQoA==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -5449,13 +5603,13 @@ packages: graphql: '*' tslib: ^2.4.0 dependencies: - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(react-native@0.72.4) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.8.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.0)(tslib@2.5.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(react-native@0.71.0) + '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.8.1)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.8.1)(tslib@2.5.0) + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) dset: 3.1.2 - graphql: 16.8.0 + graphql: 16.8.1 js-yaml: 4.1.0 lodash.get: 4.4.2 lodash.topath: 4.5.2 @@ -5463,68 +5617,68 @@ packages: tslib: 2.5.0 dev: true - /@graphql-tools/apollo-engine-loader@8.0.0(graphql@16.8.0): + /@graphql-tools/apollo-engine-loader@8.0.0(graphql@16.8.1): resolution: {integrity: sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - '@whatwg-node/fetch': 0.9.9 - graphql: 16.8.0 + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + '@whatwg-node/fetch': 0.9.13 + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding dev: true - /@graphql-tools/batch-delegate@8.4.27(graphql@16.8.0): + /@graphql-tools/batch-delegate@8.4.27(graphql@16.8.1): resolution: {integrity: sha512-efgDDJhljma9d3Ky/LswIu1xm/if2oS27XA1sOcxcShW+Ze+Qxi0hZZ6iyI4eQxVDX5Lyy/n+NvQEZAK1riqnQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) dataloader: 2.2.2 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/batch-execute@8.5.22(graphql@16.8.0): + /@graphql-tools/batch-execute@8.5.22(graphql@16.8.1): resolution: {integrity: sha512-hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) dataloader: 2.2.2 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/batch-execute@9.0.1(graphql@16.8.0): - resolution: {integrity: sha512-cc96n/JNARtnYjru6KQl3u3MLrQLfFBu8VoDRRG2BQmShodw4QJ8fn7MzFABjkBHFQPydNGN1QOKBCjq6ui/3g==} + /@graphql-tools/batch-execute@9.0.2(graphql@16.8.1): + resolution: {integrity: sha512-Y2uwdZI6ZnatopD/SYfZ1eGuQFI7OU2KGZ2/B/7G9ISmgMl5K+ZZWz/PfIEXeiHirIDhyk54s4uka5rj2xwKqQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) dataloader: 2.2.2 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/code-file-loader@7.3.23(@babel/core@7.18.5)(graphql@16.8.0): + /@graphql-tools/code-file-loader@7.3.23(@babel/core@7.18.5)(graphql@16.8.1): resolution: {integrity: sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.18.5)(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.18.5)(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) globby: 11.1.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 unixify: 1.0.0 transitivePeerDependencies: @@ -5532,73 +5686,73 @@ packages: - supports-color dev: true - /@graphql-tools/code-file-loader@8.0.2(graphql@16.8.0): + /@graphql-tools/code-file-loader@8.0.2(graphql@16.8.1): resolution: {integrity: sha512-AKNpkElUL2cWocYpC4DzNEpo6qJw8Lp+L3bKQ/mIfmbsQxgLz5uve6zHBMhDaFPdlwfIox41N3iUSvi77t9e8A==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) globby: 11.1.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 unixify: 1.0.0 transitivePeerDependencies: - supports-color dev: true - /@graphql-tools/delegate@10.0.2(graphql@16.8.0): - resolution: {integrity: sha512-ZU7VnR2xFgHrGnsuw6+nRJkcvSucn7w5ooxb/lTKlVfrNJfTwJevNcNKMnbtPUSajG3+CaFym/nU6v44GXCmNw==} + /@graphql-tools/delegate@10.0.3(graphql@16.8.1): + resolution: {integrity: sha512-Jor9oazZ07zuWkykD3OOhT/2XD74Zm6Ar0ENZMk75MDD51wB2UWUIMljtHxbJhV5A6UBC2v8x6iY0xdCGiIlyw==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/batch-execute': 9.0.1(graphql@16.8.0) - '@graphql-tools/executor': 1.2.0(graphql@16.8.0) - '@graphql-tools/schema': 10.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@graphql-tools/batch-execute': 9.0.2(graphql@16.8.1) + '@graphql-tools/executor': 1.2.0(graphql@16.8.1) + '@graphql-tools/schema': 10.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) dataloader: 2.2.2 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-tools/delegate@9.0.35(graphql@16.8.0): + /@graphql-tools/delegate@9.0.35(graphql@16.8.1): resolution: {integrity: sha512-jwPu8NJbzRRMqi4Vp/5QX1vIUeUPpWmlQpOkXQD2r1X45YsVceyUUBnktCrlJlDB4jPRVy7JQGwmYo3KFiOBMA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/batch-execute': 8.5.22(graphql@16.8.0) - '@graphql-tools/executor': 0.0.20(graphql@16.8.0) - '@graphql-tools/schema': 9.0.19(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-tools/batch-execute': 8.5.22(graphql@16.8.1) + '@graphql-tools/executor': 0.0.20(graphql@16.8.1) + '@graphql-tools/schema': 9.0.19(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) dataloader: 2.2.2 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/documents@1.0.0(graphql@16.8.0): + /@graphql-tools/documents@1.0.0(graphql@16.8.1): resolution: {integrity: sha512-rHGjX1vg/nZ2DKqRGfDPNC55CWZBMldEVcH+91BThRa6JeT80NqXknffLLEZLRUxyikCfkwMsk6xR3UNMqG0Rg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.8.0 + graphql: 16.8.1 lodash.sortby: 4.7.0 tslib: 2.5.0 dev: true - /@graphql-tools/executor-graphql-ws@0.0.14(graphql@16.8.0): + /@graphql-tools/executor-graphql-ws@0.0.14(graphql@16.8.1): resolution: {integrity: sha512-P2nlkAsPZKLIXImFhj0YTtny5NQVGSsKnhi7PzXiaHSXc6KkzqbWZHKvikD4PObanqg+7IO58rKFpGXP7eeO+w==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) '@repeaterjs/repeater': 3.0.4 - '@types/ws': 8.5.5 - graphql: 16.8.0 - graphql-ws: 5.12.1(graphql@16.8.0) + '@types/ws': 8.5.6 + graphql: 16.8.1 + graphql-ws: 5.12.1(graphql@16.8.1) isomorphic-ws: 5.0.0(ws@8.13.0) tslib: 2.5.0 ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) @@ -5607,16 +5761,16 @@ packages: - utf-8-validate dev: true - /@graphql-tools/executor-graphql-ws@1.1.0(graphql@16.8.0): + /@graphql-tools/executor-graphql-ws@1.1.0(graphql@16.8.1): resolution: {integrity: sha512-yM67SzwE8rYRpm4z4AuGtABlOp9mXXVy6sxXnTJRoYIdZrmDbKVfIY+CpZUJCqS0FX3xf2+GoHlsj7Qswaxgcg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - '@types/ws': 8.5.5 - graphql: 16.8.0 - graphql-ws: 5.14.0(graphql@16.8.0) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + '@types/ws': 8.5.6 + graphql: 16.8.1 + graphql-ws: 5.14.1(graphql@16.8.1) isomorphic-ws: 5.0.0(ws@8.13.0) tslib: 2.5.0 ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) @@ -5625,17 +5779,17 @@ packages: - utf-8-validate dev: true - /@graphql-tools/executor-http@0.1.10(@types/node@17.0.45)(graphql@16.8.0): + /@graphql-tools/executor-http@0.1.10(@types/node@17.0.45)(graphql@16.8.1): resolution: {integrity: sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) '@repeaterjs/repeater': 3.0.4 '@whatwg-node/fetch': 0.8.8 dset: 3.1.2 extract-files: 11.0.0 - graphql: 16.8.0 + graphql: 16.8.1 meros: 1.3.0(@types/node@17.0.45) tslib: 2.5.0 value-or-promise: 1.0.12 @@ -5643,17 +5797,17 @@ packages: - '@types/node' dev: true - /@graphql-tools/executor-http@1.0.2(@types/node@17.0.45)(graphql@16.8.0): + /@graphql-tools/executor-http@1.0.2(@types/node@17.0.45)(graphql@16.8.1): resolution: {integrity: sha512-JKTB4E3kdQM2/1NEcyrVPyQ8057ZVthCV5dFJiKktqY9IdmF00M8gupFcW3jlbM/Udn78ickeUBsUzA3EouqpA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) '@repeaterjs/repeater': 3.0.4 - '@whatwg-node/fetch': 0.9.9 + '@whatwg-node/fetch': 0.9.13 extract-files: 11.0.0 - graphql: 16.8.0 + graphql: 16.8.1 meros: 1.3.0(@types/node@17.0.45) tslib: 2.5.0 value-or-promise: 1.0.12 @@ -5661,14 +5815,14 @@ packages: - '@types/node' dev: true - /@graphql-tools/executor-legacy-ws@0.0.11(graphql@16.8.0): + /@graphql-tools/executor-legacy-ws@0.0.11(graphql@16.8.1): resolution: {integrity: sha512-4ai+NnxlNfvIQ4c70hWFvOZlSUN8lt7yc+ZsrwtNFbFPH/EroIzFMapAxM9zwyv9bH38AdO3TQxZ5zNxgBdvUw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@types/ws': 8.5.5 - graphql: 16.8.0 + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@types/ws': 8.5.6 + graphql: 16.8.1 isomorphic-ws: 5.0.0(ws@8.13.0) tslib: 2.5.0 ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) @@ -5677,72 +5831,72 @@ packages: - utf-8-validate dev: true - /@graphql-tools/executor-legacy-ws@1.0.1(graphql@16.8.0): - resolution: {integrity: sha512-PQrTJ+ncHMEQspBARc2lhwiQFfRAX/z/CsOdZTFjIljOHgRWGAA1DAx7pEN0j6PflbLCfZ3NensNq2jCBwF46w==} + /@graphql-tools/executor-legacy-ws@1.0.3(graphql@16.8.1): + resolution: {integrity: sha512-rr3IDeO9Dh+8u8KIro++5kzJJYPHkcrIAWzqXtN663nhInC85iW7Ko91yOYwf7ovBci/7s+4Rqe4ZRyca1LGjQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - '@types/ws': 8.5.5 - graphql: 16.8.0 - isomorphic-ws: 5.0.0(ws@8.13.0) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + '@types/ws': 8.5.6 + graphql: 16.8.1 + isomorphic-ws: 5.0.0(ws@8.14.1) tslib: 2.5.0 - ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.14.1 transitivePeerDependencies: - bufferutil - utf-8-validate dev: true - /@graphql-tools/executor@0.0.18(graphql@16.8.0): + /@graphql-tools/executor@0.0.18(graphql@16.8.1): resolution: {integrity: sha512-xZC0C+/npXoSHBB5bsJdwxDLgtl1Gu4fL9J2TPQmXoZC3L2N506KJoppf9LgWdHU/xK04luJrhP6WjhfkIN0pQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) '@repeaterjs/repeater': 3.0.4 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/executor@0.0.20(graphql@16.8.0): + /@graphql-tools/executor@0.0.20(graphql@16.8.1): resolution: {integrity: sha512-GdvNc4vszmfeGvUqlcaH1FjBoguvMYzxAfT6tDd4/LgwymepHhinqLNA5otqwVLW+JETcDaK7xGENzFomuE6TA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) '@repeaterjs/repeater': 3.0.4 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/executor@1.2.0(graphql@16.8.0): + /@graphql-tools/executor@1.2.0(graphql@16.8.1): resolution: {integrity: sha512-SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) '@repeaterjs/repeater': 3.0.4 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/git-loader@8.0.2(graphql@16.8.0): + /@graphql-tools/git-loader@8.0.2(graphql@16.8.1): resolution: {integrity: sha512-AuCB0nlPvsHh8u42zRZdlD/ZMaWP9A44yAkQUVCZir1E/LG63fsZ9svTWJ+CbusW3Hd0ZP9qpxEhlHxnd4Tlsg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 is-glob: 4.0.3 micromatch: 4.0.5 tslib: 2.5.0 @@ -5751,18 +5905,18 @@ packages: - supports-color dev: true - /@graphql-tools/github-loader@8.0.0(@types/node@17.0.45)(graphql@16.8.0): + /@graphql-tools/github-loader@8.0.0(@types/node@17.0.45)(graphql@16.8.1): resolution: {integrity: sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.0.2(@types/node@17.0.45)(graphql@16.8.0) - '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - '@whatwg-node/fetch': 0.9.9 - graphql: 16.8.0 + '@graphql-tools/executor-http': 1.0.2(@types/node@17.0.45)(graphql@16.8.1) + '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + '@whatwg-node/fetch': 0.9.13 + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -5771,188 +5925,188 @@ packages: - supports-color dev: true - /@graphql-tools/graphql-file-loader@7.5.17(graphql@16.8.0): + /@graphql-tools/graphql-file-loader@7.5.17(graphql@16.8.1): resolution: {integrity: sha512-hVwwxPf41zOYgm4gdaZILCYnKB9Zap7Ys9OhY1hbwuAuC4MMNY9GpUjoTU3CQc3zUiPoYStyRtUGkHSJZ3HxBw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/import': 6.7.18(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@graphql-tools/import': 6.7.18(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) globby: 11.1.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 unixify: 1.0.0 dev: true - /@graphql-tools/graphql-file-loader@8.0.0(graphql@16.8.0): + /@graphql-tools/graphql-file-loader@8.0.0(graphql@16.8.1): resolution: {integrity: sha512-wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/import': 7.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@graphql-tools/import': 7.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) globby: 11.1.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 unixify: 1.0.0 dev: true - /@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.18.5)(graphql@16.8.0): + /@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.18.5)(graphql@16.8.1): resolution: {integrity: sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@babel/parser': 7.22.10 + '@babel/parser': 7.23.0 '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.18.5) - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - '@babel/core' - supports-color dev: true - /@graphql-tools/graphql-tag-pluck@8.0.2(graphql@16.8.0): + /@graphql-tools/graphql-tag-pluck@8.0.2(graphql@16.8.1): resolution: {integrity: sha512-U6fE4yEHxuk/nqmPixHpw1WhqdS6aYuaV60m1bEmUmGJNbpAhaMBy01JncpvpF15yZR5LZ0UjkHg+A3Lhoc8YQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.10) - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@babel/core': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.23.0) + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - supports-color dev: true - /@graphql-tools/import@6.7.18(graphql@16.8.0): + /@graphql-tools/import@6.7.18(graphql@16.8.1): resolution: {integrity: sha512-XQDdyZTp+FYmT7as3xRWH/x8dx0QZA2WZqfMF5EWb36a0PiH7WwlRQYIdyYXj8YCLpiWkeBXgBRHmMnwEYR8iQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 resolve-from: 5.0.0 tslib: 2.5.0 dev: true - /@graphql-tools/import@7.0.0(graphql@16.8.0): + /@graphql-tools/import@7.0.0(graphql@16.8.1): resolution: {integrity: sha512-NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 resolve-from: 5.0.0 tslib: 2.5.0 dev: true - /@graphql-tools/json-file-loader@8.0.0(graphql@16.8.0): + /@graphql-tools/json-file-loader@8.0.0(graphql@16.8.1): resolution: {integrity: sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) globby: 11.1.0 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 unixify: 1.0.0 dev: true - /@graphql-tools/load@7.8.14(graphql@16.8.0): + /@graphql-tools/load@7.8.14(graphql@16.8.1): resolution: {integrity: sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 9.0.19(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/schema': 9.0.19(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 p-limit: 3.1.0 tslib: 2.5.0 dev: true - /@graphql-tools/load@8.0.0(graphql@16.8.0): + /@graphql-tools/load@8.0.0(graphql@16.8.1): resolution: {integrity: sha512-Cy874bQJH0FP2Az7ELPM49iDzOljQmK1PPH6IuxsWzLSTxwTqd8dXA09dcVZrI7/LsN26heTY2R8q2aiiv0GxQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 10.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/schema': 10.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 p-limit: 3.1.0 tslib: 2.5.0 dev: true - /@graphql-tools/merge@8.4.2(graphql@16.8.0): + /@graphql-tools/merge@8.4.2(graphql@16.8.1): resolution: {integrity: sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-tools/merge@9.0.0(graphql@16.8.0): + /@graphql-tools/merge@9.0.0(graphql@16.8.1): resolution: {integrity: sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-tools/optimize@1.4.0(graphql@16.8.0): + /@graphql-tools/optimize@1.4.0(graphql@16.8.1): resolution: {integrity: sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-tools/optimize@2.0.0(graphql@16.8.0): + /@graphql-tools/optimize@2.0.0(graphql@16.8.1): resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-tools/prisma-loader@8.0.1(@types/node@17.0.45)(graphql@16.8.0): + /@graphql-tools/prisma-loader@8.0.1(@types/node@17.0.45)(graphql@16.8.1): resolution: {integrity: sha512-bl6e5sAYe35Z6fEbgKXNrqRhXlCJYeWKBkarohgYA338/SD9eEhXtg3Cedj7fut3WyRLoQFpHzfiwxKs7XrgXg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/url-loader': 8.0.0(@types/node@17.0.45)(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - '@types/js-yaml': 4.0.5 + '@graphql-tools/url-loader': 8.0.0(@types/node@17.0.45)(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + '@types/js-yaml': 4.0.6 '@types/json-stable-stringify': 1.0.34 - '@whatwg-node/fetch': 0.9.9 + '@whatwg-node/fetch': 0.9.13 chalk: 4.1.2 debug: 4.3.4(supports-color@5.5.0) dotenv: 16.0.3 - graphql: 16.8.0 - graphql-request: 6.1.0(graphql@16.8.0) + graphql: 16.8.1 + graphql-request: 6.1.0(graphql@16.8.1) http-proxy-agent: 7.0.0 - https-proxy-agent: 7.0.1 - jose: 4.14.4 + https-proxy-agent: 7.0.2 + jose: 4.15.2 js-yaml: 4.1.0 json-stable-stringify: 1.0.2 lodash: 4.17.21 @@ -5967,107 +6121,107 @@ packages: - utf-8-validate dev: true - /@graphql-tools/relay-operation-optimizer@6.5.18(graphql@16.8.0): + /@graphql-tools/relay-operation-optimizer@6.5.18(graphql@16.8.1): resolution: {integrity: sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@ardatan/relay-compiler': 12.0.0(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@ardatan/relay-compiler': 12.0.0(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-tools/relay-operation-optimizer@7.0.0(graphql@16.8.0): + /@graphql-tools/relay-operation-optimizer@7.0.0(graphql@16.8.1): resolution: {integrity: sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@ardatan/relay-compiler': 12.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@ardatan/relay-compiler': 12.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-tools/schema@10.0.0(graphql@16.8.0): + /@graphql-tools/schema@10.0.0(graphql@16.8.1): resolution: {integrity: sha512-kf3qOXMFcMs2f/S8Y3A8fm/2w+GaHAkfr3Gnhh2LOug/JgpY/ywgFVxO3jOeSpSEdoYcDKLcXVjMigNbY4AdQg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 9.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/merge': 9.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/schema@9.0.19(graphql@16.8.0): + /@graphql-tools/schema@9.0.19(graphql@16.8.1): resolution: {integrity: sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.4.2(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/merge': 8.4.2(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/stitch@8.7.50(graphql@16.8.0): + /@graphql-tools/stitch@8.7.50(graphql@16.8.1): resolution: {integrity: sha512-VB1/uZyXjj1P5Wj0c4EKX3q8Q1Maj4dy6uNwodEPaO3EHMpaJU/DqyN0Bvnhxu0ol7RzdY3kgsvsdUjU2QMImw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/batch-delegate': 8.4.27(graphql@16.8.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/executor': 0.0.20(graphql@16.8.0) - '@graphql-tools/merge': 8.4.2(graphql@16.8.0) - '@graphql-tools/schema': 9.0.19(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/batch-delegate': 8.4.27(graphql@16.8.1) + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/executor': 0.0.20(graphql@16.8.1) + '@graphql-tools/merge': 8.4.2(graphql@16.8.1) + '@graphql-tools/schema': 9.0.19(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@graphql-tools/wrap': 9.4.2(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/stitching-directives@2.3.34(graphql@16.8.0): + /@graphql-tools/stitching-directives@2.3.34(graphql@16.8.1): resolution: {integrity: sha512-DVlo1/SW9jN6jN1IL279c7voEJiEHsLbYRD7tYsAW472zrHqn0rpB6jRzZDzLOlCpm7JRWPsegXVlkqf0qvqFQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-tools/url-loader@7.17.18(@types/node@17.0.45)(graphql@16.8.0): + /@graphql-tools/url-loader@7.17.18(@types/node@17.0.45)(graphql@16.8.1): resolution: {integrity: sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/executor-graphql-ws': 0.0.14(graphql@16.8.0) - '@graphql-tools/executor-http': 0.1.10(@types/node@17.0.45)(graphql@16.8.0) - '@graphql-tools/executor-legacy-ws': 0.0.11(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.8.0) - '@types/ws': 8.5.5 + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/executor-graphql-ws': 0.0.14(graphql@16.8.1) + '@graphql-tools/executor-http': 0.1.10(@types/node@17.0.45)(graphql@16.8.1) + '@graphql-tools/executor-legacy-ws': 0.0.11(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + '@graphql-tools/wrap': 9.4.2(graphql@16.8.1) + '@types/ws': 8.5.6 '@whatwg-node/fetch': 0.8.8 - graphql: 16.8.0 - isomorphic-ws: 5.0.0(ws@8.13.0) + graphql: 16.8.1 + isomorphic-ws: 5.0.0(ws@8.14.1) tslib: 2.5.0 value-or-promise: 1.0.12 - ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.14.1 transitivePeerDependencies: - '@types/node' - bufferutil @@ -6075,22 +6229,22 @@ packages: - utf-8-validate dev: true - /@graphql-tools/url-loader@8.0.0(@types/node@17.0.45)(graphql@16.8.0): + /@graphql-tools/url-loader@8.0.0(@types/node@17.0.45)(graphql@16.8.1): resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 10.0.2(graphql@16.8.0) - '@graphql-tools/executor-graphql-ws': 1.1.0(graphql@16.8.0) - '@graphql-tools/executor-http': 1.0.2(@types/node@17.0.45)(graphql@16.8.0) - '@graphql-tools/executor-legacy-ws': 1.0.1(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.8.0) - '@types/ws': 8.5.5 - '@whatwg-node/fetch': 0.9.9 - graphql: 16.8.0 + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + '@graphql-tools/executor-graphql-ws': 1.1.0(graphql@16.8.1) + '@graphql-tools/executor-http': 1.0.2(@types/node@17.0.45)(graphql@16.8.1) + '@graphql-tools/executor-legacy-ws': 1.0.3(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) + '@types/ws': 8.5.6 + '@whatwg-node/fetch': 0.9.13 + graphql: 16.8.1 isomorphic-ws: 5.0.0(ws@8.13.0) tslib: 2.5.0 value-or-promise: 1.0.12 @@ -6102,70 +6256,70 @@ packages: - utf-8-validate dev: true - /@graphql-tools/utils@10.0.5(graphql@16.8.0): - resolution: {integrity: sha512-ZTioQqg9z9eCG3j+KDy54k1gp6wRIsLqkx5yi163KVvXVkfjsrdErCyZjrEug21QnKE9piP4tyxMpMMOT1RuRw==} + /@graphql-tools/utils@10.0.6(graphql@16.8.1): + resolution: {integrity: sha512-hZMjl/BbX10iagovakgf3IiqArx8TPsotq5pwBld37uIX1JiZoSbgbCIFol7u55bh32o6cfDEiiJgfAD5fbeyQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) dset: 3.1.2 - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-tools/utils@8.13.1(graphql@16.8.0): + /@graphql-tools/utils@8.13.1(graphql@16.8.1): resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-tools/utils@9.2.1(graphql@16.8.0): + /@graphql-tools/utils@9.2.1(graphql@16.8.1): resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 dev: true - /@graphql-tools/wrap@10.0.0(graphql@16.8.0): - resolution: {integrity: sha512-HDOeUUh6UhpiH0WPJUQl44ODt1x5pnMUbOJZ7GjTdGQ7LK0AgVt3ftaAQ9duxLkiAtYJmu5YkULirfZGj4HzDg==} + /@graphql-tools/wrap@10.0.1(graphql@16.8.1): + resolution: {integrity: sha512-Cw6hVrKGM2OKBXeuAGltgy4tzuqQE0Nt7t/uAqnuokSXZhMHXJUb124Bnvxc2gPZn5chfJSDafDe4Cp8ZAVJgg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 10.0.2(graphql@16.8.0) - '@graphql-tools/schema': 10.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + '@graphql-tools/schema': 10.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/wrap@9.4.2(graphql@16.8.0): + /@graphql-tools/wrap@9.4.2(graphql@16.8.1): resolution: {integrity: sha512-DFcd9r51lmcEKn0JW43CWkkI2D6T9XI1juW/Yo86i04v43O9w2/k4/nx2XTJv4Yv+iXwUw7Ok81PGltwGJSDSA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 9.0.35(graphql@16.8.0) - '@graphql-tools/schema': 9.0.19(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/delegate': 9.0.35(graphql@16.8.1) + '@graphql-tools/schema': 9.0.19(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-typed-document-node/core@3.2.0(graphql@16.8.0): + /@graphql-typed-document-node/core@3.2.0(graphql@16.8.1): resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.8.0 + graphql: 16.8.1 /@graphql-yoga/logger@0.0.1: resolution: {integrity: sha512-6npFz7eZz33mXgSm1waBLMjUNG0D5hTc/p5Hcs1mojkT3KsLpCOFokzTEKboNsBhKevYcaVa/xeA7WBj4UYMLg==} @@ -6197,6 +6351,14 @@ packages: dependencies: '@hapi/hoek': 9.3.0 + /@heroicons/react@2.0.18(react@18.2.0): + resolution: {integrity: sha512-7TyMjRrZZMBPa+/5Y8lN0iyvUU/01PeMGX2+RE7cQWpEUIcb4QotzUObFkJDejj/HUH4qjP/eQ0gzzKs2f+6Yw==} + peerDependencies: + react: '>= 16' + dependencies: + react: 18.2.0 + dev: false + /@hookform/resolvers@3.1.1(react-hook-form@7.43.9): resolution: {integrity: sha512-tS16bAUkqjITNSvbJuO1x7MXbn7Oe8ZziDTJdA9mMvsoYthnOOiznOTGBYwbdlYBgU+tgpI/BtTU3paRbCuSlg==} peerDependencies: @@ -6234,13 +6396,13 @@ packages: '@vue/compiler-sfc': optional: true dependencies: - '@babel/core': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 + '@babel/core': 7.23.0 + '@babel/generator': 7.21.5 + '@babel/parser': 7.21.8 + '@babel/traverse': 7.21.5(supports-color@5.5.0) + '@babel/types': 7.23.0 prettier: 2.8.4 - semver: 7.5.4 + semver: 7.5.0 transitivePeerDependencies: - supports-color dev: true @@ -6248,21 +6410,21 @@ packages: /@ipld/dag-cbor@6.0.15: resolution: {integrity: sha512-Vm3VTSTwlmGV92a3C5aeY+r2A18zbH2amehNhsX8PBa3muXICaWrN8Uri85A5hLH7D7ElhE8PdjxD6kNqUmTZA==} dependencies: - cborg: 1.10.1 + cborg: 1.10.2 multiformats: 9.9.0 dev: false /@ipld/dag-cbor@7.0.3: resolution: {integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==} dependencies: - cborg: 1.10.1 + cborg: 1.10.2 multiformats: 9.9.0 dev: false /@ipld/dag-json@8.0.11: resolution: {integrity: sha512-Pea7JXeYHTWXRTIhBqBlhw7G53PJ7yta3G/sizGEZyzdeEwhZRr0od5IQ0r2ZxOt1Do+2czddjeEPp+YTxDwCA==} dependencies: - cborg: 1.10.1 + cborg: 1.10.2 multiformats: 9.9.0 dev: false @@ -6272,11 +6434,11 @@ packages: multiformats: 9.9.0 dev: false - /@ipld/dag-pb@4.0.2: - resolution: {integrity: sha512-me9oEPb7UNPWSplUFCXyxnQE3/WlsjOljqO2RZN44XOmGkBY0/WVklbXorVE1eiv0Rt3p6dBS2x36Rq8A0Am8A==} + /@ipld/dag-pb@4.0.6: + resolution: {integrity: sha512-wOij3jfDKZsb9yjhQeHp+TQy0pu1vmUkGv324xciFFZ7xGbDfAGTQW03lSA5aJ/7HBBNYgjEE0nvHmNW1Qjfag==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: - multiformats: 11.0.2 + multiformats: 12.1.2 dev: false /@isaacs/cliui@8.0.2: @@ -6291,37 +6453,37 @@ packages: wrap-ansi-cjs: /wrap-ansi@7.0.0 dev: true - /@jest/create-cache-key-function@29.6.3: - resolution: {integrity: sha512-kzSK9XAxtD1kRPJKxsmD0YKw2fyXveP+5ikeQkCYCHeacWW1EGYMTgjDIM/Di4Uhttx7lnHwrNpz2xn+0rTp8g==} + /@jest/create-cache-key-function@29.5.0: + resolution: {integrity: sha512-LIDZyZgnZss7uikvBKBB/USWwG+GO8+GnwRWT+YkCGDGsqLQlhm9BC3z6+7+eMs1kUlvXQIWEzBR8Q2Pnvx6lg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.3 + '@jest/types': 29.5.0 - /@jest/environment@29.6.3: - resolution: {integrity: sha512-u/u3cCztYCfgBiGHsamqP5x+XvucftOGPbf5RJQxfpeC1y4AL8pCjKvPDA3oCmdhZYPgk5AE0VOD/flweR69WA==} + /@jest/environment@29.5.0: + resolution: {integrity: sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/fake-timers': 29.6.3 - '@jest/types': 29.6.3 + '@jest/fake-timers': 29.5.0 + '@jest/types': 29.5.0 '@types/node': 17.0.45 - jest-mock: 29.6.3 + jest-mock: 29.5.0 - /@jest/fake-timers@29.6.3: - resolution: {integrity: sha512-pa1wmqvbj6eX0nMvOM2VDAWvJOI5A/Mk3l8O7n7EsAh71sMZblaKO9iT4GjIj0LwwK3CP/Jp1ypEV0x3m89RvA==} + /@jest/fake-timers@29.5.0: + resolution: {integrity: sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.3 - '@sinonjs/fake-timers': 10.3.0 + '@jest/types': 29.5.0 + '@sinonjs/fake-timers': 10.0.2 '@types/node': 17.0.45 - jest-message-util: 29.6.3 - jest-mock: 29.6.3 - jest-util: 29.6.3 + jest-message-util: 29.5.0 + jest-mock: 29.5.0 + jest-util: 29.5.0 - /@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + /@jest/schemas@29.4.3: + resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@sinclair/typebox': 0.27.8 + '@sinclair/typebox': 0.25.24 /@jest/types@26.6.2: resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} @@ -6343,11 +6505,11 @@ packages: '@types/yargs': 16.0.5 chalk: 4.1.2 - /@jest/types@29.6.3: - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + /@jest/types@29.5.0: + resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/schemas': 29.6.3 + '@jest/schemas': 29.4.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 '@types/node': 17.0.45 @@ -6359,15 +6521,15 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/sourcemap-codec': 1.4.14 /@jridgewell/gen-mapping@0.3.2: resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/trace-mapping': 0.3.17 /@jridgewell/gen-mapping@0.3.3: resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} @@ -6385,8 +6547,8 @@ packages: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} - /@jridgewell/source-map@0.3.5: - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} + /@jridgewell/source-map@0.3.3: + resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==} dependencies: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.18 @@ -6456,11 +6618,11 @@ packages: '@faker-js/faker': optional: true dependencies: - '@apollo/client': 3.8.1(graphql@16.8.0)(react-dom@18.2.0)(react@18.2.0) + '@apollo/client': 3.8.5(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0) '@lens-protocol/domain': 0.10.0(ethers@5.7.2) '@lens-protocol/shared-kernel': 0.10.0(ethers@5.7.2) - graphql: 16.8.0 - graphql-tag: 2.12.6(graphql@16.8.0) + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) react: 18.2.0 tslib: 2.5.0 transitivePeerDependencies: @@ -6615,7 +6777,7 @@ packages: ethers: ^5.7.2 react: ^18.2.0 dependencies: - '@apollo/client': 3.8.1(graphql@16.8.0)(react-dom@18.2.0)(react@18.2.0) + '@apollo/client': 3.8.5(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0) '@ethersproject/abstract-signer': 5.7.0 '@ethersproject/providers': 5.7.2 '@lens-protocol/api-bindings': 0.10.0(ethers@5.7.2)(react-dom@18.2.0)(react@18.2.0) @@ -6625,12 +6787,12 @@ packages: '@lens-protocol/shared-kernel': 0.10.0(ethers@5.7.2) '@lens-protocol/storage': 0.7.4(ethers@5.7.2) ethers: 5.7.2 - graphql: 16.8.0 + graphql: 16.8.1 jwt-decode: 3.1.2 lodash: 4.17.21 react: 18.2.0 tslib: 2.5.0 - uuid: 9.0.0 + uuid: 9.0.1 zod: 3.21.4 transitivePeerDependencies: - '@ethersproject/contracts' @@ -6664,7 +6826,7 @@ packages: ethers: 5.7.2 lodash: 4.17.21 tslib: 2.5.0 - uuid: 9.0.0 + uuid: 9.0.1 dev: false /@lens-protocol/storage@0.7.4(ethers@5.7.2): @@ -6689,7 +6851,7 @@ packages: '@lens-protocol/shared-kernel': 0.10.0(ethers@5.7.2) ethers: 5.7.2 viem: 1.0.0(typescript@5.0.4)(zod@3.21.4) - wagmi: 1.3.10(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) + wagmi: 1.3.10(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) dev: false /@lit-labs/ssr-dom-shim@1.1.1: @@ -6740,7 +6902,7 @@ packages: tweetnacl: 1.0.3 tweetnacl-util: 0.13.5 util: 0.12.5 - web-vitals: 3.3.1 + web-vitals: 3.5.0 transitivePeerDependencies: - '@ethersproject/contracts' - '@ethersproject/hash' @@ -6763,7 +6925,7 @@ packages: '@lit-protocol/misc-browser': 2.1.62 '@lit-protocol/types': 2.1.62 '@lit-protocol/uint8arrays': 2.1.62 - '@walletconnect/ethereum-provider': 2.9.2(@walletconnect/modal@2.6.1) + '@walletconnect/ethereum-provider': 2.10.2(@walletconnect/modal@2.6.2)(encoding@0.1.13)(lokijs@1.5.12) ethers: 5.7.2 lit-connect-modal: 0.1.11 lit-siwe: 1.1.8(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2)(@ethersproject/wallet@5.7.0) @@ -6771,7 +6933,7 @@ packages: tweetnacl: 1.0.3 tweetnacl-util: 0.13.5 util: 0.12.5 - web-vitals: 3.3.1 + web-vitals: 3.5.0 transitivePeerDependencies: - '@ethersproject/contracts' - '@ethersproject/hash' @@ -6849,7 +7011,7 @@ packages: resolution: {integrity: sha512-VWYAQh31e5Vu6YXvw7iDQja/f2Je6Obj8VoXLweWWfSpUnKqe1JJKGDLxOAuQUT3ZSaX7bYrq7hLIJdwdWmJQw==} dev: false - /@lit-protocol/encryption@2.1.161(node-fetch@2.6.9): + /@lit-protocol/encryption@2.1.161(node-fetch@2.7.0): resolution: {integrity: sha512-O8ZiZtjzrXvBY8OuRyOviAQ1VK3Lsmh1G5qAovGwB1Za8fshGB2mTR4PBlQ7Zf2rb+qlxC7220sZ8Y20UtCd5A==} dependencies: '@lit-protocol/bls-sdk': 2.1.161 @@ -6861,7 +7023,7 @@ packages: '@lit-protocol/types': 2.1.161 '@lit-protocol/uint8arrays': 2.1.161 ethers: 5.7.2 - ipfs-http-client: 56.0.0(node-fetch@2.6.9) + ipfs-http-client: 56.0.0(node-fetch@2.7.0) jszip: 3.10.1 tslib: 2.5.0 transitivePeerDependencies: @@ -6901,7 +7063,7 @@ packages: '@lit-protocol/constants': 2.1.161 '@lit-protocol/crypto': 2.1.161 '@lit-protocol/ecdsa-sdk': 2.1.161 - '@lit-protocol/encryption': 2.1.161(node-fetch@2.6.9) + '@lit-protocol/encryption': 2.1.161(node-fetch@2.7.0) '@lit-protocol/lit-third-party-libs': 2.1.161 '@lit-protocol/misc': 2.1.161 '@lit-protocol/misc-browser': 2.1.161 @@ -6910,11 +7072,11 @@ packages: '@lit-protocol/uint8arrays': 2.1.161 blockstore-core: 3.0.0 ethers: 5.7.2 - ipfs-http-client: 56.0.0(node-fetch@2.6.9) + ipfs-http-client: 56.0.0(node-fetch@2.7.0) ipfs-unixfs-importer: 12.0.1 jszip: 3.10.1 lit-siwe: 1.1.8(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2)(@ethersproject/wallet@5.7.0) - node-fetch: 2.6.9 + node-fetch: 2.7.0(encoding@0.1.13) tslib: 2.5.0 transitivePeerDependencies: - '@ethersproject/contracts' @@ -6939,7 +7101,7 @@ packages: '@lit-protocol/constants': 2.1.161 '@lit-protocol/crypto': 2.1.161 '@lit-protocol/ecdsa-sdk': 2.1.161 - '@lit-protocol/encryption': 2.1.161(node-fetch@2.6.9) + '@lit-protocol/encryption': 2.1.161(node-fetch@2.7.0) '@lit-protocol/lit-node-client-nodejs': 2.1.161(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2)(@ethersproject/wallet@5.7.0) '@lit-protocol/lit-third-party-libs': 2.1.161 '@lit-protocol/misc': 2.1.161 @@ -6947,16 +7109,16 @@ packages: '@lit-protocol/nacl': 2.1.161 '@lit-protocol/types': 2.1.161 '@lit-protocol/uint8arrays': 2.1.161 - '@walletconnect/ethereum-provider': 2.7.0(@web3modal/standalone@2.3.7) - '@web3modal/standalone': 2.3.7(react@18.2.0) + '@walletconnect/ethereum-provider': 2.7.0(@web3modal/standalone@2.4.3) + '@web3modal/standalone': 2.4.3(react@18.2.0) blockstore-core: 3.0.0 ethers: 5.7.2 - ipfs-http-client: 56.0.0(node-fetch@2.6.9) + ipfs-http-client: 56.0.0(node-fetch@2.7.0) ipfs-unixfs-importer: 12.0.1 jszip: 3.10.1 lit-connect-modal: 0.1.11 lit-siwe: 1.1.8(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2)(@ethersproject/wallet@5.7.0) - node-fetch: 2.6.9 + node-fetch: 2.7.0(encoding@0.1.13) tslib: 2.5.0 tweetnacl: 1.0.3 tweetnacl-util: 0.15.1 @@ -7051,12 +7213,12 @@ packages: '@lit-protocol/nacl': 2.1.62 '@lit-protocol/types': 2.1.62 '@lit-protocol/uint8arrays': 2.1.62 - '@walletconnect/ethereum-provider': 2.9.2(@walletconnect/modal@2.6.1) + '@walletconnect/ethereum-provider': 2.10.2(@walletconnect/modal@2.6.2)(encoding@0.1.13)(lokijs@1.5.12) ethers: 5.7.2 jszip: 3.10.1 lit-connect-modal: 0.1.11 lit-siwe: 1.1.8(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2)(@ethersproject/wallet@5.7.0) - node-fetch: 2.6.12 + node-fetch: 2.7.0(encoding@0.1.13) tslib: 2.5.0 tweetnacl: 1.0.3 tweetnacl-util: 0.15.1 @@ -7094,46 +7256,48 @@ packages: dependencies: '@lit-labs/ssr-dom-shim': 1.1.1 - /@livepeer/core-react@1.8.0(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0): - resolution: {integrity: sha512-DRciHEJgpALO2a9gHAy75g9VpaU6yszALP/gatO3W/+x9/o6MSR5PRhFg5eMDJA8o1ua39ZlaDu0/irLHIeE8g==} + /@livepeer/core-react@1.8.8(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0): + resolution: {integrity: sha512-Ujo7tUVbU4g5vuM0OiAflUxthddPOTTVjKND0luMWn1o1o+W9D+j6+kjzT7b81kik16DDxsWb9xcNnEtfaJyxQ==} peerDependencies: react: '>=17.0.0' dependencies: - '@livepeer/core': 1.8.0(react@18.2.0) + '@livepeer/core': 1.8.8(@types/react@18.0.26)(react@18.2.0) '@tanstack/query-async-storage-persister': 4.29.23 '@tanstack/query-core': 4.29.23 - '@tanstack/react-query': 4.29.23(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0) + '@tanstack/react-query': 4.29.23(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0) '@tanstack/react-query-persist-client': 4.29.23(@tanstack/react-query@4.29.23) react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) - zustand: 4.3.9(react@18.2.0) + zustand: 4.4.3(@types/react@18.0.26)(react@18.2.0) transitivePeerDependencies: + - '@types/react' - encoding - immer - react-dom - react-native dev: false - /@livepeer/core@1.8.0(react@18.2.0): - resolution: {integrity: sha512-Sr+DplfGfhpv2Arh53tTTL9DyPEzlVAzy+eXd8+PMIlXLVOHTgGfDgpfpaeSCB8v8WlJtrgX50vFdSWyUyxi3g==} + /@livepeer/core@1.8.8(@types/react@18.0.26)(react@18.2.0): + resolution: {integrity: sha512-Aqx+H5gqkKcXKHaCKR0BDAHYvKWCae2wSRZnWiI+/ZZOpswj1Dfhcw3w3c/IPv4nBo2czICZv2cdB/wC85fzLg==} peerDependencies: react: '>=17.0.0' peerDependenciesMeta: react: optional: true dependencies: - cross-fetch: 4.0.0 + cross-fetch: 4.0.0(encoding@0.1.13) ms: 3.0.0-canary.1 multiformats: 9.9.0 react: 18.2.0 - tus-js-client: 3.1.0 - zustand: 4.3.9(react@18.2.0) + tus-js-client: 3.1.1 + zustand: 4.4.3(@types/react@18.0.26)(react@18.2.0) transitivePeerDependencies: + - '@types/react' - encoding - immer dev: false - /@livepeer/react@2.6.0(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0): + /@livepeer/react@2.6.0(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0): resolution: {integrity: sha512-CH5hpONn4eiL6Qqf3neVzduvMbEkYa9DP1wliEGTpq/rAb8kfdrKGVOeEKkx7GoIIdHNPf0GIwFIggiqu/l8yw==} peerDependencies: react: '>=17.0.0' @@ -7142,13 +7306,13 @@ packages: react-dom: optional: true dependencies: - '@livepeer/core-react': 1.8.0(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0) - '@radix-ui/react-dialog': 1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-popover': 1.0.6(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@livepeer/core-react': 1.8.8(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-select': 1.2.2(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@stitches/react': 1.2.8(react@18.2.0) - core-js: 3.31.1 - livepeer: 2.6.0(react@18.2.0) + core-js: 3.33.0 + livepeer: 2.6.0(@types/react@18.0.26)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) zustand: 4.3.8(react@18.2.0) @@ -7166,7 +7330,7 @@ packages: '@maticnetwork/maticjs': ^3.2.0 dependencies: '@maticnetwork/maticjs': 3.6.0-beta.11 - web3: 1.10.0 + web3: 1.10.2 transitivePeerDependencies: - bufferutil - encoding @@ -7180,7 +7344,7 @@ packages: '@maticnetwork/maticjs': ^3.2.0 dependencies: '@maticnetwork/maticjs': 3.6.0-beta.6 - web3: 1.10.0 + web3: 1.10.2 transitivePeerDependencies: - bufferutil - encoding @@ -7195,7 +7359,7 @@ packages: '@ethereumjs/block': 3.6.3 ethereumjs-util: 7.1.5 merkle-patricia-tree: 4.2.4 - node-fetch: 2.6.12 + node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding dev: false @@ -7207,11 +7371,21 @@ packages: '@ethereumjs/block': 3.6.3 ethereumjs-util: 7.1.5 merkle-patricia-tree: 4.2.4 - node-fetch: 2.6.12 + node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding dev: false + /@metamask/abi-utils@1.2.0: + resolution: {integrity: sha512-Hf7fnBDM9ptCPDtq/wQffWbw859CdVGMwlpWUEsTH6gLXhXONGrRXHA2piyYPRuia8YYTdJvRC/zSK1/nyLvYg==} + engines: {node: '>=14.0.0'} + dependencies: + '@metamask/utils': 3.6.0 + superstruct: 1.0.3 + transitivePeerDependencies: + - supports-color + dev: false + /@metamask/eth-sig-util@4.0.1: resolution: {integrity: sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==} engines: {node: '>=12.0.0'} @@ -7235,6 +7409,21 @@ packages: tweetnacl-util: 0.15.1 dev: false + /@metamask/eth-sig-util@6.0.1: + resolution: {integrity: sha512-Lt2DC4w4Sbtbd4DCsE+vfjdWcnFHSxfSfiJpt66hfLtAbetHsvbZcwKoa46TEA3G/V48ZuS4NWvJmtaA4F8UWA==} + engines: {node: '>=14.0.0'} + dependencies: + '@ethereumjs/util': 8.1.0 + '@metamask/abi-utils': 1.2.0 + '@metamask/utils': 5.0.2 + ethereum-cryptography: 2.1.2 + ethjs-util: 0.1.6 + tweetnacl: 1.0.3 + tweetnacl-util: 0.15.1 + transitivePeerDependencies: + - supports-color + dev: false + /@metamask/safe-event-emitter@2.0.0: resolution: {integrity: sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q==} @@ -7244,70 +7433,83 @@ packages: dependencies: '@types/debug': 4.1.7 debug: 4.3.4(supports-color@5.5.0) - semver: 7.5.4 + semver: 7.5.0 + superstruct: 1.0.3 + transitivePeerDependencies: + - supports-color + + /@metamask/utils@5.0.2: + resolution: {integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==} + engines: {node: '>=14.0.0'} + dependencies: + '@ethereumjs/tx': 4.2.0 + '@types/debug': 4.1.7 + debug: 4.3.4(supports-color@5.5.0) + semver: 7.5.0 superstruct: 1.0.3 transitivePeerDependencies: - supports-color + dev: false - /@moralisweb3/api-utils@2.22.5: - resolution: {integrity: sha512-MYQ2SaL0Ug6+uKYWUV3JTOLZTOjdPNLhW4fO5XiQwxrqvLSuoYoNzaTR9hsvvGRy/lD7ERz1Q20SYl4E/1EjqQ==} + /@moralisweb3/api-utils@2.23.1: + resolution: {integrity: sha512-sGnIWAYb6Ai8TvZX9FinXSQutfNswn7W3y2AUJUvfwu8C3K9BWepAeC0rVb5Niz69+tVLpTyn2JgkE0gJHLxpw==} dependencies: - '@moralisweb3/common-core': 2.22.5 - '@moralisweb3/common-evm-utils': 2.22.5 - axios: 1.3.4 + '@moralisweb3/common-core': 2.23.1 + '@moralisweb3/common-evm-utils': 2.23.1 + axios: 1.2.2 transitivePeerDependencies: - debug dev: false - /@moralisweb3/aptos-api@2.22.5: - resolution: {integrity: sha512-S4BnXtSjev6IEbWN1m/9N/K34RZi/LJXlEAQzRA+Q7vIn9wJEq500K1aCYfaf4YdQrTWPVokkc1E+R2FYIfheA==} + /@moralisweb3/aptos-api@2.23.1: + resolution: {integrity: sha512-hTonSWx3/5aHc8Y07hOTD7i+Uch2DITQJvvzIk/FZs1ZSs6jRKGeZKzvPm3rkz2j/tEAQTm54QsYUz5jUWW2yA==} dependencies: - '@moralisweb3/api-utils': 2.22.5 - '@moralisweb3/common-aptos-utils': 2.22.5 - '@moralisweb3/common-core': 2.22.5 + '@moralisweb3/api-utils': 2.23.1 + '@moralisweb3/common-aptos-utils': 2.23.1 + '@moralisweb3/common-core': 2.23.1 transitivePeerDependencies: - debug dev: false - /@moralisweb3/auth@2.22.5: - resolution: {integrity: sha512-+0p/yNLMJ7KHu3fdnS3iXVVW5z/TDjHiy9Diqt87XxNVcXUuMSdqhD1hS/f65ZxxdzW0SUYgcpIogmzWvEL8ZA==} + /@moralisweb3/auth@2.23.1: + resolution: {integrity: sha512-ameLuy4RjM+nDILFguCMToUUDoN7C0om8bt2G81p447YvutH/BsY8YKmwoRQiuyMKWB8z1uiYCB5M6/kFNvADg==} dependencies: - '@moralisweb3/api-utils': 2.22.5 - '@moralisweb3/common-aptos-utils': 2.22.5 - '@moralisweb3/common-auth-utils': 2.22.5 - '@moralisweb3/common-core': 2.22.5 - '@moralisweb3/common-evm-utils': 2.22.5 - '@moralisweb3/common-sol-utils': 2.22.5 + '@moralisweb3/api-utils': 2.23.1 + '@moralisweb3/common-aptos-utils': 2.23.1 + '@moralisweb3/common-auth-utils': 2.23.1 + '@moralisweb3/common-core': 2.23.1 + '@moralisweb3/common-evm-utils': 2.23.1 + '@moralisweb3/common-sol-utils': 2.23.1 transitivePeerDependencies: - debug dev: false - /@moralisweb3/common-aptos-utils@2.22.5: - resolution: {integrity: sha512-m2K06yHze0UtAquct7UYVmYguvkPQ9LlNHRflTN5w89+UcJTw1VIH/mP1vArDidOxV6jiZKUgf8PS7WsPPZSyg==} + /@moralisweb3/common-aptos-utils@2.23.1: + resolution: {integrity: sha512-tgADpWxe8TvPEzEBCi8dmCgsN2RkskoIdKEiuuyas4rIAzF/pWdB6AVoSb1RXFhe7rDYU7Ar/AKl10IM0TO+MQ==} dependencies: - '@moralisweb3/common-core': 2.22.5 - '@noble/hashes': 1.3.0 + '@moralisweb3/common-core': 2.23.1 + '@noble/hashes': 1.3.1 transitivePeerDependencies: - debug dev: false - /@moralisweb3/common-auth-utils@2.22.5: - resolution: {integrity: sha512-UEasn8EutGCPKSXqBADTFCyyImt38VLwLFyaPXwpJFwHoaYWOidBIK2uMdrBKIBZoFliRjcjNCW21NPwwFgTWw==} + /@moralisweb3/common-auth-utils@2.23.1: + resolution: {integrity: sha512-yWn/hKVeqhCrNIssoncXnf84jmNoiisRPZC+AD6Z61FG7p7NTpPXw7sWbIcyy9t5HDq9ymesiID95Rm2JSlsIA==} dependencies: '@ethersproject/abi': 5.7.0 - '@moralisweb3/common-aptos-utils': 2.22.5 - '@moralisweb3/common-core': 2.22.5 - '@moralisweb3/common-evm-utils': 2.22.5 - '@moralisweb3/common-sol-utils': 2.22.5 + '@moralisweb3/common-aptos-utils': 2.23.1 + '@moralisweb3/common-core': 2.23.1 + '@moralisweb3/common-evm-utils': 2.23.1 + '@moralisweb3/common-sol-utils': 2.23.1 '@moralisweb3/streams-typings': 1.0.7 transitivePeerDependencies: - debug dev: false - /@moralisweb3/common-core@2.22.5: - resolution: {integrity: sha512-T0ndBY2JFRps3p2NT0YaMa7HGnVNNvyfETaEb+f2Ejecn9hThNDkVoffR9mX1grjZGO39Xi1+XnnstUoPqahXQ==} + /@moralisweb3/common-core@2.23.1: + resolution: {integrity: sha512-lU917PxTU37YBrNfzJ2IXCTz2sL8NsE6bXF1ucxdl2yDi1YaS+9tPE9vXnxuVOmNQKfcxb09PyNsv0tt/sUhxA==} dependencies: - axios: 1.3.4 + axios: 1.2.2 transitivePeerDependencies: - debug dev: false @@ -7318,26 +7520,26 @@ packages: '@ethersproject/address': 5.7.0 '@ethersproject/bytes': 5.7.0 '@ethersproject/transactions': 5.7.0 - '@moralisweb3/common-core': 2.22.5 + '@moralisweb3/common-core': 2.23.1 transitivePeerDependencies: - debug dev: false - /@moralisweb3/common-evm-utils@2.22.5: - resolution: {integrity: sha512-rkbIIN5CIepVHkhnBdIN1HDGR/TPGuFzCrhMDvbU/J4f+/KDNMDgPVoDQriAworm7TG7dmAbGulk7bwcgiUuAw==} + /@moralisweb3/common-evm-utils@2.23.1: + resolution: {integrity: sha512-otjWXVgqbKPz9aXENF94wT177zBv46W+W6FsQhNRKIP96Da44Cfh7/ZiufdPrfCP0OCDxDKw++oKch//EDruXg==} dependencies: '@ethersproject/address': 5.7.0 '@ethersproject/bytes': 5.7.0 '@ethersproject/transactions': 5.7.0 - '@moralisweb3/common-core': 2.22.5 + '@moralisweb3/common-core': 2.23.1 transitivePeerDependencies: - debug dev: false - /@moralisweb3/common-sol-utils@2.22.5: - resolution: {integrity: sha512-0TC/w9lAXjGRF8GIZVjWpLevDc5Mf0o7pjnnF4PG/h/bFPSfJbhuzRaRs5RoOzWKobawYnF3wzUNGeeTolf/0A==} + /@moralisweb3/common-sol-utils@2.23.1: + resolution: {integrity: sha512-wOz62p1QqxlOf6T6LYlOx7VWZzPY36fcGqys3YUAe55WhUcPT5TZ4nV8JjeQ7hpDDnUvULUo2xFIrtWNeytr/A==} dependencies: - '@moralisweb3/common-core': 2.22.5 + '@moralisweb3/common-core': 2.23.1 bn.js: 5.2.1 bs58: 5.0.0 buffer: 6.0.3 @@ -7345,34 +7547,34 @@ packages: - debug dev: false - /@moralisweb3/common-streams-utils@2.22.5: - resolution: {integrity: sha512-BxUqZzddSfBY2R4ERRumXXEPomd7AWPjOmzRoRkb7Wh5PNiGmzz2aT8o0VzpYNP/xoX6FYyad1Qq4XjQsbxuow==} + /@moralisweb3/common-streams-utils@2.23.1: + resolution: {integrity: sha512-9utNwszW/6P8D0M7lcbvg/Up9SUvv1ckHC62IqkNPa7XKvB0W/DjE3WUfrkgE2cldIAbbkZVB4SS/8tt/klWtw==} dependencies: '@ethersproject/abi': 5.7.0 - '@moralisweb3/common-aptos-utils': 2.22.5 - '@moralisweb3/common-core': 2.22.5 - '@moralisweb3/common-evm-utils': 2.22.5 + '@moralisweb3/common-aptos-utils': 2.23.1 + '@moralisweb3/common-core': 2.23.1 + '@moralisweb3/common-evm-utils': 2.23.1 '@moralisweb3/streams-typings': 1.0.7 transitivePeerDependencies: - debug dev: false - /@moralisweb3/evm-api@2.22.5: - resolution: {integrity: sha512-0JYnNTOj6+ZqopnotwhUAuumk+V03rkXAHULDyOsK1MMHyKtK1LktFd2J0Ex0Hmv7nYAJBnTqvkWWBqjD/SvGw==} + /@moralisweb3/evm-api@2.23.1: + resolution: {integrity: sha512-8I61bbNgEpGbH8WskTx0yG1wBdA2sP8owbVULue7A4/U1QmM1LVUWyLq5Mlv0vq4prXGPkb3rl/bBnnH7Zgueg==} dependencies: - '@moralisweb3/api-utils': 2.22.5 - '@moralisweb3/common-core': 2.22.5 - '@moralisweb3/common-evm-utils': 2.22.5 + '@moralisweb3/api-utils': 2.23.1 + '@moralisweb3/common-core': 2.23.1 + '@moralisweb3/common-evm-utils': 2.23.1 transitivePeerDependencies: - debug dev: false - /@moralisweb3/sol-api@2.22.5: - resolution: {integrity: sha512-V9QvRk77LZUUrfn3z8RtYOIWPIkY9MC40b15V0Oe5w/tij1IdQf9cLWWQdecWYvRrYaDVjS/l3DlFidUwc1XLQ==} + /@moralisweb3/sol-api@2.23.1: + resolution: {integrity: sha512-ksC3tBnvjTW25hT8okPohm80uUn9E73t0Cr0zjMiTTH+wyKoiwa7ae5AHdreT9XphIhSKp48nZ91nVtREntK3A==} dependencies: - '@moralisweb3/api-utils': 2.22.5 - '@moralisweb3/common-core': 2.22.5 - '@moralisweb3/common-sol-utils': 2.22.5 + '@moralisweb3/api-utils': 2.23.1 + '@moralisweb3/common-core': 2.23.1 + '@moralisweb3/common-sol-utils': 2.23.1 transitivePeerDependencies: - debug dev: false @@ -7381,20 +7583,20 @@ packages: resolution: {integrity: sha512-ShbVqil0KLOTyTjO6z9JewPcVVE3S6kzkQFnW2flGBRsGdKucpkUdOx1HijOLoaikz/9gH92n+lzTvRFIj0AoA==} dev: false - /@moralisweb3/streams@2.22.5: - resolution: {integrity: sha512-1ICcxRZabmWVL5wHMQubxEVBMgvfyQtCLk2eGCQHkICye6KU+sbUH3zg+PBrCSPqK8aZ+h+fcf4i5xdHufOS0w==} + /@moralisweb3/streams@2.23.1: + resolution: {integrity: sha512-lEMrqUU0rY6dUYG5+Ef1i1vlFyerBDvgiYqjvipJ/CIO1K3hlk3q6KaxZT70+sTisn1z4nO7mSF6zznlp9rBaQ==} dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/bignumber': 5.7.0 '@ethersproject/sha2': 5.7.0 '@ethersproject/strings': 5.7.0 - '@moralisweb3/api-utils': 2.22.5 - '@moralisweb3/common-core': 2.22.5 - '@moralisweb3/common-evm-utils': 2.22.5 - '@moralisweb3/common-streams-utils': 2.22.5 + '@moralisweb3/api-utils': 2.23.1 + '@moralisweb3/common-core': 2.23.1 + '@moralisweb3/common-evm-utils': 2.23.1 + '@moralisweb3/common-streams-utils': 2.23.1 '@moralisweb3/streams-typings': 1.0.7 ethereumjs-util: 7.1.5 - web3-eth-abi: 1.10.0 + web3-eth-abi: 1.10.2 transitivePeerDependencies: - debug dev: false @@ -7441,13 +7643,6 @@ packages: '@motionone/utils': 10.15.1 tslib: 2.5.0 - /@motionone/svelte@10.15.5: - resolution: {integrity: sha512-Xyxtgp7BlVnSBwcoFmXGHUVnpNktzeXsEifu2NJJWc7VGuxutDsBZxNdz80qvpLIC5MeBa1wh7GGegZzTm1msg==} - dependencies: - '@motionone/dom': 10.15.5 - tslib: 2.5.0 - dev: false - /@motionone/svelte@10.16.2: resolution: {integrity: sha512-38xsroKrfK+aHYhuQlE6eFcGy0EwrB43Q7RGjF73j/kRUTcLNu/LAaKiLLsN5lyqVzCgTBVt4TMT/ShWbTbc5Q==} dependencies: @@ -7464,24 +7659,17 @@ packages: hey-listen: 1.0.8 tslib: 2.5.0 - /@motionone/vue@10.15.5: - resolution: {integrity: sha512-cUENrLYAolUacHvCgU+8wF9OgSlVutfWbHMLERI/bElCJ+e2YVQvG/CpGhIM5fYOOJzuvg2T2wHmLLmvJoavEw==} - dependencies: - '@motionone/dom': 10.15.5 - tslib: 2.5.0 - dev: false - /@motionone/vue@10.16.2: resolution: {integrity: sha512-7/dEK/nWQXOkJ70bqb2KyNfSWbNvWqKKq1C8juj+0Mg/AorgD8O5wE3naddK0G+aXuNMqRuc4jlsYHHWHtIzVw==} dependencies: '@motionone/dom': 10.16.2 tslib: 2.5.0 - /@multiformats/murmur3@2.1.3: - resolution: {integrity: sha512-YvLK1IrLnRckPsvXhOkZjaIGNonsEdD1dL3NPSaLilV/WjVYeBgnNZXTUsaPzFXGrIFM7motx+yCmmqzXO6gtQ==} + /@multiformats/murmur3@2.1.7: + resolution: {integrity: sha512-Yf0UpAaONjed+8PTt5NM/GG4Z4Ai4m1qfT7bqevjnkwRQ12K+0jxtRomirz+VJx4PokpA2St1ZSD1iMkZTqPRQ==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: - multiformats: 11.0.2 + multiformats: 12.1.2 murmurhash3js-revisited: 3.0.0 dev: false @@ -7600,6 +7788,7 @@ packages: /@noble/hashes@1.3.1: resolution: {integrity: sha512-EbqwksQwz9xDRGfDST86whPBgM65E0OH/pCgqW0GBVzO22bNE+NuIbeTb714+IfSjU3aRk47EUvXIb5bTsenKA==} engines: {node: '>= 16'} + dev: false /@noble/secp256k1@1.7.1: resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} @@ -7622,15 +7811,15 @@ packages: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 - /@nomicfoundation/ethereumjs-block@5.0.1: - resolution: {integrity: sha512-u1Yioemi6Ckj3xspygu/SfFvm8vZEO8/Yx5a1QLzi6nVU0jz3Pg2OmHKJ5w+D9Ogk1vhwRiqEBAqcb0GVhCyHw==} + /@nomicfoundation/ethereumjs-block@5.0.2: + resolution: {integrity: sha512-hSe6CuHI4SsSiWWjHDIzWhSiAVpzMUcDRpWYzN0T9l8/Rz7xNn3elwVOJ/tAyS0LqL6vitUD78Uk7lQDXZun7Q==} engines: {node: '>=14'} dependencies: - '@nomicfoundation/ethereumjs-common': 4.0.1 - '@nomicfoundation/ethereumjs-rlp': 5.0.1 - '@nomicfoundation/ethereumjs-trie': 6.0.1 - '@nomicfoundation/ethereumjs-tx': 5.0.1 - '@nomicfoundation/ethereumjs-util': 9.0.1 + '@nomicfoundation/ethereumjs-common': 4.0.2 + '@nomicfoundation/ethereumjs-rlp': 5.0.2 + '@nomicfoundation/ethereumjs-trie': 6.0.2 + '@nomicfoundation/ethereumjs-tx': 5.0.2 + '@nomicfoundation/ethereumjs-util': 9.0.2 ethereum-cryptography: 0.1.3 ethers: 5.7.2 transitivePeerDependencies: @@ -7638,17 +7827,17 @@ packages: - utf-8-validate dev: false - /@nomicfoundation/ethereumjs-blockchain@7.0.1: - resolution: {integrity: sha512-NhzndlGg829XXbqJEYrF1VeZhAwSPgsK/OB7TVrdzft3y918hW5KNd7gIZ85sn6peDZOdjBsAXIpXZ38oBYE5A==} + /@nomicfoundation/ethereumjs-blockchain@7.0.2: + resolution: {integrity: sha512-8UUsSXJs+MFfIIAKdh3cG16iNmWzWC/91P40sazNvrqhhdR/RtGDlFk2iFTGbBAZPs2+klZVzhRX8m2wvuvz3w==} engines: {node: '>=14'} dependencies: - '@nomicfoundation/ethereumjs-block': 5.0.1 - '@nomicfoundation/ethereumjs-common': 4.0.1 - '@nomicfoundation/ethereumjs-ethash': 3.0.1 - '@nomicfoundation/ethereumjs-rlp': 5.0.1 - '@nomicfoundation/ethereumjs-trie': 6.0.1 - '@nomicfoundation/ethereumjs-tx': 5.0.1 - '@nomicfoundation/ethereumjs-util': 9.0.1 + '@nomicfoundation/ethereumjs-block': 5.0.2 + '@nomicfoundation/ethereumjs-common': 4.0.2 + '@nomicfoundation/ethereumjs-ethash': 3.0.2 + '@nomicfoundation/ethereumjs-rlp': 5.0.2 + '@nomicfoundation/ethereumjs-trie': 6.0.2 + '@nomicfoundation/ethereumjs-tx': 5.0.2 + '@nomicfoundation/ethereumjs-util': 9.0.2 abstract-level: 1.0.3 debug: 4.3.4(supports-color@5.5.0) ethereum-cryptography: 0.1.3 @@ -7661,20 +7850,20 @@ packages: - utf-8-validate dev: false - /@nomicfoundation/ethereumjs-common@4.0.1: - resolution: {integrity: sha512-OBErlkfp54GpeiE06brBW/TTbtbuBJV5YI5Nz/aB2evTDo+KawyEzPjBlSr84z/8MFfj8wS2wxzQX1o32cev5g==} + /@nomicfoundation/ethereumjs-common@4.0.2: + resolution: {integrity: sha512-I2WGP3HMGsOoycSdOTSqIaES0ughQTueOsddJ36aYVpI3SN8YSusgRFLwzDJwRFVIYDKx/iJz0sQ5kBHVgdDwg==} dependencies: - '@nomicfoundation/ethereumjs-util': 9.0.1 + '@nomicfoundation/ethereumjs-util': 9.0.2 crc-32: 1.2.2 dev: false - /@nomicfoundation/ethereumjs-ethash@3.0.1: - resolution: {integrity: sha512-KDjGIB5igzWOp8Ik5I6QiRH5DH+XgILlplsHR7TEuWANZA759G6krQ6o8bvj+tRUz08YygMQu/sGd9mJ1DYT8w==} + /@nomicfoundation/ethereumjs-ethash@3.0.2: + resolution: {integrity: sha512-8PfoOQCcIcO9Pylq0Buijuq/O73tmMVURK0OqdjhwqcGHYC2PwhbajDh7GZ55ekB0Px197ajK3PQhpKoiI/UPg==} engines: {node: '>=14'} dependencies: - '@nomicfoundation/ethereumjs-block': 5.0.1 - '@nomicfoundation/ethereumjs-rlp': 5.0.1 - '@nomicfoundation/ethereumjs-util': 9.0.1 + '@nomicfoundation/ethereumjs-block': 5.0.2 + '@nomicfoundation/ethereumjs-rlp': 5.0.2 + '@nomicfoundation/ethereumjs-util': 9.0.2 abstract-level: 1.0.3 bigint-crypto-utils: 3.3.0 ethereum-cryptography: 0.1.3 @@ -7683,14 +7872,14 @@ packages: - utf-8-validate dev: false - /@nomicfoundation/ethereumjs-evm@2.0.1: - resolution: {integrity: sha512-oL8vJcnk0Bx/onl+TgQOQ1t/534GKFaEG17fZmwtPFeH8S5soiBYPCLUrvANOl4sCp9elYxIMzIiTtMtNNN8EQ==} + /@nomicfoundation/ethereumjs-evm@2.0.2: + resolution: {integrity: sha512-rBLcUaUfANJxyOx9HIdMX6uXGin6lANCulIm/pjMgRqfiCRMZie3WKYxTSd8ZE/d+qT+zTedBF4+VHTdTSePmQ==} engines: {node: '>=14'} dependencies: '@ethersproject/providers': 5.7.2 - '@nomicfoundation/ethereumjs-common': 4.0.1 - '@nomicfoundation/ethereumjs-tx': 5.0.1 - '@nomicfoundation/ethereumjs-util': 9.0.1 + '@nomicfoundation/ethereumjs-common': 4.0.2 + '@nomicfoundation/ethereumjs-tx': 5.0.2 + '@nomicfoundation/ethereumjs-util': 9.0.2 debug: 4.3.4(supports-color@5.5.0) ethereum-cryptography: 0.1.3 mcl-wasm: 0.7.9 @@ -7701,17 +7890,17 @@ packages: - utf-8-validate dev: false - /@nomicfoundation/ethereumjs-rlp@5.0.1: - resolution: {integrity: sha512-xtxrMGa8kP4zF5ApBQBtjlSbN5E2HI8m8FYgVSYAnO6ssUoY5pVPGy2H8+xdf/bmMa22Ce8nWMH3aEW8CcqMeQ==} + /@nomicfoundation/ethereumjs-rlp@5.0.2: + resolution: {integrity: sha512-QwmemBc+MMsHJ1P1QvPl8R8p2aPvvVcKBbvHnQOKBpBztEo0omN0eaob6FeZS/e3y9NSe+mfu3nNFBHszqkjTA==} engines: {node: '>=14'} hasBin: true dev: false - /@nomicfoundation/ethereumjs-statemanager@2.0.1: - resolution: {integrity: sha512-B5ApMOnlruVOR7gisBaYwFX+L/AP7i/2oAahatssjPIBVDF6wTX1K7Qpa39E/nzsH8iYuL3krkYeUFIdO3EMUQ==} + /@nomicfoundation/ethereumjs-statemanager@2.0.2: + resolution: {integrity: sha512-dlKy5dIXLuDubx8Z74sipciZnJTRSV/uHG48RSijhgm1V7eXYFC567xgKtsKiVZB1ViTP9iFL4B6Je0xD6X2OA==} dependencies: - '@nomicfoundation/ethereumjs-common': 4.0.1 - '@nomicfoundation/ethereumjs-rlp': 5.0.1 + '@nomicfoundation/ethereumjs-common': 4.0.2 + '@nomicfoundation/ethereumjs-rlp': 5.0.2 debug: 4.3.4(supports-color@5.5.0) ethereum-cryptography: 0.1.3 ethers: 5.7.2 @@ -7722,54 +7911,54 @@ packages: - utf-8-validate dev: false - /@nomicfoundation/ethereumjs-trie@6.0.1: - resolution: {integrity: sha512-A64It/IMpDVODzCgxDgAAla8jNjNtsoQZIzZUfIV5AY6Coi4nvn7+VReBn5itlxMiL2yaTlQr9TRWp3CSI6VoA==} + /@nomicfoundation/ethereumjs-trie@6.0.2: + resolution: {integrity: sha512-yw8vg9hBeLYk4YNg5MrSJ5H55TLOv2FSWUTROtDtTMMmDGROsAu+0tBjiNGTnKRi400M6cEzoFfa89Fc5k8NTQ==} engines: {node: '>=14'} dependencies: - '@nomicfoundation/ethereumjs-rlp': 5.0.1 - '@nomicfoundation/ethereumjs-util': 9.0.1 + '@nomicfoundation/ethereumjs-rlp': 5.0.2 + '@nomicfoundation/ethereumjs-util': 9.0.2 '@types/readable-stream': 2.3.15 ethereum-cryptography: 0.1.3 readable-stream: 3.6.2 dev: false - /@nomicfoundation/ethereumjs-tx@5.0.1: - resolution: {integrity: sha512-0HwxUF2u2hrsIM1fsasjXvlbDOq1ZHFV2dd1yGq8CA+MEYhaxZr8OTScpVkkxqMwBcc5y83FyPl0J9MZn3kY0w==} + /@nomicfoundation/ethereumjs-tx@5.0.2: + resolution: {integrity: sha512-T+l4/MmTp7VhJeNloMkM+lPU3YMUaXdcXgTGCf8+ZFvV9NYZTRLFekRwlG6/JMmVfIfbrW+dRRJ9A6H5Q/Z64g==} engines: {node: '>=14'} dependencies: '@chainsafe/ssz': 0.9.4 '@ethersproject/providers': 5.7.2 - '@nomicfoundation/ethereumjs-common': 4.0.1 - '@nomicfoundation/ethereumjs-rlp': 5.0.1 - '@nomicfoundation/ethereumjs-util': 9.0.1 + '@nomicfoundation/ethereumjs-common': 4.0.2 + '@nomicfoundation/ethereumjs-rlp': 5.0.2 + '@nomicfoundation/ethereumjs-util': 9.0.2 ethereum-cryptography: 0.1.3 transitivePeerDependencies: - bufferutil - utf-8-validate dev: false - /@nomicfoundation/ethereumjs-util@9.0.1: - resolution: {integrity: sha512-TwbhOWQ8QoSCFhV/DDfSmyfFIHjPjFBj957219+V3jTZYZ2rf9PmDtNOeZWAE3p3vlp8xb02XGpd0v6nTUPbsA==} + /@nomicfoundation/ethereumjs-util@9.0.2: + resolution: {integrity: sha512-4Wu9D3LykbSBWZo8nJCnzVIYGvGCuyiYLIJa9XXNVt1q1jUzHdB+sJvx95VGCpPkCT+IbLecW6yfzy3E1bQrwQ==} engines: {node: '>=14'} dependencies: '@chainsafe/ssz': 0.10.2 - '@nomicfoundation/ethereumjs-rlp': 5.0.1 + '@nomicfoundation/ethereumjs-rlp': 5.0.2 ethereum-cryptography: 0.1.3 dev: false - /@nomicfoundation/ethereumjs-vm@7.0.1: - resolution: {integrity: sha512-rArhyn0jPsS/D+ApFsz3yVJMQ29+pVzNZ0VJgkzAZ+7FqXSRtThl1C1prhmlVr3YNUlfpZ69Ak+RUT4g7VoOuQ==} + /@nomicfoundation/ethereumjs-vm@7.0.2: + resolution: {integrity: sha512-Bj3KZT64j54Tcwr7Qm/0jkeZXJMfdcAtRBedou+Hx0dPOSIgqaIr0vvLwP65TpHbak2DmAq+KJbW2KNtIoFwvA==} engines: {node: '>=14'} dependencies: - '@nomicfoundation/ethereumjs-block': 5.0.1 - '@nomicfoundation/ethereumjs-blockchain': 7.0.1 - '@nomicfoundation/ethereumjs-common': 4.0.1 - '@nomicfoundation/ethereumjs-evm': 2.0.1 - '@nomicfoundation/ethereumjs-rlp': 5.0.1 - '@nomicfoundation/ethereumjs-statemanager': 2.0.1 - '@nomicfoundation/ethereumjs-trie': 6.0.1 - '@nomicfoundation/ethereumjs-tx': 5.0.1 - '@nomicfoundation/ethereumjs-util': 9.0.1 + '@nomicfoundation/ethereumjs-block': 5.0.2 + '@nomicfoundation/ethereumjs-blockchain': 7.0.2 + '@nomicfoundation/ethereumjs-common': 4.0.2 + '@nomicfoundation/ethereumjs-evm': 2.0.2 + '@nomicfoundation/ethereumjs-rlp': 5.0.2 + '@nomicfoundation/ethereumjs-statemanager': 2.0.2 + '@nomicfoundation/ethereumjs-trie': 6.0.2 + '@nomicfoundation/ethereumjs-tx': 5.0.2 + '@nomicfoundation/ethereumjs-util': 9.0.2 debug: 4.3.4(supports-color@5.5.0) ethereum-cryptography: 0.1.3 mcl-wasm: 0.7.9 @@ -7962,6 +8151,77 @@ packages: resolution: {integrity: sha512-0AEBi2HXGV02cf6ASsBPhfsVIbVSDC9nbQed4iiY5eHttW9ZtMxHThuKZE1pnESbr8HRdgmFSa/Kn4OSNYuibg==} requiresBuild: true + /@privy-io/react-auth@1.43.2(@babel/core@7.18.5)(@types/react@18.0.26)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-htGEMRT9ZhXDUuM/EXRfjaJ7Qv3A2PFPkTrvNGiXMa2JPPGzORA5r2w42LwPwsPdQDzSFHNUEmeYd8Coo5AeJg==} + peerDependencies: + react: ^18 + react-dom: ^18 + dependencies: + '@coinbase/wallet-sdk': 3.8.0-beta.3(encoding@0.1.13) + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/providers': 5.7.2 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/units': 5.7.0 + '@heroicons/react': 2.0.18(react@18.2.0) + '@metamask/eth-sig-util': 6.0.1 + '@walletconnect/ethereum-provider': 2.10.2(@walletconnect/modal@2.6.2)(encoding@0.1.13)(lokijs@1.5.12) + '@walletconnect/modal': 2.6.2(@types/react@18.0.26)(react@18.2.0) + '@walletconnect/qrcode-modal': 1.8.0 + base64-js: 1.5.1 + body-scroll-lock: 4.0.0-beta.0 + dotenv: 16.0.3 + encoding: 0.1.13 + eventemitter3: 5.0.1 + fast-password-entropy: 1.1.1 + jose: 4.15.2 + js-cookie: 3.0.5 + libphonenumber-js: 1.10.47 + lokijs: 1.5.12 + md5: 2.3.0 + ofetch: 1.3.3 + pino-pretty: 10.2.3 + qrcode: 1.5.3 + react: 18.2.0 + react-device-detect: 2.2.3(react-dom@18.2.0)(react@18.2.0) + react-dom: 18.2.0(react@18.2.0) + secure-password-utilities: 0.2.1 + styled-components: 5.3.11(@babel/core@7.18.5)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + tinycolor2: 1.6.0 + uuid: 8.3.2 + web3-core: 1.10.2(encoding@0.1.13) + web3-core-helpers: 1.10.0 + wicg-inert: 3.1.2 + transitivePeerDependencies: + - '@babel/core' + - '@react-native-async-storage/async-storage' + - '@types/react' + - bufferutil + - react-is + - supports-color + - utf-8-validate + dev: false + + /@privy-io/wagmi-connector@0.1.4(@privy-io/react-auth@1.43.2)(react-dom@18.2.0)(react@18.2.0)(viem@1.0.0)(wagmi@1.3.10): + resolution: {integrity: sha512-0UNLfFw6Py6oSxsil4k9HJ/fMq4n3GP1mI2TP3zTBZnTIA8y029PYvvq8n0g54jdRtZxX9MtzYDtOEMslOuKug==} + peerDependencies: + '@privy-io/react-auth': ^1.33.0 + react: ^18 + react-dom: ^18 + viem: '>=0.3.35' + wagmi: '>=1 <2' + dependencies: + '@privy-io/react-auth': 1.43.2(@babel/core@7.18.5)(@types/react@18.0.26)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + viem: 1.0.0(typescript@5.0.4)(zod@3.21.4) + wagmi: 1.3.10(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) + dev: false + /@protobufjs/aspromise@1.1.2: resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} dev: false @@ -8015,11 +8275,11 @@ packages: buffer: 6.0.3 crypto-js: 4.1.1 ethers: 5.7.2 - immer: 10.0.2 - openpgp: 5.9.0 + immer: 10.0.3 + openpgp: 5.10.2 simple-peer: 9.11.1 tslib: 2.5.0 - uuid: 9.0.0 + uuid: 9.0.1 transitivePeerDependencies: - debug - supports-color @@ -8061,7 +8321,7 @@ packages: /@radix-ui/number@1.0.0: resolution: {integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 dev: false /@radix-ui/number@1.0.1: @@ -8073,7 +8333,7 @@ packages: /@radix-ui/primitive@1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 dev: false /@radix-ui/primitive@1.0.1: @@ -8082,6 +8342,18 @@ packages: '@babel/runtime': 7.21.5 dev: false + /@radix-ui/react-accessible-icon@1.0.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-YcZBOOB1xdbVVBK0sQzrpU4kABloQGfjKdp60mmFFq7oIKcWuH7d+auYS63vZMZH1rAijU6TFLawt2hLoPZWfA==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.0 + '@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + /@radix-ui/react-accordion@1.1.1(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-TQtyyRubYe8DD6DYCovNLTjd2D+TFrNCpr99T5M3cYUbR7BsRxWsxfInjbQ1nHsdy2uPTcnJS5npyXPVfP0piw==} peerDependencies: @@ -8213,7 +8485,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-context': 1.0.0(react@18.2.0) '@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0) @@ -8251,7 +8523,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 react: 18.2.0 dev: false @@ -8293,7 +8565,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 react: 18.2.0 dev: false @@ -8338,8 +8610,8 @@ packages: - '@types/react' dev: false - /@radix-ui/react-dialog@1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-hJtRy/jPULGQZceSAP2Re6/4NpKo8im6V8P2hUqZsdFiSL8l35kYsw3qbRI6Ay5mQd2+wlLqje770eq+RJ3yZg==} + /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -8355,11 +8627,11 @@ packages: '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.26)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.0.26)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.26)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-id': 1.0.1(@types/react@18.0.26)(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-slot': 1.0.2(@types/react@18.0.26)(react@18.2.0) @@ -8377,7 +8649,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 react: 18.2.0 dev: false @@ -8436,6 +8708,31 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false + /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.21.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.0.26)(react@18.2.0) + '@types/react': 18.0.26 + '@types/react-dom': 18.0.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + /@radix-ui/react-dropdown-menu@2.0.4(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-y6AT9+MydyXcByivdK1+QpjWoKaC7MLjkS/cH1Q3keEyMvDkiY85m8o2Bi6+Z1PPUlCsMULopxagQOSfN0wahg==} peerDependencies: @@ -8516,13 +8813,36 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false + /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.21.5 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@types/react': 18.0.26 + '@types/react-dom': 18.0.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + /@radix-ui/react-form@0.0.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-+WQU4Gs4MqjYsHwh5d19Ka4CMcWeXd7WPuWYCYGtNbDRMHFG2TtgM9PlEK4Yrk7wG1f5/da6Bgtteky2ggDXUg==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.21.5 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-context': 1.0.0(react@18.2.0) @@ -8538,7 +8858,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -8576,7 +8896,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) @@ -8654,8 +8974,8 @@ packages: - '@types/react' dev: false - /@radix-ui/react-popover@1.0.6(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==} + /@radix-ui/react-popover@1.0.7(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -8671,12 +8991,12 @@ packages: '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.26)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.0.26)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.26)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-id': 1.0.1(@types/react@18.0.26)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-slot': 1.0.2(@types/react@18.0.26)(react@18.2.0) @@ -8726,7 +9046,37 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.5 - '@floating-ui/react-dom': 2.0.1(react-dom@18.2.0)(react@18.2.0) + '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.0.26)(react@18.2.0) + '@radix-ui/rect': 1.0.1 + '@types/react': 18.0.26 + '@types/react-dom': 18.0.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@radix-ui/react-popper@1.1.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.21.5 + '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.26)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.0.26)(react@18.2.0) @@ -8775,13 +9125,34 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false + /@radix-ui/react-portal@1.0.4(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.21.5 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@18.0.26)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.0.26 + '@types/react-dom': 18.0.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + /@radix-ui/react-presence@1.0.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) react: 18.2.0 @@ -8816,7 +9187,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 '@radix-ui/react-slot': 1.0.1(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -8862,7 +9233,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) @@ -9098,7 +9469,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 react: 18.2.0 dev: false @@ -9121,7 +9492,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -9171,7 +9542,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 react: 18.2.0 dev: false @@ -9194,7 +9565,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 react: 18.2.0 dev: false @@ -9242,7 +9613,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -9268,7 +9639,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.21.0 '@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -9325,111 +9696,131 @@ packages: react-dom: 18.2.0(react@18.2.0) react-remove-scroll: 2.5.4(@types/react@18.0.26)(react@18.2.0) viem: 1.0.0(typescript@5.0.4)(zod@3.21.4) - wagmi: 1.3.10(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) + wagmi: 1.3.10(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) transitivePeerDependencies: - '@types/react' dev: false - /@react-native-community/cli-clean@11.3.6: - resolution: {integrity: sha512-jOOaeG5ebSXTHweq1NznVJVAFKtTFWL4lWgUXl845bCGX7t1lL8xQNWHKwT8Oh1pGR2CI3cKmRjY4hBg+pEI9g==} + /@react-native-community/cli-clean@10.1.1: + resolution: {integrity: sha512-iNsrjzjIRv9yb5y309SWJ8NDHdwYtnCpmxZouQDyOljUdC9MwdZ4ChbtA4rwQyAwgOVfS9F/j56ML3Cslmvrxg==} dependencies: - '@react-native-community/cli-tools': 11.3.6 + '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 - execa: 5.1.1 + execa: 1.0.0 prompts: 2.4.2 transitivePeerDependencies: - encoding - /@react-native-community/cli-config@11.3.6: - resolution: {integrity: sha512-edy7fwllSFLan/6BG6/rznOBCLPrjmJAE10FzkEqNLHowi0bckiAPg1+1jlgQ2qqAxV5kuk+c9eajVfQvPLYDA==} + /@react-native-community/cli-config@10.1.1: + resolution: {integrity: sha512-p4mHrjC+s/ayiNVG6T35GdEGdP6TuyBUg5plVGRJfTl8WT6LBfLYLk+fz/iETrEZ/YkhQIsQcEUQC47MqLNHog==} dependencies: - '@react-native-community/cli-tools': 11.3.6 + '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 cosmiconfig: 5.2.1 - deepmerge: 4.3.1 + deepmerge: 3.3.0 glob: 7.2.3 joi: 17.9.2 transitivePeerDependencies: - encoding - /@react-native-community/cli-debugger-ui@11.3.6: - resolution: {integrity: sha512-jhMOSN/iOlid9jn/A2/uf7HbC3u7+lGktpeGSLnHNw21iahFBzcpuO71ekEdlmTZ4zC/WyxBXw9j2ka33T358w==} + /@react-native-community/cli-debugger-ui@10.0.0: + resolution: {integrity: sha512-8UKLcvpSNxnUTRy8CkCl27GGLqZunQ9ncGYhSrWyKrU9SWBJJGeZwi2k2KaoJi5FvF2+cD0t8z8cU6lsq2ZZmA==} dependencies: serve-static: 1.15.0 transitivePeerDependencies: - supports-color - /@react-native-community/cli-doctor@11.3.6: - resolution: {integrity: sha512-UT/Tt6omVPi1j6JEX+CObc85eVFghSZwy4GR9JFMsO7gNg2Tvcu1RGWlUkrbmWMAMHw127LUu6TGK66Ugu1NLA==} + /@react-native-community/cli-doctor@10.2.2: + resolution: {integrity: sha512-49Ep2aQOF0PkbAR/TcyMjOm9XwBa8VQr+/Zzf4SJeYwiYLCT1NZRAVAVjYRXl0xqvq5S5mAGZZShS4AQl4WsZw==} dependencies: - '@react-native-community/cli-config': 11.3.6 - '@react-native-community/cli-platform-android': 11.3.6 - '@react-native-community/cli-platform-ios': 11.3.6 - '@react-native-community/cli-tools': 11.3.6 + '@react-native-community/cli-config': 10.1.1 + '@react-native-community/cli-platform-ios': 10.2.1 + '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 command-exists: 1.2.9 - envinfo: 7.10.0 - execa: 5.1.1 + envinfo: 7.8.1 + execa: 1.0.0 hermes-profile-transformer: 0.0.6 ip: 1.1.8 node-stream-zip: 1.15.0 ora: 5.4.1 prompts: 2.4.2 - semver: 7.5.4 + semver: 6.3.1 strip-ansi: 5.2.0 sudo-prompt: 9.2.1 wcwidth: 1.0.1 - yaml: 2.3.1 transitivePeerDependencies: - encoding - /@react-native-community/cli-hermes@11.3.6: - resolution: {integrity: sha512-O55YAYGZ3XynpUdePPVvNuUPGPY0IJdctLAOHme73OvS80gNwfntHDXfmY70TGHWIfkK2zBhA0B+2v8s5aTyTA==} + /@react-native-community/cli-hermes@10.2.0: + resolution: {integrity: sha512-urfmvNeR8IiO/Sd92UU3xPO+/qI2lwCWQnxOkWaU/i2EITFekE47MD6MZrfVulRVYRi5cuaFqKZO/ccOdOB/vQ==} dependencies: - '@react-native-community/cli-platform-android': 11.3.6 - '@react-native-community/cli-tools': 11.3.6 + '@react-native-community/cli-platform-android': 10.2.0 + '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 hermes-profile-transformer: 0.0.6 ip: 1.1.8 transitivePeerDependencies: - encoding - /@react-native-community/cli-platform-android@11.3.6: - resolution: {integrity: sha512-ZARrpLv5tn3rmhZc//IuDM1LSAdYnjUmjrp58RynlvjLDI4ZEjBAGCQmgysRgXAsK7ekMrfkZgemUczfn9td2A==} + /@react-native-community/cli-platform-android@10.0.0: + resolution: {integrity: sha512-wUXq+//PagXVjG6ZedO+zIbNPkCsAiP+uiE45llFTsCtI6vFBwa6oJFHH6fhfeib4mOd7DvIh2Kktrpgyb6nBg==} dependencies: - '@react-native-community/cli-tools': 11.3.6 + '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 - execa: 5.1.1 + execa: 1.0.0 glob: 7.2.3 logkitty: 0.7.1 transitivePeerDependencies: - encoding - /@react-native-community/cli-platform-ios@11.3.6: - resolution: {integrity: sha512-tZ9VbXWiRW+F+fbZzpLMZlj93g3Q96HpuMsS6DRhrTiG+vMQ3o6oPWSEEmMGOvJSYU7+y68Dc9ms2liC7VD6cw==} + /@react-native-community/cli-platform-android@10.2.0: + resolution: {integrity: sha512-CBenYwGxwFdObZTn1lgxWtMGA5ms2G/ALQhkS+XTAD7KHDrCxFF9yT/fnAjFZKM6vX/1TqGI1RflruXih3kAhw==} dependencies: - '@react-native-community/cli-tools': 11.3.6 + '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 - execa: 5.1.1 - fast-xml-parser: 4.2.7 + execa: 1.0.0 + glob: 7.2.3 + logkitty: 0.7.1 + transitivePeerDependencies: + - encoding + + /@react-native-community/cli-platform-ios@10.0.0: + resolution: {integrity: sha512-WLpXzZQ53zb1RhkpSDNHyBR3SIN3WObDRTEaR0TMXsXDeTj8/Eu2DPFpT+uEnD10ly/Y6/DqJsAt4Ku2X76klA==} + dependencies: + '@react-native-community/cli-tools': 10.1.1 + chalk: 4.1.2 + execa: 1.0.0 glob: 7.2.3 ora: 5.4.1 transitivePeerDependencies: - encoding - /@react-native-community/cli-plugin-metro@11.3.6(@babel/core@7.18.5): - resolution: {integrity: sha512-D97racrPX3069ibyabJNKw9aJpVcaZrkYiEzsEnx50uauQtPDoQ1ELb/5c6CtMhAEGKoZ0B5MS23BbsSZcLs2g==} + /@react-native-community/cli-platform-ios@10.2.1: + resolution: {integrity: sha512-hz4zu4Y6eyj7D0lnZx8Mf2c2si8y+zh/zUTgCTaPPLzQD8jSZNNBtUUiA1cARm2razpe8marCZ1QbTMAGbf3mg==} dependencies: - '@react-native-community/cli-server-api': 11.3.6 - '@react-native-community/cli-tools': 11.3.6 + '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 - execa: 5.1.1 - metro: 0.76.7 - metro-config: 0.76.7 - metro-core: 0.76.7 - metro-react-native-babel-transformer: 0.76.7(@babel/core@7.18.5) - metro-resolver: 0.76.7 - metro-runtime: 0.76.7 + execa: 1.0.0 + fast-xml-parser: 4.2.2 + glob: 7.2.3 + ora: 5.4.1 + transitivePeerDependencies: + - encoding + + /@react-native-community/cli-plugin-metro@10.2.2(@babel/core@7.18.5): + resolution: {integrity: sha512-sTGjZlD3OGqbF9v1ajwUIXhGmjw9NyJ/14Lo0sg7xH8Pv4qUd5ZvQ6+DWYrQn3IKFUMfGFWYyL81ovLuPylrpw==} + dependencies: + '@react-native-community/cli-server-api': 10.1.1 + '@react-native-community/cli-tools': 10.1.1 + chalk: 4.1.2 + execa: 1.0.0 + metro: 0.73.9 + metro-config: 0.73.9 + metro-core: 0.73.9 + metro-react-native-babel-transformer: 0.73.9(@babel/core@7.18.5) + metro-resolver: 0.73.9 + metro-runtime: 0.73.9 readline: 1.3.0 transitivePeerDependencies: - '@babel/core' @@ -9438,11 +9829,11 @@ packages: - supports-color - utf-8-validate - /@react-native-community/cli-server-api@11.3.6: - resolution: {integrity: sha512-8GUKodPnURGtJ9JKg8yOHIRtWepPciI3ssXVw5jik7+dZ43yN8P5BqCoDaq8e1H1yRer27iiOfT7XVnwk8Dueg==} + /@react-native-community/cli-server-api@10.1.1: + resolution: {integrity: sha512-NZDo/wh4zlm8as31UEBno2bui8+ufzsZV+KN7QjEJWEM0levzBtxaD+4je0OpfhRIIkhaRm2gl/vVf7OYAzg4g==} dependencies: - '@react-native-community/cli-debugger-ui': 11.3.6 - '@react-native-community/cli-tools': 11.3.6 + '@react-native-community/cli-debugger-ui': 10.0.0 + '@react-native-community/cli-tools': 10.1.1 compression: 1.7.4 connect: 3.7.0 errorhandler: 1.5.1 @@ -9456,48 +9847,48 @@ packages: - supports-color - utf-8-validate - /@react-native-community/cli-tools@11.3.6: - resolution: {integrity: sha512-JpmUTcDwAGiTzLsfMlIAYpCMSJ9w2Qlf7PU7mZIRyEu61UzEawyw83DkqfbzDPBuRwRnaeN44JX2CP/yTO3ThQ==} + /@react-native-community/cli-tools@10.1.1: + resolution: {integrity: sha512-+FlwOnZBV+ailEzXjcD8afY2ogFEBeHOw/8+XXzMgPaquU2Zly9B+8W089tnnohO3yfiQiZqkQlElP423MY74g==} dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 find-up: 5.0.0 mime: 2.6.0 - node-fetch: 2.6.12 + node-fetch: 2.7.0(encoding@0.1.13) open: 6.4.0 ora: 5.4.1 - semver: 7.5.4 + semver: 6.3.1 shell-quote: 1.8.1 transitivePeerDependencies: - encoding - /@react-native-community/cli-types@11.3.6: - resolution: {integrity: sha512-6DxjrMKx5x68N/tCJYVYRKAtlRHbtUVBZrnAvkxbRWFD9v4vhNgsPM0RQm8i2vRugeksnao5mbnRGpS6c0awCw==} + /@react-native-community/cli-types@10.0.0: + resolution: {integrity: sha512-31oUM6/rFBZQfSmDQsT1DX/5fjqfxg7sf2u8kTPJK7rXVya5SRpAMaCXsPAG0omsmJxXt+J9HxUi3Ic+5Ux5Iw==} dependencies: joi: 17.9.2 - /@react-native-community/cli@11.3.6(@babel/core@7.18.5): - resolution: {integrity: sha512-bdwOIYTBVQ9VK34dsf6t3u6vOUU5lfdhKaAxiAVArjsr7Je88Bgs4sAbsOYsNK3tkE8G77U6wLpekknXcanlww==} - engines: {node: '>=16'} + /@react-native-community/cli@10.0.0(@babel/core@7.18.5): + resolution: {integrity: sha512-KHV9/AbPeIK87jHP7iY07/HQG00J5AYF/dHz2rzqAZGB2WYFAbc5uoLRw90u/U2AcSeO7ep+4kawm+/B9LJreg==} + engines: {node: '>=14'} hasBin: true dependencies: - '@react-native-community/cli-clean': 11.3.6 - '@react-native-community/cli-config': 11.3.6 - '@react-native-community/cli-debugger-ui': 11.3.6 - '@react-native-community/cli-doctor': 11.3.6 - '@react-native-community/cli-hermes': 11.3.6 - '@react-native-community/cli-plugin-metro': 11.3.6(@babel/core@7.18.5) - '@react-native-community/cli-server-api': 11.3.6 - '@react-native-community/cli-tools': 11.3.6 - '@react-native-community/cli-types': 11.3.6 + '@react-native-community/cli-clean': 10.1.1 + '@react-native-community/cli-config': 10.1.1 + '@react-native-community/cli-debugger-ui': 10.0.0 + '@react-native-community/cli-doctor': 10.2.2 + '@react-native-community/cli-hermes': 10.2.0 + '@react-native-community/cli-plugin-metro': 10.2.2(@babel/core@7.18.5) + '@react-native-community/cli-server-api': 10.1.1 + '@react-native-community/cli-tools': 10.1.1 + '@react-native-community/cli-types': 10.0.0 chalk: 4.1.2 commander: 9.5.0 - execa: 5.1.1 + execa: 1.0.0 find-up: 4.1.0 fs-extra: 8.1.0 graceful-fs: 4.2.11 prompts: 2.4.2 - semver: 7.5.4 + semver: 6.3.1 transitivePeerDependencies: - '@babel/core' - bufferutil @@ -9505,39 +9896,14 @@ packages: - supports-color - utf-8-validate - /@react-native/assets-registry@0.72.0: - resolution: {integrity: sha512-Im93xRJuHHxb1wniGhBMsxLwcfzdYreSZVQGDoMJgkd6+Iky61LInGEHnQCTN0fKNYF1Dvcofb4uMmE1RQHXHQ==} - - /@react-native/codegen@0.72.6(@babel/preset-env@7.20.2): - resolution: {integrity: sha512-idTVI1es/oopN0jJT/0jB6nKdvTUKE3757zA5+NPXZTeB46CIRbmmos4XBiAec8ufu9/DigLPbHTYAaMNZJ6Ig==} - peerDependencies: - '@babel/preset-env': ^7.1.6 - dependencies: - '@babel/parser': 7.22.10 - '@babel/preset-env': 7.20.2(@babel/core@7.18.5) - flow-parser: 0.206.0 - jscodeshift: 0.14.0(@babel/preset-env@7.20.2) - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - - /@react-native/gradle-plugin@0.72.11: - resolution: {integrity: sha512-P9iRnxiR2w7EHcZ0mJ+fmbPzMby77ZzV6y9sJI3lVLJzF7TLSdbwcQyD3lwMsiL+q5lKUHoZJS4sYmih+P2HXw==} - - /@react-native/js-polyfills@0.72.1: - resolution: {integrity: sha512-cRPZh2rBswFnGt5X5EUEPs0r+pAsXxYsifv/fgy9ZLQokuT52bPH+9xjDR+7TafRua5CttGW83wP4TntRcWNDA==} + /@react-native/assets@1.0.0: + resolution: {integrity: sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==} - /@react-native/normalize-colors@0.72.0: - resolution: {integrity: sha512-285lfdqSXaqKuBbbtP9qL2tDrfxdOFtIMvkKadtleRQkdOxx+uzGvFr82KHmc/sSiMtfXGp7JnFYWVh4sFl7Yw==} + /@react-native/normalize-color@2.1.0: + resolution: {integrity: sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==} - /@react-native/virtualized-lists@0.72.8(react-native@0.72.4): - resolution: {integrity: sha512-J3Q4Bkuo99k7mu+jPS9gSUSgq+lLRSI/+ahXNwV92XgJ/8UgOTxu2LPwhJnBk/sQKxq7E8WkZBnBiozukQMqrw==} - peerDependencies: - react-native: '*' - dependencies: - invariant: 2.2.4 - nullthrows: 1.1.1 - react-native: 0.72.4(@babel/core@7.18.5)(@babel/preset-env@7.20.2)(react@18.2.0) + /@react-native/polyfills@2.0.0: + resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==} /@repeaterjs/repeater@3.0.4: resolution: {integrity: sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==} @@ -9555,7 +9921,7 @@ packages: optional: true dependencies: '@babel/core': 7.18.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 dev: false @@ -9597,8 +9963,8 @@ packages: rollup: 2.79.1 dev: false - /@rushstack/eslint-patch@1.4.0: - resolution: {integrity: sha512-cEjvTPU32OM9lUFegJagO0mRnIn+rbqrG89vV8/xLnLFX0DoR0r1oy5IlTga71Q7uT3Qus7qm7wgeiMT/+Irlg==} + /@rushstack/eslint-patch@1.5.1: + resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==} dev: true /@safe-global/safe-apps-provider@0.17.1(typescript@5.0.4)(zod@3.21.4): @@ -9640,7 +10006,7 @@ packages: /@safe-global/safe-gateway-typescript-sdk@3.7.3: resolution: {integrity: sha512-O6JCgXNZWG0Vv8FnOEjKfcbsP0WxGvoPJk5ufqUrsyBlHup16It6oaLnn+25nXFLBZOHI1bz8429JlqAc2t2hg==} dependencies: - cross-fetch: 3.1.5 + cross-fetch: 3.1.5(encoding@0.1.13) transitivePeerDependencies: - encoding @@ -9775,8 +10141,8 @@ packages: resolution: {integrity: sha512-gFukHN4t8K4+wVC+ECqeqwzBDeFeTzBXroBTqE6vcWrQGbEUpHO7LYdG0f4xnvYq4VOEwITSlHlp0JBAIFMS/g==} dev: false - /@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + /@sinclair/typebox@0.25.24: + resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} /@sindresorhus/is@4.6.0: resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} @@ -9787,17 +10153,23 @@ packages: resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==} dependencies: type-detect: 4.0.8 - dev: false /@sinonjs/commons@3.0.0: resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==} dependencies: type-detect: 4.0.8 + dev: false + + /@sinonjs/fake-timers@10.0.2: + resolution: {integrity: sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==} + dependencies: + '@sinonjs/commons': 2.0.0 /@sinonjs/fake-timers@10.3.0: resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} dependencies: '@sinonjs/commons': 3.0.0 + dev: false /@sinonjs/samsam@8.0.0: resolution: {integrity: sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==} @@ -9821,12 +10193,12 @@ packages: dependencies: buffer: 6.0.3 - /@solana/web3.js@1.75.0: + /@solana/web3.js@1.75.0(encoding@0.1.13): resolution: {integrity: sha512-rHQgdo1EWfb+nPUpHe4O7i8qJPELHKNR5PAZRK+a7XxiykqOfbaAlPt5boDWAGPnYbSv0ziWZv5mq9DlFaQCxg==} dependencies: '@babel/runtime': 7.21.5 '@noble/ed25519': 1.7.3 - '@noble/hashes': 1.3.1 + '@noble/hashes': 1.3.0 '@noble/secp256k1': 1.7.1 '@solana/buffer-layout': 4.0.1 agentkeepalive: 4.3.0 @@ -9837,7 +10209,7 @@ packages: buffer: 6.0.3 fast-stable-stringify: 1.0.0 jayson: 3.7.0 - node-fetch: 2.6.12 + node-fetch: 2.6.9(encoding@0.1.13) rpc-websockets: 7.5.1 superstruct: 0.14.2 transitivePeerDependencies: @@ -9971,101 +10343,101 @@ packages: string.prototype.matchall: 4.0.8 dev: false - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.21.0 dev: true - /@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.22.10): + /@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.21.0): resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.21.0 dev: true - /@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.22.10): + /@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.21.0): resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.21.0 dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.21.0 dev: true - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.21.0 dev: true - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.21.0 dev: true - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.21.0 dev: true - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.22.10): + /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.21.0 dev: true - /@svgr/babel-preset@6.5.1(@babel/core@7.22.10): + /@svgr/babel-preset@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0(@babel/core@7.22.10) - '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0(@babel/core@7.22.10) - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.22.10) + '@babel/core': 7.21.0 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0(@babel/core@7.21.0) + '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0(@babel/core@7.21.0) + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.21.0) dev: true /@svgr/core@6.5.1: resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.22.10 - '@svgr/babel-preset': 6.5.1(@babel/core@7.22.10) + '@babel/core': 7.21.0 + '@svgr/babel-preset': 6.5.1(@babel/core@7.21.0) '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) camelcase: 6.3.0 cosmiconfig: 7.1.0 @@ -10077,7 +10449,7 @@ packages: resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.21.2 entities: 4.4.0 dev: true @@ -10087,8 +10459,8 @@ packages: peerDependencies: '@svgr/core': ^6.0.0 dependencies: - '@babel/core': 7.22.10 - '@svgr/babel-preset': 6.5.1(@babel/core@7.22.10) + '@babel/core': 7.21.0 + '@svgr/babel-preset': 6.5.1(@babel/core@7.21.0) '@svgr/core': 6.5.1 '@svgr/hast-util-to-babel-ast': 6.5.1 svg-parser: 2.0.4 @@ -10177,6 +10549,7 @@ packages: /@tanstack/query-core@4.29.23: resolution: {integrity: sha512-4BMHPrkfYmLP+NvqbbkV7Mk1nnphu+bNmxhhuB0+EMjKA7VfyFCfiyiTf55RRDgLaevyb9LrFK16lHW2owF52w==} + dev: false /@tanstack/query-core@4.29.5: resolution: {integrity: sha512-xXIiyQ/4r9KfaJ3k6kejqcaqFXXBTzN2aOJ5H1J6aTJE9hl/nbgAdfF6oiIu0CD5xowejJEJ6bBg8TO7BN4NuQ==} @@ -10185,6 +10558,7 @@ packages: resolution: {integrity: sha512-u0P6y4DPeXeHEZnj0LEnhcgqX8x7iV7xbUDuoRPItUYsPn+anyLjXG3d3622+wLP3XKdevff0PhXkA7j9ZOWKg==} dependencies: '@tanstack/query-core': 4.29.23 + dev: false /@tanstack/query-persist-client-core@4.29.5: resolution: {integrity: sha512-IjLtEZiEUnzpcFVdHoZGqtjv2g0smLK5WOWk8hP/2ndlXe5kaSbtCKWO2WFbw7yWPYVMM2m9zyglZqg5kU1DMA==} @@ -10202,9 +10576,18 @@ packages: '@tanstack/react-query': 4.29.23 dependencies: '@tanstack/query-persist-client-core': 4.29.23 - '@tanstack/react-query': 4.29.23(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0) + '@tanstack/react-query': 4.29.23(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0) + dev: false - /@tanstack/react-query@4.26.1(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0): + /@tanstack/react-query-persist-client@4.29.5(@tanstack/react-query@4.29.5): + resolution: {integrity: sha512-zvQChSqO/HpRHWjCn+4L4M45Yr2eslogJcQr2HFxRw27Wj/5WlFYhnQFo5SCCR+gZh09tMnkzD+zFhN76wMEGw==} + peerDependencies: + '@tanstack/react-query': 4.29.5 + dependencies: + '@tanstack/query-persist-client-core': 4.29.5 + '@tanstack/react-query': 4.29.5(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0) + + /@tanstack/react-query@4.26.1(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0): resolution: {integrity: sha512-i3dnz4TOARGIXrXQ5P7S25Zfi4noii/bxhcwPurh2nrf5EUCcAt/95TB2HSmMweUBx206yIMWUMEQ7ptd6zwDg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -10219,11 +10602,11 @@ packages: '@tanstack/query-core': 4.26.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-native: 0.72.4(@babel/core@7.18.5)(@babel/preset-env@7.20.2)(react@18.2.0) + react-native: 0.71.0(@babel/core@7.18.5)(@babel/preset-env@7.21.5)(react@18.2.0) use-sync-external-store: 1.2.0(react@18.2.0) dev: false - /@tanstack/react-query@4.29.23(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0): + /@tanstack/react-query@4.29.23(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0): resolution: {integrity: sha512-u59dPBJHeyeRDSrHN3M8FT65yZDT0uPlaFDFd4K2wmDreHguRlk9t578X+cp1Cj+4oksQCE+wv09A5ZH7Odx6g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -10238,7 +10621,26 @@ packages: '@tanstack/query-core': 4.29.23 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-native: 0.72.4(@babel/core@7.18.5)(@babel/preset-env@7.20.2)(react@18.2.0) + react-native: 0.71.0(@babel/core@7.18.5)(@babel/preset-env@7.21.5)(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.2.0) + dev: false + + /@tanstack/react-query@4.29.5(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0): + resolution: {integrity: sha512-F87cibC3s3eG0Q90g2O+hqntpCrudKFnR8P24qkH9uccEhXErnJxBC/AAI4cJRV2bfMO8IeGZQYf3WyYgmSg0w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + dependencies: + '@tanstack/query-core': 4.29.5 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-native: 0.71.0(@babel/core@7.18.5)(@babel/preset-env@7.21.5)(react@18.2.0) use-sync-external-store: 1.2.0(react@18.2.0) /@trysound/sax@0.2.0: @@ -10262,8 +10664,8 @@ packages: /@tsconfig/node16@1.0.3: resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} - /@types/abstract-leveldown@7.2.1: - resolution: {integrity: sha512-YK8irIC+eMrrmtGx0H4ISn9GgzLd9dojZWJaMbjp1YHLl2VqqNFBNrL5Q3KjGf4VE3sf/4hmq6EhQZ7kZp1NoQ==} + /@types/abstract-leveldown@7.2.3: + resolution: {integrity: sha512-YAdL8tIYbiKoFjAf/0Ir3mvRJ/iFvBP/FK0I8Xa5rGWgVcq0xWOEInzlJfs6TIPWFweEOTKgNSBdxneUcHRvaw==} dev: false /@types/accepts@1.3.5: @@ -10278,8 +10680,8 @@ packages: '@types/node': 17.0.45 dev: false - /@types/bn.js@5.1.1: - resolution: {integrity: sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g==} + /@types/bn.js@5.1.2: + resolution: {integrity: sha512-dkpZu0szUtn9UXTmw+e0AJFd4D2XAxDnsCLdc05SfqpqzPEBft8eQr8uaFitfo/dUUOZERaLec2hHMG87A4Dxg==} dependencies: '@types/node': 17.0.45 dev: false @@ -10294,10 +10696,10 @@ packages: /@types/cacheable-request@6.0.3: resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} dependencies: - '@types/http-cache-semantics': 4.0.1 + '@types/http-cache-semantics': 4.0.2 '@types/keyv': 3.1.4 '@types/node': 17.0.45 - '@types/responselike': 1.0.0 + '@types/responselike': 1.0.1 dev: false /@types/connect@3.4.35: @@ -10327,17 +10729,17 @@ packages: dependencies: '@types/ms': 0.7.31 - /@types/eslint-scope@3.7.4: - resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} + /@types/eslint-scope@3.7.5: + resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==} dependencies: - '@types/eslint': 8.44.2 - '@types/estree': 1.0.1 + '@types/eslint': 8.44.3 + '@types/estree': 1.0.2 dev: false - /@types/eslint@8.44.2: - resolution: {integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==} + /@types/eslint@8.44.3: + resolution: {integrity: sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==} dependencies: - '@types/estree': 1.0.1 + '@types/estree': 1.0.2 '@types/json-schema': 7.0.11 dev: false @@ -10345,8 +10747,8 @@ packages: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} dev: false - /@types/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} + /@types/estree@1.0.2: + resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==} dev: false /@types/express-serve-static-core@4.17.33: @@ -10369,7 +10771,7 @@ packages: /@types/glob@7.2.0: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: - '@types/minimatch': 3.0.5 + '@types/minimatch': 5.1.2 '@types/node': 17.0.45 dev: false @@ -10383,8 +10785,8 @@ packages: resolution: {integrity: sha512-FyAOrDuQmBi8/or3ns4rwPno7/9tJTijVW6aQQjK02+kOQ8zmoNg2XJtAuQhvQcy1ASJq38wirX5//9J1EqoUA==} dev: false - /@types/http-cache-semantics@4.0.1: - resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==} + /@types/http-cache-semantics@4.0.2: + resolution: {integrity: sha512-FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw==} dev: false /@types/http-errors@2.0.1: @@ -10404,8 +10806,8 @@ packages: dependencies: '@types/istanbul-lib-report': 3.0.0 - /@types/js-yaml@4.0.5: - resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==} + /@types/js-yaml@4.0.6: + resolution: {integrity: sha512-ACTuifTSIIbyksx2HTon3aFtCKWcID7/h3XEmRpDYdMCXxPbl+m9GteOJeaAkiAta/NJaSFuA7ahZ0NkwajDSw==} dev: true /@types/json-schema@7.0.11: @@ -10455,7 +10857,7 @@ packages: /@types/levelup@4.3.3: resolution: {integrity: sha512-K+OTIjJcZHVlZQN1HmU64VtrC0jC3dXWQozuEIR9zVvltIk90zaGPM2AgT+fIkChpzHhFE3YnvFLCbLtzAmexA==} dependencies: - '@types/abstract-leveldown': 7.2.1 + '@types/abstract-leveldown': 7.2.3 '@types/level-errors': 3.0.0 '@types/node': 17.0.45 dev: false @@ -10486,6 +10888,10 @@ packages: resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} dev: false + /@types/minimatch@5.1.2: + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + dev: false + /@types/minimist@1.2.2: resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} dev: true @@ -10561,8 +10967,8 @@ packages: '@types/node': 17.0.45 dev: false - /@types/responselike@1.0.0: - resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} + /@types/responselike@1.0.1: + resolution: {integrity: sha512-TiGnitEDxj2X0j+98Eqk5lv/Cij8oHd32bU4D/Yw6AOq7vvTk0gSD2GPj0G/HkvhMoVsdlhYF4yqqlyPBTM6Sg==} dependencies: '@types/node': 17.0.45 dev: false @@ -10570,8 +10976,8 @@ packages: /@types/scheduler@0.16.2: resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} - /@types/secp256k1@4.0.3: - resolution: {integrity: sha512-Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w==} + /@types/secp256k1@4.0.4: + resolution: {integrity: sha512-oN0PFsYxDZnX/qSJ5S5OwaEDTYfekhvaM5vqui2bu1AA39pKofmgL104Q29KiOXizXS2yLjSzc5YdTyMKdcy4A==} dependencies: '@types/node': 17.0.45 dev: false @@ -10602,8 +11008,8 @@ packages: dependencies: '@types/node': 17.0.45 - /@types/ws@8.5.5: - resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==} + /@types/ws@8.5.6: + resolution: {integrity: sha512-8B5EO9jLVCy+B58PLHvLDuOD8DRVMgQzq8d55SjLCOn9kqGyqOvy27exVaTio1q1nX5zLu8/6N0n2ThSxOM6tg==} dependencies: '@types/node': 17.0.45 dev: true @@ -10637,7 +11043,7 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.5.1 + '@eslint-community/regexpp': 4.9.1 '@typescript-eslint/parser': 5.59.11(eslint@8.30.0)(typescript@5.0.4) '@typescript-eslint/scope-manager': 5.59.11 '@typescript-eslint/type-utils': 5.59.11(eslint@8.30.0)(typescript@5.0.4) @@ -10734,7 +11140,7 @@ packages: debug: 4.3.4(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 + semver: 7.5.0 tsutils: 3.21.0(typescript@5.0.4) typescript: 5.0.4 transitivePeerDependencies: @@ -10776,7 +11182,7 @@ packages: eslint: 8.30.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0(eslint@8.30.0) - semver: 7.5.4 + semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript @@ -10807,7 +11213,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.54.1 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.0 dev: true /@typescript-eslint/visitor-keys@5.59.11: @@ -10922,7 +11328,7 @@ packages: prettier: 2.8.4 typescript: 5.0.4 viem: 0.3.50(typescript@5.0.4)(zod@3.21.4) - wagmi: 1.3.10(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) + wagmi: 1.3.10(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) zod: 3.21.4 transitivePeerDependencies: - bufferutil @@ -10964,7 +11370,7 @@ packages: - utf-8-validate - zod - /@wagmi/core@1.3.9(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4): + /@wagmi/core@1.3.9(@types/react@18.0.26)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4): resolution: {integrity: sha512-SrnABCrsDvhiMCLLLyzyHnZbEumsFT/XWlJJQZeyEDcixL95R7XQwOaaoRI4MpNilCtMtu3jzN57tA5Z2iA+kw==} peerDependencies: typescript: '>=5.0.4' @@ -10979,9 +11385,10 @@ packages: eventemitter3: 4.0.7 typescript: 5.0.4 viem: 1.0.0(typescript@5.0.4)(zod@3.21.4) - zustand: 4.3.9(react@18.2.0) + zustand: 4.4.3(@types/react@18.0.26)(react@18.2.0) transitivePeerDependencies: - '@react-native-async-storage/async-storage' + - '@types/react' - bufferutil - encoding - immer @@ -10991,14 +11398,50 @@ packages: - utf-8-validate - zod + /@walletconnect/browser-utils@1.8.0: + resolution: {integrity: sha512-Wcqqx+wjxIo9fv6eBUFHPsW1y/bGWWRboni5dfD8PtOmrihrEpOCmvRJe4rfl7xgJW8Ea9UqKEaq0bIRLHlK4A==} + dependencies: + '@walletconnect/safe-json': 1.0.0 + '@walletconnect/types': 1.8.0 + '@walletconnect/window-getters': 1.0.0 + '@walletconnect/window-metadata': 1.0.0 + detect-browser: 5.2.0 + dev: false + + /@walletconnect/core@2.10.2(lokijs@1.5.12): + resolution: {integrity: sha512-JQz/xp3SLEpTeRQctdck2ugSBVEpMxoSE+lFi2voJkZop1hv6P+uqr6E4PzjFluAjeAnKlT1xvra0aFWjPWVcw==} + dependencies: + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.13 + '@walletconnect/keyvaluestorage': 1.0.2(lokijs@1.5.12) + '@walletconnect/logger': 2.0.1 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.2(lokijs@1.5.12) + '@walletconnect/utils': 2.10.2(lokijs@1.5.12) + events: 3.3.0 + lodash.isequal: 4.5.0 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@react-native-async-storage/async-storage' + - bufferutil + - lokijs + - utf-8-validate + dev: false + /@walletconnect/core@2.7.0: resolution: {integrity: sha512-xUeFPpElybgn1a+lknqtHleei4VyuV/4qWgB1nP8qQUAO6a5pNsioODrnB2VAPdUHJYBdx2dCt2maRk6g53IPQ==} dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.11 - '@walletconnect/keyvaluestorage': 1.0.2 + '@walletconnect/jsonrpc-ws-connection': 1.0.13 + '@walletconnect/keyvaluestorage': 1.0.2(lokijs@1.5.12) '@walletconnect/logger': 2.0.1 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 @@ -11024,7 +11467,7 @@ packages: '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.13 - '@walletconnect/keyvaluestorage': 1.0.2 + '@walletconnect/keyvaluestorage': 1.0.2(lokijs@1.5.12) '@walletconnect/logger': 2.0.1 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 @@ -11063,6 +11506,32 @@ packages: dependencies: tslib: 1.14.1 + /@walletconnect/ethereum-provider@2.10.2(@walletconnect/modal@2.6.2)(encoding@0.1.13)(lokijs@1.5.12): + resolution: {integrity: sha512-QMYFZ6+rVq2CJLdIPdKK0j1Qm66UA27oQU5V2SrL8EVwl7wFfm0Bq7fnL+qAWeDpn612dNeNErpk/ROa1zWlWg==} + peerDependencies: + '@walletconnect/modal': '>=2' + peerDependenciesMeta: + '@walletconnect/modal': + optional: true + dependencies: + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/modal': 2.6.2(@types/react@18.0.26)(react@18.2.0) + '@walletconnect/sign-client': 2.10.2(lokijs@1.5.12) + '@walletconnect/types': 2.10.2(lokijs@1.5.12) + '@walletconnect/universal-provider': 2.10.2(encoding@0.1.13)(lokijs@1.5.12) + '@walletconnect/utils': 2.10.2(lokijs@1.5.12) + events: 3.3.0 + transitivePeerDependencies: + - '@react-native-async-storage/async-storage' + - bufferutil + - encoding + - lokijs + - utf-8-validate + dev: false + /@walletconnect/ethereum-provider@2.7.0(@web3modal/standalone@2.2.1): resolution: {integrity: sha512-6TwQ05zi6DP1TP1XNgSvLbmCmLf/sz7kLTfMaVk45YYHNgYTTBlXqkyjUpQZI9lpq+uXLBbHn/jx2OGhOPUP0Q==} peerDependencies: @@ -11071,10 +11540,10 @@ packages: '@web3modal/standalone': optional: true dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.6 - '@walletconnect/jsonrpc-provider': 1.0.12 - '@walletconnect/jsonrpc-types': 1.0.2 - '@walletconnect/jsonrpc-utils': 1.0.7 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/sign-client': 2.7.0 '@walletconnect/types': 2.7.0 '@walletconnect/universal-provider': 2.7.0 @@ -11090,7 +11559,7 @@ packages: - utf-8-validate dev: false - /@walletconnect/ethereum-provider@2.7.0(@web3modal/standalone@2.3.7): + /@walletconnect/ethereum-provider@2.7.0(@web3modal/standalone@2.4.3): resolution: {integrity: sha512-6TwQ05zi6DP1TP1XNgSvLbmCmLf/sz7kLTfMaVk45YYHNgYTTBlXqkyjUpQZI9lpq+uXLBbHn/jx2OGhOPUP0Q==} peerDependencies: '@web3modal/standalone': '>=2' @@ -11098,15 +11567,15 @@ packages: '@web3modal/standalone': optional: true dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.6 - '@walletconnect/jsonrpc-provider': 1.0.12 - '@walletconnect/jsonrpc-types': 1.0.2 - '@walletconnect/jsonrpc-utils': 1.0.7 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/sign-client': 2.7.0 '@walletconnect/types': 2.7.0 '@walletconnect/universal-provider': 2.7.0 '@walletconnect/utils': 2.7.0 - '@web3modal/standalone': 2.3.7(react@18.2.0) + '@web3modal/standalone': 2.4.3(react@18.2.0) events: 3.3.0 transitivePeerDependencies: - '@react-native-async-storage/async-storage' @@ -11125,7 +11594,7 @@ packages: '@walletconnect/modal': optional: true dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 @@ -11155,35 +11624,16 @@ packages: '@walletconnect/time': 1.0.2 tslib: 1.14.1 - /@walletconnect/jsonrpc-http-connection@1.0.6: - resolution: {integrity: sha512-/3zSqDi7JDN06E4qm0NmVYMitngXfh21UWwy8zeJcBeJc+Jcs094EbLsIxtziIIKTCCbT88lWuTjl1ZujxN7cw==} - dependencies: - '@walletconnect/jsonrpc-utils': 1.0.7 - '@walletconnect/safe-json': 1.0.2 - cross-fetch: 3.1.5 - tslib: 1.14.1 - transitivePeerDependencies: - - encoding - dev: false - - /@walletconnect/jsonrpc-http-connection@1.0.7: + /@walletconnect/jsonrpc-http-connection@1.0.7(encoding@0.1.13): resolution: {integrity: sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==} dependencies: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/safe-json': 1.0.2 - cross-fetch: 3.1.5 + cross-fetch: 3.1.5(encoding@0.1.13) tslib: 1.14.1 transitivePeerDependencies: - encoding - /@walletconnect/jsonrpc-provider@1.0.12: - resolution: {integrity: sha512-6uI2y5281gloZSzICOjk+CVC7CVu0MhtMt2Yzpj05lPb0pzm/bK2oZ2ibxwLerPrqpNt/5bIFVRmoOgPw1mHAQ==} - dependencies: - '@walletconnect/jsonrpc-utils': 1.0.7 - '@walletconnect/safe-json': 1.0.2 - tslib: 1.14.1 - dev: false - /@walletconnect/jsonrpc-provider@1.0.13: resolution: {integrity: sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==} dependencies: @@ -11191,27 +11641,12 @@ packages: '@walletconnect/safe-json': 1.0.2 tslib: 1.14.1 - /@walletconnect/jsonrpc-types@1.0.2: - resolution: {integrity: sha512-CZe8tjJX73OWdHjrBHy7HtAapJ2tT0Q3TYhPBhRxi3643lwPIQWC9En45ldY14TZwgSewkbZ0FtGBZK0G7Bbyg==} - dependencies: - keyvaluestorage-interface: 1.0.0 - tslib: 1.14.1 - dev: false - /@walletconnect/jsonrpc-types@1.0.3: resolution: {integrity: sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==} dependencies: keyvaluestorage-interface: 1.0.0 tslib: 1.14.1 - /@walletconnect/jsonrpc-utils@1.0.7: - resolution: {integrity: sha512-zJziApzUF/Il4VcwabnaU+0yo1QI4eUkYX99zmCVTHJvZOf2l0zjADf/OpKqWyeNFC3Io56Z/8uJHVtcNVvyFA==} - dependencies: - '@walletconnect/environment': 1.0.1 - '@walletconnect/jsonrpc-types': 1.0.2 - tslib: 1.14.1 - dev: false - /@walletconnect/jsonrpc-utils@1.0.8: resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==} dependencies: @@ -11219,19 +11654,6 @@ packages: '@walletconnect/jsonrpc-types': 1.0.3 tslib: 1.14.1 - /@walletconnect/jsonrpc-ws-connection@1.0.11: - resolution: {integrity: sha512-TiFJ6saasKXD+PwGkm5ZGSw0837nc6EeFmurSPgIT/NofnOV4Tv7CVJqGQN0rQYoJUSYu21cwHNYaFkzNpUN+w==} - dependencies: - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/safe-json': 1.0.2 - events: 3.3.0 - tslib: 1.14.1 - ws: 7.5.9 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false - /@walletconnect/jsonrpc-ws-connection@1.0.13: resolution: {integrity: sha512-mfOM7uFH4lGtQxG+XklYuFBj6dwVvseTt5/ahOkkmpcAEgz2umuzu7fTR+h5EmjQBdrmYyEBOWADbeaFNxdySg==} dependencies: @@ -11244,7 +11666,7 @@ packages: - bufferutil - utf-8-validate - /@walletconnect/keyvaluestorage@1.0.2: + /@walletconnect/keyvaluestorage@1.0.2(lokijs@1.5.12): resolution: {integrity: sha512-U/nNG+VLWoPFdwwKx0oliT4ziKQCEoQ27L5Hhw8YOFGA2Po9A9pULUYNWhDgHkrb0gYDNt//X7wABcEWWBd3FQ==} peerDependencies: '@react-native-async-storage/async-storage': 1.x @@ -11255,6 +11677,7 @@ packages: lokijs: optional: true dependencies: + lokijs: 1.5.12 safe-json-utils: 1.1.1 tslib: 1.14.1 @@ -11284,7 +11707,7 @@ packages: /@walletconnect/legacy-provider@2.0.0: resolution: {integrity: sha512-A8xPebMI1A+50HbWwTpFCbwP7G+1NGKdTKyg8BUUg3h3Y9JucpC1W6w/x0v1Xw7qFEqQnz74LoIN/A3ytH9xrQ==} dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/legacy-client': 2.0.0 '@walletconnect/legacy-modal': 2.0.0 @@ -11316,6 +11739,11 @@ packages: pino: 7.11.0 tslib: 1.14.1 + /@walletconnect/mobile-registry@1.4.0: + resolution: {integrity: sha512-ZtKRio4uCZ1JUF7LIdecmZt7FOLnX72RPSY7aUVu7mj7CSfxDwUn6gBuK6WGtH+NZCldBqDl5DenI5fFSvkKYw==} + deprecated: 'Deprecated in favor of dynamic registry available from: https://github.com/walletconnect/walletconnect-registry' + dev: false + /@walletconnect/modal-core@2.6.1(react@18.2.0): resolution: {integrity: sha512-f2hYlJ5pwzGvjyaZ6BoGR5uiMgXzWXt6w6ktt1N8lmY6PiYp8whZgqx2hTxVWwVlsGnaIfh6UHp1hGnANx0eTQ==} dependencies: @@ -11323,6 +11751,15 @@ packages: transitivePeerDependencies: - react + /@walletconnect/modal-core@2.6.2(@types/react@18.0.26)(react@18.2.0): + resolution: {integrity: sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==} + dependencies: + valtio: 1.11.2(@types/react@18.0.26)(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + - react + dev: false + /@walletconnect/modal-ui@2.6.1(react@18.2.0): resolution: {integrity: sha512-RFUOwDAMijSK8B7W3+KoLKaa1l+KEUG0LCrtHqaB0H0cLnhEGdLR+kdTdygw+W8+yYZbkM5tXBm7MlFbcuyitA==} dependencies: @@ -11333,6 +11770,18 @@ packages: transitivePeerDependencies: - react + /@walletconnect/modal-ui@2.6.2(@types/react@18.0.26)(react@18.2.0): + resolution: {integrity: sha512-rbdstM1HPGvr7jprQkyPggX7rP4XiCG85ZA+zWBEX0dVQg8PpAgRUqpeub4xQKDgY7pY/xLRXSiCVdWGqvG2HA==} + dependencies: + '@walletconnect/modal-core': 2.6.2(@types/react@18.0.26)(react@18.2.0) + lit: 2.8.0 + motion: 10.16.2 + qrcode: 1.5.3 + transitivePeerDependencies: + - '@types/react' + - react + dev: false + /@walletconnect/modal@2.6.1(react@18.2.0): resolution: {integrity: sha512-G84tSzdPKAFk1zimgV7JzIUFT5olZUVtI3GcOk77OeLYjlMfnDT23RVRHm5EyCrjkptnvpD0wQScXePOFd2Xcw==} dependencies: @@ -11341,6 +11790,28 @@ packages: transitivePeerDependencies: - react + /@walletconnect/modal@2.6.2(@types/react@18.0.26)(react@18.2.0): + resolution: {integrity: sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA==} + dependencies: + '@walletconnect/modal-core': 2.6.2(@types/react@18.0.26)(react@18.2.0) + '@walletconnect/modal-ui': 2.6.2(@types/react@18.0.26)(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + - react + dev: false + + /@walletconnect/qrcode-modal@1.8.0: + resolution: {integrity: sha512-BueaFefaAi8mawE45eUtztg3ZFbsAH4DDXh1UNwdUlsvFMjqcYzLUG0xZvDd6z2eOpbgDg2N3bl6gF0KONj1dg==} + deprecated: 'WalletConnect''s v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/' + dependencies: + '@walletconnect/browser-utils': 1.8.0 + '@walletconnect/mobile-registry': 1.4.0 + '@walletconnect/types': 1.8.0 + copy-to-clipboard: 3.3.3 + preact: 10.4.1 + qrcode: 1.4.4 + dev: false + /@walletconnect/randombytes@1.0.3: resolution: {integrity: sha512-35lpzxcHFbTN3ABefC9W+uBpNZl1GC4Wpx0ed30gibfO/y9oLdy1NznbV96HARQKSBV9J9M/rrtIvf6a23jfYw==} dependencies: @@ -11365,18 +11836,41 @@ packages: tslib: 1.14.1 uint8arrays: 3.1.1 + /@walletconnect/safe-json@1.0.0: + resolution: {integrity: sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg==} + dev: false + /@walletconnect/safe-json@1.0.2: resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==} dependencies: tslib: 1.14.1 + /@walletconnect/sign-client@2.10.2(lokijs@1.5.12): + resolution: {integrity: sha512-vviSLV3f92I0bReX+OLr1HmbH0uIzYEQQFd1MzIfDk9PkfFT/LLAHhUnDaIAMkIdippqDcJia+5QEtT4JihL3Q==} + dependencies: + '@walletconnect/core': 2.10.2(lokijs@1.5.12) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.0.1 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.2(lokijs@1.5.12) + '@walletconnect/utils': 2.10.2(lokijs@1.5.12) + events: 3.3.0 + transitivePeerDependencies: + - '@react-native-async-storage/async-storage' + - bufferutil + - lokijs + - utf-8-validate + dev: false + /@walletconnect/sign-client@2.7.0: resolution: {integrity: sha512-K99xa6GSFS04U+140yrIEi/VJJJ0Q1ov4jCaiqa9euILDKxlBsM7m5GR+9sq6oYyj18SluJY4CJTdeOXUJlarA==} dependencies: '@walletconnect/core': 2.7.0 '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-utils': 1.0.7 + '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 '@walletconnect/time': 1.0.2 '@walletconnect/types': 2.7.0 @@ -11412,13 +11906,32 @@ packages: dependencies: tslib: 1.14.1 + /@walletconnect/types@1.8.0: + resolution: {integrity: sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg==} + deprecated: 'WalletConnect''s v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/' + dev: false + + /@walletconnect/types@2.10.2(lokijs@1.5.12): + resolution: {integrity: sha512-luNV+07Wdla4STi9AejseCQY31tzWKQ5a7C3zZZaRK/di+rFaAAb7YW04OP4klE7tw/mJRGPTlekZElmHxO8kQ==} + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.0.2(lokijs@1.5.12) + '@walletconnect/logger': 2.0.1 + events: 3.3.0 + transitivePeerDependencies: + - '@react-native-async-storage/async-storage' + - lokijs + dev: false + /@walletconnect/types@2.7.0: resolution: {integrity: sha512-aMUDUtO79WSBtC/bDetE6aFwdgwJr0tJ8nC8gnAl5ELsrjygEKCn6M8Q+v6nP9svG9yf5Rds4cImxCT6BWwTyw==} dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-types': 1.0.2 - '@walletconnect/keyvaluestorage': 1.0.2 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.0.2(lokijs@1.5.12) '@walletconnect/logger': 2.0.1 events: 3.3.0 transitivePeerDependencies: @@ -11432,20 +11945,40 @@ packages: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.0.2 + '@walletconnect/keyvaluestorage': 1.0.2(lokijs@1.5.12) '@walletconnect/logger': 2.0.1 events: 3.3.0 transitivePeerDependencies: - '@react-native-async-storage/async-storage' - lokijs + /@walletconnect/universal-provider@2.10.2(encoding@0.1.13)(lokijs@1.5.12): + resolution: {integrity: sha512-wFgI0LbQ3D56sgaUMsgOHCM5m8WLxiC71BGuCKQfApgsbNMVKugYVy2zWHyUyi8sqTQHI+uSaVpDev4UHq9LEw==} + dependencies: + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.0.1 + '@walletconnect/sign-client': 2.10.2(lokijs@1.5.12) + '@walletconnect/types': 2.10.2(lokijs@1.5.12) + '@walletconnect/utils': 2.10.2(lokijs@1.5.12) + events: 3.3.0 + transitivePeerDependencies: + - '@react-native-async-storage/async-storage' + - bufferutil + - encoding + - lokijs + - utf-8-validate + dev: false + /@walletconnect/universal-provider@2.7.0: resolution: {integrity: sha512-aAIudO3ZlKD16X36VnXChpxBB6/JLK1SCJBfidk7E0GE2S4xr1xW5jXGSGS4Z+wIkNZXK0n7ULSK3PZ7mPBdog==} dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.6 - '@walletconnect/jsonrpc-provider': 1.0.12 - '@walletconnect/jsonrpc-types': 1.0.2 - '@walletconnect/jsonrpc-utils': 1.0.7 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 '@walletconnect/sign-client': 2.7.0 '@walletconnect/types': 2.7.0 @@ -11464,7 +11997,7 @@ packages: /@walletconnect/universal-provider@2.9.2: resolution: {integrity: sha512-JmaolkO8D31UdRaQCHwlr8uIFUI5BYhBzqYFt54Mc6gbIa1tijGOmdyr6YhhFO70LPmS6gHIjljwOuEllmlrxw==} dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 @@ -11480,6 +12013,28 @@ packages: - lokijs - utf-8-validate + /@walletconnect/utils@2.10.2(lokijs@1.5.12): + resolution: {integrity: sha512-syxXRpc2yhSknMu3IfiBGobxOY7fLfLTJuw+ppKaeO6WUdZpIit3wfuGOcc0Ms3ZPFCrGfyGOoZsCvgdXtptRg==} + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.2(lokijs@1.5.12) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@react-native-async-storage/async-storage' + - lokijs + dev: false + /@walletconnect/utils@2.7.0: resolution: {integrity: sha512-k32jrQeyJsNZPdmtmg85Y3QgaS5YfzYSPrAxRC2uUD1ts7rrI6P5GG2iXNs3AvWKOuCgsp/PqU8s7AC7CRUscw==} dependencies: @@ -11488,7 +12043,7 @@ packages: '@stablelib/random': 1.0.2 '@stablelib/sha256': 1.0.1 '@stablelib/x25519': 1.0.3 - '@walletconnect/jsonrpc-utils': 1.0.7 + '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/relay-api': 1.0.9 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 @@ -11524,11 +12079,21 @@ packages: - '@react-native-async-storage/async-storage' - lokijs + /@walletconnect/window-getters@1.0.0: + resolution: {integrity: sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA==} + dev: false + /@walletconnect/window-getters@1.0.1: resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} dependencies: tslib: 1.14.1 + /@walletconnect/window-metadata@1.0.0: + resolution: {integrity: sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==} + dependencies: + '@walletconnect/window-getters': 1.0.1 + dev: false + /@walletconnect/window-metadata@1.0.1: resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==} dependencies: @@ -11548,17 +12113,18 @@ packages: - react dev: false - /@web3modal/core@2.3.7(react@18.2.0): - resolution: {integrity: sha512-ggl9+tkAzz43npj97iTj6p4oQYaklxADQyCKAX7AnMfglZg5bRseMDGnfmpvnjlDn8TI+DGGO6da3ITmYRIDYQ==} + /@web3modal/core@2.4.3(react@18.2.0): + resolution: {integrity: sha512-7Z/sDe9RIYQ2k9ITcxgEa/u7FvlI76vcVVZn9UY4ISivefqrH4JAS3GX4JmVNUUlovwuiZdyqBv4llAQOMK6Rg==} dependencies: buffer: 6.0.3 - valtio: 1.10.4(react@18.2.0) + valtio: 1.10.5(react@18.2.0) transitivePeerDependencies: - react dev: false /@web3modal/standalone@2.2.1(react@18.2.0): resolution: {integrity: sha512-pHPL+UykZtOZhEhNl+l3wWnNvZZdm8cgJgVQVo8yL7m4N9kTyRbDArsQenlIeIm2xi0kFncXBJbe1kaxl8AWTA==} + deprecated: This package has been deprecated in favor of @walletconnect/modal. Please read more at https://docs.walletconnect.com dependencies: '@web3modal/core': 2.2.1(react@18.2.0) '@web3modal/ui': 2.2.1(react@18.2.0) @@ -11566,11 +12132,12 @@ packages: - react dev: false - /@web3modal/standalone@2.3.7(react@18.2.0): - resolution: {integrity: sha512-zgavWcimRVXnLdup2WQ0fFEnBnH+Wwn+k1/XzhwVpdJ//mrExWNYQaXt139RijxGUcux68ExRCyMqm1jkXTq3g==} + /@web3modal/standalone@2.4.3(react@18.2.0): + resolution: {integrity: sha512-5ATXBoa4GGm+TIUSsKWsfWCJunv1XevOizpgTFhqyeGgRDmWhqsz9UIPzH/1mk+g0iJ/xqMKs5F6v9D2QeKxag==} + deprecated: This package has been deprecated in favor of @walletconnect/modal. Please read more at https://docs.walletconnect.com dependencies: - '@web3modal/core': 2.3.7(react@18.2.0) - '@web3modal/ui': 2.3.7(react@18.2.0) + '@web3modal/core': 2.4.3(react@18.2.0) + '@web3modal/ui': 2.4.3(react@18.2.0) transitivePeerDependencies: - react dev: false @@ -11586,12 +12153,12 @@ packages: - react dev: false - /@web3modal/ui@2.3.7(react@18.2.0): - resolution: {integrity: sha512-mNDXY4ElcvXXixKHZTLcEjKC9zs3O8BD1EtaC8cKIy+RKFyHMpLB1DOQmz77tn91jNjOkrvEryqUwCbsJ7hjfA==} + /@web3modal/ui@2.4.3(react@18.2.0): + resolution: {integrity: sha512-J989p8CdtEhI9gZHf/rZ/WFqYlrAHWw9GmAhFoiNODwjAp0BoG/uoaPiijJMchXdngihZOjLGCQwDXU16DHiKg==} dependencies: - '@web3modal/core': 2.3.7(react@18.2.0) - lit: 2.7.3 - motion: 10.15.5 + '@web3modal/core': 2.4.3(react@18.2.0) + lit: 2.7.5 + motion: 10.16.2 qrcode: 1.5.3 transitivePeerDependencies: - react @@ -11733,11 +12300,11 @@ packages: web-streams-polyfill: 3.2.1 dev: true - /@whatwg-node/fetch@0.9.9: - resolution: {integrity: sha512-OTVoDm039CNyAWSRc2WBimMl/N9J4Fk2le21Xzcf+3OiWPNNSIbMnpWKBUyraPh2d9SAEgoBdQxTfVNihXgiUw==} + /@whatwg-node/fetch@0.9.13: + resolution: {integrity: sha512-PPtMwhjtS96XROnSpowCQM85gCUG2m7AXZFw0PZlGbhzx2GK7f2iOXilfgIJ0uSlCuuGbOIzfouISkA7C4FJOw==} engines: {node: '>=16.0.0'} dependencies: - '@whatwg-node/node-fetch': 0.4.14 + '@whatwg-node/node-fetch': 0.4.19 urlpattern-polyfill: 9.0.0 dev: true @@ -11751,8 +12318,8 @@ packages: tslib: 2.5.0 dev: true - /@whatwg-node/node-fetch@0.4.14: - resolution: {integrity: sha512-ii/eZz2PcjLGj9D6WfsmfzlTzZV1Kz6MxYpq2Vc5P21J8vkKfENWC9B2ISsFCKovxElLukIwPg8HTrHFsLNflg==} + /@whatwg-node/node-fetch@0.4.19: + resolution: {integrity: sha512-AW7/m2AuweAoSXmESrYQr/KBafueScNbn2iNO0u6xFr2JZdPmYsSm5yvAXYk6yDLv+eDmSSKrf7JnFZ0CsJIdA==} engines: {node: '>=16.0.0'} dependencies: '@whatwg-node/events': 0.1.1 @@ -11842,6 +12409,9 @@ packages: resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==} dev: false + /absolute-path@0.0.0: + resolution: {integrity: sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==} + /abstract-level@1.0.3: resolution: {integrity: sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==} engines: {node: '>=12'} @@ -11860,7 +12430,7 @@ packages: engines: {node: '>=6'} dependencies: buffer: 5.7.1 - immediate: 3.3.0 + immediate: 3.2.3 level-concat-iterator: 2.0.1 level-supports: 1.0.1 xtend: 4.0.2 @@ -12033,8 +12603,8 @@ packages: engines: {node: '>=12'} dev: true - /ansi-sequence-parser@1.1.0: - resolution: {integrity: sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==} + /ansi-sequence-parser@1.1.1: + resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==} dev: false /ansi-styles@3.2.1: @@ -12127,6 +12697,18 @@ packages: deep-equal: 2.2.0 dev: true + /arr-diff@4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} + + /arr-flatten@1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} + + /arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + /array-buffer-byte-length@1.0.0: resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} dependencies: @@ -12168,6 +12750,10 @@ packages: engines: {node: '>=0.10.0'} dev: false + /array-unique@0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} + /array.prototype.findlastindex@1.2.3: resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} engines: {node: '>= 0.4'} @@ -12252,7 +12838,7 @@ packages: arconnect: 0.4.2 asn1.js: 5.4.1 base64-js: 1.5.1 - bignumber.js: 9.1.1 + bignumber.js: 9.1.2 dev: false /asap@2.0.6: @@ -12290,12 +12876,16 @@ packages: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: false + /assign-symbols@1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + /ast-types-flow@0.0.7: resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} dev: true - /ast-types@0.15.2: - resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} + /ast-types@0.14.2: + resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} engines: {node: '>=4'} dependencies: tslib: 2.5.0 @@ -12335,6 +12925,11 @@ packages: engines: {node: '>= 4.0.0'} dev: false + /atob@2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true + /atomic-sleep@1.0.0: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} engines: {node: '>=8.0.0'} @@ -12407,8 +13002,8 @@ packages: - debug dev: false - /axios@1.3.3: - resolution: {integrity: sha512-eYq77dYIFS77AQlhzEL937yUBSepBfPIe8FcgEDN35vMNZKMrs81pgnyrQpwfy4NF4b4XWX1Zgx7yX+25w8QJA==} + /axios@1.2.2: + resolution: {integrity: sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q==} dependencies: follow-redirects: 1.15.2(debug@4.3.4) form-data: 4.0.0 @@ -12417,8 +13012,8 @@ packages: - debug dev: false - /axios@1.3.4: - resolution: {integrity: sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==} + /axios@1.3.3: + resolution: {integrity: sha512-eYq77dYIFS77AQlhzEL937yUBSepBfPIe8FcgEDN35vMNZKMrs81pgnyrQpwfy4NF4b4XWX1Zgx7yX+25w8QJA==} dependencies: follow-redirects: 1.15.2(debug@4.3.4) form-data: 4.0.0 @@ -12464,10 +13059,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.21.0 '@babel/core': 7.18.5 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.18.5) - semver: 6.3.1 + semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -12476,35 +13071,23 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.21.0 '@babel/core': 7.21.0 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0) - semver: 6.3.1 + semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.18.5): - resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.18.5 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.18.5) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.10): - resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} + /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.23.0): + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10) - semver: 6.3.1 + '@babel/compat-data': 7.21.0 + '@babel/core': 7.23.0 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.0) + semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -12531,25 +13114,14 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.18.5): - resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.18.5) - core-js-compat: 3.32.1 - transitivePeerDependencies: - - supports-color - - /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} + /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.23.0): + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10) - core-js-compat: 3.32.1 + '@babel/core': 7.23.0 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.0) + core-js-compat: 3.29.0 transitivePeerDependencies: - supports-color @@ -12574,23 +13146,13 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.18.5): - resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.18.5) - transitivePeerDependencies: - - supports-color - - /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.10): - resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} + /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.23.0): + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10) + '@babel/core': 7.23.0 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.0) transitivePeerDependencies: - supports-color @@ -12600,7 +13162,7 @@ packages: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.18.5) lodash: 4.17.21 picomatch: 2.3.1 @@ -12612,20 +13174,6 @@ packages: /babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} - /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.18.5): - resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} - dependencies: - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.18.5) - transitivePeerDependencies: - - '@babel/core' - - /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.22.10): - resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} - dependencies: - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.10) - transitivePeerDependencies: - - '@babel/core' - /babel-preset-fbjs@3.4.0(@babel/core@7.18.5): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: @@ -12635,26 +13183,26 @@ packages: '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.5) '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.18.5) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.5) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.18.5) - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.18.5) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.18.5) '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.18.5) '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.5) '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.18.5) '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.18.5) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.18.5) + '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.18.5) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.5) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.5) '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.18.5) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.5) '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.5) '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.5) '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.18.5) '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.5) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.18.5) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.5) @@ -12662,38 +13210,38 @@ packages: transitivePeerDependencies: - supports-color - /babel-preset-fbjs@3.4.0(@babel/core@7.22.10): + /babel-preset-fbjs@3.4.0(@babel/core@7.23.0): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.10) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.10) + '@babel/core': 7.23.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.23.0) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.23.0) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.23.0) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.23.0) + '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.23.0) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.23.0) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.23.0) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.23.0) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.23.0) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.23.0) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.23.0) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.23.0) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color @@ -12721,6 +13269,18 @@ packages: /base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + /base@0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} + dependencies: + cache-base: 1.0.1 + class-utils: 0.3.6 + component-emitter: 1.3.0 + define-property: 1.0.0 + isobject: 3.0.1 + mixin-deep: 1.3.2 + pascalcase: 0.1.1 + /bcrypt-pbkdf@1.0.2: resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} dependencies: @@ -12752,8 +13312,8 @@ packages: engines: {node: '>=14.0.0'} dev: false - /bignumber.js@9.1.1: - resolution: {integrity: sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==} + /bignumber.js@9.1.2: + resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} dev: false /binary-extensions@2.2.0: @@ -12811,7 +13371,7 @@ packages: dependencies: arconnect: 0.2.9 axios: 0.21.4 - bignumber.js: 9.1.1 + bignumber.js: 9.1.2 redstone-smartweave: 0.3.10-alpha.19 util: 0.12.5 transitivePeerDependencies: @@ -12873,6 +13433,10 @@ packages: - supports-color dev: false + /body-scroll-lock@4.0.0-beta.0: + resolution: {integrity: sha512-a7tP5+0Mw3YlUJcGAKUqIBkYYGlYxk2fnCasq/FUph1hadxlTRjF+gAcZksxANnaMnALjxEddmSi/H3OR8ugcQ==} + dev: false + /boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} dev: true @@ -12902,6 +13466,23 @@ packages: dependencies: balanced-match: 1.0.2 + /braces@2.3.2: + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} + dependencies: + arr-flatten: 1.1.0 + array-unique: 0.3.2 + extend-shallow: 2.0.1 + fill-range: 4.0.0 + isobject: 3.0.1 + repeat-element: 1.1.4 + snapdragon: 0.8.2 + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + /braces@3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} @@ -12940,16 +13521,6 @@ packages: safe-buffer: 5.2.1 dev: false - /browserslist@4.21.10: - resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: 1.0.30001522 - electron-to-chromium: 1.4.497 - node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.10) - /browserslist@4.21.5: resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -12960,6 +13531,16 @@ packages: node-releases: 2.0.10 update-browserslist-db: 1.0.10(browserslist@4.21.5) + /browserslist@4.22.1: + resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001547 + electron-to-chromium: 1.4.548 + node-releases: 2.0.13 + update-browserslist-db: 1.0.13(browserslist@4.22.1) + /bs58@4.0.1: resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} dependencies: @@ -12991,6 +13572,21 @@ packages: buffer: 5.7.1 dev: false + /buffer-alloc-unsafe@1.1.0: + resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==} + dev: false + + /buffer-alloc@1.2.0: + resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==} + dependencies: + buffer-alloc-unsafe: 1.1.0 + buffer-fill: 1.0.0 + dev: false + + /buffer-fill@1.0.0: + resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==} + dev: false + /buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} @@ -13025,9 +13621,9 @@ packages: dependencies: node-gyp-build: 4.6.0 - /bufio@1.2.0: - resolution: {integrity: sha512-UlFk8z/PwdhYQTXSQQagwGAdtRI83gib2n4uy4rQnenxUM2yQi8lBDzF230BNk+3wAoZDxYRoBwVVUPgHa9MCA==} - engines: {node: '>=8.0.0'} + /bufio@1.2.1: + resolution: {integrity: sha512-9oR3zNdupcg/Ge2sSHQF3GX+kmvL/fTPvD0nd5AGLq8SjUYnTz+SlFjK/GXidndbZtIj+pVKXiWeR9w6e9wKCA==} + engines: {node: '>=14.0.0'} dev: false /builtin-modules@3.3.0: @@ -13072,6 +13668,20 @@ packages: engines: {node: '>=8'} dev: true + /cache-base@1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} + dependencies: + collection-visit: 1.0.0 + component-emitter: 1.3.0 + get-value: 2.0.6 + has-value: 1.0.0 + isobject: 3.0.1 + set-value: 2.0.1 + to-object-path: 0.3.0 + union-value: 1.0.1 + unset-value: 1.0.0 + /cacheable-lookup@5.0.4: resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} engines: {node: '>=10.6.0'} @@ -13089,7 +13699,7 @@ packages: clone-response: 1.0.3 get-stream: 5.2.0 http-cache-semantics: 4.1.1 - keyv: 4.5.2 + keyv: 4.5.4 lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.1 @@ -13161,8 +13771,12 @@ packages: /caniuse-lite@1.0.30001482: resolution: {integrity: sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==} - /caniuse-lite@1.0.30001522: - resolution: {integrity: sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==} + /caniuse-lite@1.0.30001486: + resolution: {integrity: sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg==} + dev: false + + /caniuse-lite@1.0.30001547: + resolution: {integrity: sha512-W7CrtIModMAxobGhz8iXmDfuJiiKg1WADMO/9x7/CLNin5cpSbuBjooyoIUVB5eyCc36QuTVlkVa1iB2S5+/eA==} /capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -13186,8 +13800,8 @@ packages: engines: {node: '>=6'} dev: false - /cborg@1.10.1: - resolution: {integrity: sha512-et6Qm8MOUY2kCWa5GKk2MlBVoPjHv0hQBmlzI/Z7+5V3VJCeIkGehIB3vWknNsm2kOkAIs6wEKJFJo8luWQQ/w==} + /cborg@1.10.2: + resolution: {integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==} hasBin: true dev: false @@ -13197,7 +13811,7 @@ packages: chai: '>= 2.1.2 < 5' dependencies: chai: 4.3.7 - check-error: 1.0.2 + check-error: 1.0.3 dev: false /chai-subset@1.6.0: @@ -13205,14 +13819,27 @@ packages: engines: {node: '>=4'} dev: false + /chai@4.3.10: + resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==} + engines: {node: '>=4'} + dependencies: + assertion-error: 1.1.0 + check-error: 1.0.3 + deep-eql: 4.1.3 + get-func-name: 2.0.2 + loupe: 2.3.6 + pathval: 1.1.1 + type-detect: 4.0.8 + dev: false + /chai@4.3.7: resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} engines: {node: '>=4'} dependencies: assertion-error: 1.1.0 - check-error: 1.0.2 + check-error: 1.0.3 deep-eql: 4.1.3 - get-func-name: 2.0.0 + get-func-name: 2.0.2 loupe: 2.3.6 pathval: 1.1.1 type-detect: 4.0.8 @@ -13293,8 +13920,14 @@ packages: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} dev: true - /check-error@1.0.2: - resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} + /charenc@0.0.2: + resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} + dev: false + + /check-error@1.0.3: + resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + dependencies: + get-func-name: 2.0.2 dev: false /chokidar@3.5.3: @@ -13350,6 +13983,15 @@ packages: resolution: {integrity: sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==} dev: false + /class-utils@0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-union: 3.1.0 + define-property: 0.2.5 + isobject: 3.0.1 + static-extend: 0.1.2 + /class-variance-authority@0.4.0(typescript@5.0.4): resolution: {integrity: sha512-74enNN8O9ZNieycac/y8FxqgyzZhZbxmCitAtAeUrLPlxjSd5zA7LfpprmxEcOmQBnaGs5hYhiSGnJ0mqrtBLQ==} peerDependencies: @@ -13429,6 +14071,14 @@ packages: resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} dev: false + /cliui@5.0.0: + resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} + dependencies: + string-width: 3.1.0 + strip-ansi: 5.2.0 + wrap-ansi: 5.1.0 + dev: false + /cliui@6.0.0: resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: @@ -13479,6 +14129,13 @@ packages: resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} engines: {node: '>=6'} + /collection-visit@1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} + dependencies: + map-visit: 1.0.0 + object-visit: 1.0.1 + /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: @@ -13516,7 +14173,6 @@ packages: /colorette@2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} - dev: true /combine-errors@3.0.3: resolution: {integrity: sha512-C8ikRNRMygCwaTx+Ek3Yr+OuZzgZjduCOfSQBjbM8V3MfgcjSTeto/GXP6PAwKvJz/v15b7GHZvx5rOlczFw/Q==} @@ -13581,6 +14237,9 @@ packages: dot-prop: 5.3.0 dev: true + /component-emitter@1.3.0: + resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} + /compressible@2.0.18: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} @@ -13692,6 +14351,9 @@ packages: /convert-source-map@1.9.0: resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + /convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + /cookie-signature@1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} dev: false @@ -13706,6 +14368,10 @@ packages: engines: {node: '>= 0.6'} dev: false + /copy-descriptor@0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} + /copy-to-clipboard@3.3.3: resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} dependencies: @@ -13714,15 +14380,15 @@ packages: /core-js-compat@3.29.0: resolution: {integrity: sha512-ScMn3uZNAFhK2DGoEfErguoiAHhV2Ju+oJo/jK08p7B3f3UhocUrCCkTvnZaiS+edl5nlIoiBXKcwMc6elv4KQ==} dependencies: - browserslist: 4.21.10 + browserslist: 4.21.5 - /core-js-compat@3.32.1: - resolution: {integrity: sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==} + /core-js-compat@3.30.2: + resolution: {integrity: sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA==} dependencies: - browserslist: 4.21.10 + browserslist: 4.22.1 - /core-js@3.31.1: - resolution: {integrity: sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ==} + /core-js@3.33.0: + resolution: {integrity: sha512-HoZr92+ZjFEKar5HS6MC776gYslNOKHt75mEBKWKnPeFDpZ6nH5OeF3S6HFT1mUAUZKrzkez05VboaX8myjSuw==} requiresBuild: true dev: false @@ -13786,21 +14452,27 @@ packages: path-type: 4.0.0 dev: true - /cosmiconfig@8.2.0: - resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==} + /cosmiconfig@8.3.6(typescript@5.0.4): + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 + typescript: 5.0.4 dev: true /cosmjs-types@0.7.2: resolution: {integrity: sha512-vf2uLyktjr/XVAgEq0DjMxeAWh1yYREe7AMHDKd7EiHVqxBPCaBS+qEEQUkXbR9ndnckqr1sUG8BQhazh4X5lA==} dependencies: long: 4.0.0 - protobufjs: 6.11.3 + protobufjs: 6.11.4 dev: false /crc-32@1.2.2: @@ -13833,21 +14505,31 @@ packages: /create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - /cross-fetch@3.1.5: + /cross-fetch@3.1.5(encoding@0.1.13): resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} dependencies: - node-fetch: 2.6.7 + node-fetch: 2.6.7(encoding@0.1.13) transitivePeerDependencies: - encoding - /cross-fetch@4.0.0: + /cross-fetch@4.0.0(encoding@0.1.13): resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==} dependencies: - node-fetch: 2.6.12 + node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding dev: false + /cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.1 + shebang-command: 1.2.0 + which: 1.3.1 + /cross-spawn@7.0.3: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} @@ -13855,6 +14537,11 @@ packages: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 + dev: true + + /crypt@0.0.2: + resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==} + dev: false /crypto-js@3.3.0: resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} @@ -13978,12 +14665,12 @@ packages: dependencies: '@babel/runtime': 7.21.5 + /dateformat@4.6.3: + resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} + dev: false + /dayjs@1.11.7: resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} - dev: true - - /dayjs@1.11.9: - resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} /debounce@1.2.1: resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} @@ -14126,6 +14813,10 @@ packages: resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} dev: false + /deepmerge@3.3.0: + resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==} + engines: {node: '>=0.10.0'} + /deepmerge@4.3.0: resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} engines: {node: '>=0.10.0'} @@ -14134,6 +14825,7 @@ packages: /deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} + dev: false /default-browser-id@3.0.0: resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} @@ -14178,6 +14870,7 @@ packages: get-intrinsic: 1.2.1 gopd: 1.0.1 has-property-descriptors: 1.0.0 + dev: true /define-lazy-prop@3.0.0: resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} @@ -14198,6 +14891,26 @@ packages: define-data-property: 1.1.0 has-property-descriptors: 1.0.0 object-keys: 1.1.1 + dev: true + + /define-property@0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 0.1.6 + + /define-property@1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 1.0.2 + + /define-property@2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 1.0.2 + isobject: 3.0.1 /del@4.1.1: resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} @@ -14209,7 +14922,7 @@ packages: is-path-in-cwd: 2.1.0 p-map: 2.1.0 pify: 4.0.1 - rimraf: 2.7.1 + rimraf: 2.6.3 dev: false /delay@5.0.0: @@ -14233,10 +14946,10 @@ packages: engines: {node: '>= 0.6.0'} dev: true - /deprecated-react-native-prop-types@4.1.0: - resolution: {integrity: sha512-WfepZHmRbbdTvhcolb8aOKEvQdcmTMn5tKLbqbXmkBvjFjRVWAYqsXk/DBsV8TZxws8SdGHLuHaJrHSQUPRdfw==} + /deprecated-react-native-prop-types@3.0.1: + resolution: {integrity: sha512-J0jCJcsk4hMlIb7xwOZKLfMpuJn6l8UtrPEzzQV5ewz5gvKNYakhBuq9h2rWX7YwHHJZFhU5W8ye7dB9oN8VcQ==} dependencies: - '@react-native/normalize-colors': 0.72.0 + '@react-native/normalize-color': 2.1.0 invariant: 2.2.4 prop-types: 15.8.1 @@ -14245,10 +14958,18 @@ packages: engines: {node: '>=6'} dev: false + /destr@2.0.1: + resolution: {integrity: sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA==} + dev: false + /destroy@1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + /detect-browser@5.2.0: + resolution: {integrity: sha512-tr7XntDAu50BVENgQfajMLzacmSe34D+qZc4zjnniz0ZVuw/TZcLcyxHQjYpJTM36sGEkZZlYLnIM1hH7alTMA==} + dev: false + /detect-browser@5.3.0: resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} @@ -14319,11 +15040,11 @@ packages: /dlv@1.1.3: resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} - /dns-over-http-resolver@1.2.3(node-fetch@2.6.9): + /dns-over-http-resolver@1.2.3(node-fetch@2.7.0): resolution: {integrity: sha512-miDiVSI6KSNbi4SVifzO/reD8rMnxgrlnkrlkugOLQpWQTe2qMdHsZp5DmfKjxNE+/T3VAAYLQUZMv9SMr6+AA==} dependencies: debug: 4.3.4(supports-color@5.5.0) - native-fetch: 3.0.0(node-fetch@2.6.9) + native-fetch: 3.0.0(node-fetch@2.7.0) receptacle: 1.3.2 transitivePeerDependencies: - node-fetch @@ -14400,7 +15121,6 @@ packages: /dotenv@16.0.3: resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} engines: {node: '>=12'} - dev: true /dset@3.1.2: resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==} @@ -14431,6 +15151,7 @@ packages: /eip1193-provider@1.0.1: resolution: {integrity: sha512-kSuqwQ26d7CzuS/t3yRXo2Su2cVH0QfvyKbr2H7Be7O5YDyIq4hQGCNTo5wRdP07bt+E2R/8nPCzey4ojBHf7g==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@json-rpc-tools/provider': 1.7.6 transitivePeerDependencies: @@ -14457,8 +15178,8 @@ packages: /electron-to-chromium@1.4.328: resolution: {integrity: sha512-DE9tTy2PNmy1v55AZAO542ui+MLC2cvINMK4P2LXGsJdput/ThVG9t+QGecPuAZZSgC8XoI+Jh9M1OG9IoNSCw==} - /electron-to-chromium@1.4.497: - resolution: {integrity: sha512-9cvj6XkrgyxDySKJWYVIyq7p9bOAkH3M3jANgvWNX/F2jIAfbBN4oBNLJg1i68I8wAKVuih2IL4y1n9hqbL3Aw==} + /electron-to-chromium@1.4.548: + resolution: {integrity: sha512-R77KD6mXv37DOyKLN/eW1rGS61N6yHOfapNSX9w+y9DdPG83l9Gkuv7qkCFZ4Ta4JPhrjgQfYbv4Y3TnM1Hi2Q==} /elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} @@ -14476,6 +15197,10 @@ packages: resolution: {integrity: sha512-pfu3XkHSeqXjygyoKtRsmJdsNkRxhkE7hlnWrYBoPnm8V03aJ8Y9H5oRUQ+fF4WRZpjfJFsw5V7ewRVhuj/8cA==} dev: false + /emoji-regex@7.0.3: + resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} + dev: false + /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -14509,7 +15234,6 @@ packages: resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} dependencies: iconv-lite: 0.6.3 - dev: false /end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} @@ -14535,18 +15259,28 @@ packages: engines: {node: '>=10.0.0'} dev: false + /enhanced-resolve@5.13.0: + resolution: {integrity: sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==} + engines: {node: '>=10.13.0'} + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + dev: true + /enhanced-resolve@5.15.0: resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 + dev: false - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + /enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 + strip-ansi: 6.0.1 dev: false /entities@2.2.0: @@ -14567,8 +15301,8 @@ packages: engines: {node: '>=6'} dev: false - /envinfo@7.10.0: - resolution: {integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==} + /envinfo@7.8.1: + resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==} engines: {node: '>=4'} hasBin: true @@ -14717,15 +15451,15 @@ packages: safe-array-concat: 1.0.1 dev: true - /es-module-lexer@1.3.0: - resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==} + /es-module-lexer@1.3.1: + resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} dev: false /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.0 has: 1.0.3 has-tostringtag: 1.0.0 @@ -15003,7 +15737,7 @@ packages: optional: true dependencies: '@next/eslint-plugin-next': 13.5.2 - '@rushstack/eslint-patch': 1.4.0 + '@rushstack/eslint-patch': 1.5.1 '@typescript-eslint/parser': 5.59.11(eslint@8.30.0)(typescript@5.0.4) eslint: 8.30.0 eslint-import-resolver-node: 0.3.7 @@ -15045,7 +15779,7 @@ packages: eslint-plugin-import: '*' dependencies: debug: 4.3.4(supports-color@5.5.0) - enhanced-resolve: 5.15.0 + enhanced-resolve: 5.13.0 eslint: 8.30.0 eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.30.0) eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-typescript@3.5.5)(eslint@8.30.0) @@ -15375,6 +16109,11 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true + /eslint-visitor-keys@3.4.0: + resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + /eslint-visitor-keys@3.4.1: resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -15545,9 +16284,10 @@ packages: /ethereum-cryptography@0.1.3: resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==} + deprecated: Upgrade to ethereum-cryptography@2.0 for security and reduced package size dependencies: '@types/pbkdf2': 3.1.0 - '@types/secp256k1': 4.0.3 + '@types/secp256k1': 4.0.4 blakejs: 1.2.1 browserify-aes: 1.2.0 bs58check: 2.1.2 @@ -15604,7 +16344,7 @@ packages: resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==} engines: {node: '>=10.0.0'} dependencies: - '@types/bn.js': 5.1.1 + '@types/bn.js': 5.1.2 bn.js: 5.2.1 create-hash: 1.2.0 ethereum-cryptography: 0.1.3 @@ -15683,6 +16423,10 @@ packages: /eventemitter3@4.0.7: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + /eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + dev: false + /events@3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} @@ -15704,9 +16448,21 @@ packages: dependencies: minimal-polyfills: 2.2.3 run-exclusive: 2.2.19 - tsafe: 1.6.4 + tsafe: 1.6.5 dev: false + /execa@1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} + dependencies: + cross-spawn: 6.0.5 + get-stream: 4.1.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.0.0 + /execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} @@ -15720,6 +16476,7 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 + dev: true /execa@6.1.0: resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} @@ -15766,6 +16523,20 @@ packages: strip-final-newline: 3.0.0 dev: true + /expand-brackets@2.1.4: + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} + dependencies: + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + posix-character-classes: 0.1.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + /expand-template@2.0.3: resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} engines: {node: '>=6'} @@ -15816,6 +16587,19 @@ packages: type: 2.7.2 dev: false + /extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + dependencies: + is-extendable: 0.1.1 + + /extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + /extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} dev: false @@ -15829,6 +16613,21 @@ packages: tmp: 0.0.33 dev: true + /extglob@2.0.4: + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} + dependencies: + array-unique: 0.3.2 + define-property: 1.0.0 + expand-brackets: 2.1.4 + extend-shallow: 2.0.1 + fragment-cache: 0.2.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + /extract-files@11.0.0: resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} engines: {node: ^12.20 || >= 14.13} @@ -15843,6 +16642,10 @@ packages: resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} engines: {node: '> 0.1.90'} + /fast-copy@3.0.1: + resolution: {integrity: sha512-Knr7NOtK3HWRYGtHoJrjkaWepqT8thIVGAwt0p0aUs1zqkAzXZV4vo9fFNwyb5fcqK1GKYFYxldQdIDVKhUAfA==} + dev: false + /fast-decode-uri-component@1.0.1: resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} dev: true @@ -15854,8 +16657,8 @@ packages: resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} dev: true - /fast-fifo@1.2.0: - resolution: {integrity: sha512-NcvQXt7Cky1cNau15FWy64IjuO8X0JijhTBBrJj1YlxlDfRkJXNaK9RFUjwpfDPzMdv7wB38jr53l9tkNLxnWg==} + /fast-fifo@1.3.2: + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} dev: false /fast-glob@3.2.12: @@ -15875,6 +16678,10 @@ packages: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true + /fast-password-entropy@1.1.1: + resolution: {integrity: sha512-dxm29/BPFrNgyEDygg/lf9c2xQR0vnQhG7+hZjAI39M/3um9fD4xiqG6F0ZjW6bya5m9CI0u6YryHGRtxCGCiw==} + dev: false + /fast-querystring@1.1.2: resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==} dependencies: @@ -15897,8 +16704,8 @@ packages: punycode: 1.4.1 dev: true - /fast-xml-parser@4.2.7: - resolution: {integrity: sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==} + /fast-xml-parser@4.2.2: + resolution: {integrity: sha512-DLzIPtQqmvmdq3VUKR7T6omPK/VCRNqgFlGtbESfyhcH2R4I8EzK1/K6E8PkRCK2EabWrUHK32NjYRbEFnnz0Q==} hasBin: true dependencies: strnum: 1.0.5 @@ -15920,13 +16727,13 @@ packages: /fbjs@3.0.5: resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} dependencies: - cross-fetch: 3.1.5 + cross-fetch: 3.1.5(encoding@0.1.13) fbjs-css-vars: 1.0.2 loose-envify: 1.4.0 object-assign: 4.1.1 promise: 7.3.1 setimmediate: 1.0.5 - ua-parser-js: 1.0.35 + ua-parser-js: 1.0.36 transitivePeerDependencies: - encoding dev: true @@ -15983,9 +16790,18 @@ packages: /filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: - minimatch: 5.0.1 + minimatch: 5.1.6 dev: false + /fill-range@4.0.0: + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 2.0.1 + is-number: 3.0.0 + repeat-string: 1.6.1 + to-regex-range: 2.1.1 + /fill-range@7.0.1: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} @@ -16094,11 +16910,8 @@ packages: resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} dev: true - /flow-enums-runtime@0.0.5: - resolution: {integrity: sha512-PSZF9ZuaZD03sT9YaIs0FrGJ7lSUw7rHZIex+73UYVXg46eL/wxN5PaVcPJFudE2cJu5f0fezitV5aBkLHPUOQ==} - - /flow-parser@0.206.0: - resolution: {integrity: sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==} + /flow-parser@0.185.2: + resolution: {integrity: sha512-2hJ5ACYeJCzNtiVULov6pljKOLygy0zddoqSI1fFetM+XRPpRshFdGEijtqlamA1XwyZ+7rhryI6FQFzvtLWUQ==} engines: {node: '>=0.4.0'} /follow-redirects@1.15.2(debug@4.3.4): @@ -16118,6 +16931,10 @@ packages: dependencies: is-callable: 1.2.7 + /for-in@1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + /foreach@2.0.6: resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==} dev: true @@ -16176,6 +16993,12 @@ packages: resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} dev: true + /fragment-cache@0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} + dependencies: + map-cache: 0.2.2 + /framer-motion@8.5.5(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-5IDx5bxkjWHWUF3CVJoSyUVOtrbAxtzYBBowRE2uYI/6VYhkEBD+rbTHEGuUmbGHRj6YqqSfoG7Aa1cLyWCrBA==} peerDependencies: @@ -16206,7 +17029,7 @@ packages: jsonfile: 2.4.0 klaw: 1.3.1 path-is-absolute: 1.0.1 - rimraf: 2.7.1 + rimraf: 2.6.3 dev: false /fs-extra@10.1.0: @@ -16319,8 +17142,8 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - /get-func-name@2.0.0: - resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} + /get-func-name@2.0.2: + resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} dev: false /get-intrinsic@1.2.0: @@ -16337,6 +17160,7 @@ packages: has: 1.0.3 has-proto: 1.0.1 has-symbols: 1.0.3 + dev: true /get-iterator@1.0.2: resolution: {integrity: sha512-v+dm9bNVfOYsY1OrhaCrmyOcYoSeVvbt+hHZ0Au+T+p1y+0Uyj9aMaGIeUTT6xdpRbWzDeYKvfOslPhggQMcsg==} @@ -16351,6 +17175,12 @@ packages: resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} dev: false + /get-stream@4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + dependencies: + pump: 3.0.0 + /get-stream@5.2.0: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} engines: {node: '>=8'} @@ -16367,12 +17197,16 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.0 /get-tsconfig@4.5.0: resolution: {integrity: sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==} dev: true + /get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + /getpass@0.1.7: resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} dependencies: @@ -16411,15 +17245,15 @@ packages: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} dev: false - /glob@10.3.3: - resolution: {integrity: sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==} + /glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} engines: {node: '>=16 || 14 >=14.17'} hasBin: true dependencies: foreground-child: 3.1.1 - jackspeak: 2.3.0 + jackspeak: 2.3.6 minimatch: 9.0.3 - minipass: 7.0.3 + minipass: 7.0.4 path-scurry: 1.10.1 dev: true @@ -16465,6 +17299,17 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 + /glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.6 + once: 1.4.0 + dev: false + /global-dirs@0.1.1: resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} engines: {node: '>=4'} @@ -16494,7 +17339,7 @@ packages: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} dependencies: - define-properties: 1.2.1 + define-properties: 1.2.0 /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} @@ -16532,7 +17377,7 @@ packages: /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.0 /got@11.8.6: resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} @@ -16541,7 +17386,7 @@ packages: '@sindresorhus/is': 4.6.0 '@szmarczak/http-timer': 4.0.6 '@types/cacheable-request': 6.0.3 - '@types/responselike': 1.0.0 + '@types/responselike': 1.0.1 cacheable-lookup: 5.0.4 cacheable-request: 7.0.4 decompress-response: 6.0.0 @@ -16558,7 +17403,7 @@ packages: '@sindresorhus/is': 4.6.0 '@szmarczak/http-timer': 5.0.1 '@types/cacheable-request': 6.0.3 - '@types/responselike': 1.0.0 + '@types/responselike': 1.0.1 cacheable-lookup: 6.1.0 cacheable-request: 7.0.4 decompress-response: 6.0.0 @@ -16577,8 +17422,8 @@ packages: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true - /graphql-config@5.0.2(@types/node@17.0.45)(graphql@16.8.0): - resolution: {integrity: sha512-7TPxOrlbiG0JplSZYCyxn2XQtqVhXomEjXUmWJVSS5ET1nPhOJSsIb/WTwqWhcYX6G0RlHXSj9PLtGTKmxLNGg==} + /graphql-config@5.0.3(@types/node@17.0.45)(graphql@16.8.1)(typescript@5.0.4): + resolution: {integrity: sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==} engines: {node: '>= 16.0.0'} peerDependencies: cosmiconfig-toml-loader: ^1.0.0 @@ -16587,15 +17432,15 @@ packages: cosmiconfig-toml-loader: optional: true dependencies: - '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.0) - '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.0) - '@graphql-tools/load': 8.0.0(graphql@16.8.0) - '@graphql-tools/merge': 9.0.0(graphql@16.8.0) - '@graphql-tools/url-loader': 8.0.0(@types/node@17.0.45)(graphql@16.8.0) - '@graphql-tools/utils': 10.0.5(graphql@16.8.0) - cosmiconfig: 8.2.0 - graphql: 16.8.0 - jiti: 1.19.3 + '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/load': 8.0.0(graphql@16.8.1) + '@graphql-tools/merge': 9.0.0(graphql@16.8.1) + '@graphql-tools/url-loader': 8.0.0(@types/node@17.0.45)(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + cosmiconfig: 8.3.6(typescript@5.0.4) + graphql: 16.8.1 + jiti: 1.20.0 minimatch: 4.2.3 string-env-interpolation: 1.0.1 tslib: 2.5.0 @@ -16603,77 +17448,78 @@ packages: - '@types/node' - bufferutil - encoding + - typescript - utf-8-validate dev: true - /graphql-import-node@0.0.5(graphql@16.8.0): + /graphql-import-node@0.0.5(graphql@16.8.1): resolution: {integrity: sha512-OXbou9fqh9/Lm7vwXT0XoRN9J5+WCYKnbiTalgFDvkQERITRmcfncZs6aVABedd5B85yQU5EULS4a5pnbpuI0Q==} peerDependencies: graphql: '*' dependencies: - graphql: 16.8.0 + graphql: 16.8.1 dev: true - /graphql-request@6.1.0(graphql@16.8.0): + /graphql-request@6.1.0(graphql@16.8.1): resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} peerDependencies: graphql: 14 - 16 dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) - cross-fetch: 3.1.5 - graphql: 16.8.0 + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + cross-fetch: 3.1.5(encoding@0.1.13) + graphql: 16.8.1 transitivePeerDependencies: - encoding - /graphql-tag@2.12.6(graphql@16.8.0): + /graphql-tag@2.12.6(graphql@16.8.1): resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.5.0 - /graphql-ws@5.12.1(graphql@16.8.0): + /graphql-ws@5.12.1(graphql@16.8.1): resolution: {integrity: sha512-umt4f5NnMK46ChM2coO36PTFhHouBrK9stWWBczERguwYrGnPNxJ9dimU6IyOBfOkC6Izhkg4H8+F51W/8CYDg==} engines: {node: '>=10'} peerDependencies: graphql: '>=0.11 <=16' dependencies: - graphql: 16.8.0 + graphql: 16.8.1 dev: true - /graphql-ws@5.14.0(graphql@16.8.0): - resolution: {integrity: sha512-itrUTQZP/TgswR4GSSYuwWUzrE/w5GhbwM2GX3ic2U7aw33jgEsayfIlvaj7/GcIvZgNMzsPTrE5hqPuFUiE5g==} + /graphql-ws@5.14.1(graphql@16.8.1): + resolution: {integrity: sha512-aqkls1espsygP1PfkAuuLIV96IbztQ6EaADse97pw8wRIMT3+AL/OYfS8V2iCRkc0gzckitoDRGCQEdnySggiA==} engines: {node: '>=10'} peerDependencies: graphql: '>=0.11 <=16' dependencies: - graphql: 16.8.0 + graphql: 16.8.1 dev: true - /graphql-yoga@3.9.1(graphql@16.8.0): + /graphql-yoga@3.9.1(graphql@16.8.1): resolution: {integrity: sha512-BB6EkN64VBTXWmf9Kym2OsVZFzBC0mAsQNo9eNB5xIr3t+x7qepQ34xW5A353NWol3Js3xpzxwIKFVF6l9VsPg==} peerDependencies: graphql: ^15.2.0 || ^16.0.0 dependencies: '@envelop/core': 3.0.6 - '@envelop/validation-cache': 5.1.3(@envelop/core@3.0.6)(graphql@16.8.0) - '@graphql-tools/executor': 0.0.18(graphql@16.8.0) - '@graphql-tools/schema': 9.0.19(graphql@16.8.0) - '@graphql-tools/utils': 9.2.1(graphql@16.8.0) + '@envelop/validation-cache': 5.1.3(@envelop/core@3.0.6)(graphql@16.8.1) + '@graphql-tools/executor': 0.0.18(graphql@16.8.1) + '@graphql-tools/schema': 9.0.19(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) '@graphql-yoga/logger': 0.0.1 '@graphql-yoga/subscription': 3.1.0 '@whatwg-node/fetch': 0.8.8 '@whatwg-node/server': 0.7.7 dset: 3.1.2 - graphql: 16.8.0 + graphql: 16.8.1 lru-cache: 7.18.3 tslib: 2.5.0 dev: true - /graphql@16.8.0: - resolution: {integrity: sha512-0oKGaR+y3qcS5mCu1vb7KG+a89vjn06C7Ihq/dDl3jA+A8B3TKomvi3CiEcVLJQGalbu8F52LxkOym7U5sSfbg==} + /graphql@16.8.1: + resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} /hamt-sharding@3.0.2: @@ -16681,7 +17527,7 @@ packages: engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: sparse-array: 1.3.2 - uint8arrays: 4.0.3 + uint8arrays: 4.0.6 dev: false /har-schema@2.0.0: @@ -16703,9 +17549,8 @@ packages: engines: {node: '>=6'} dev: true - /hardhat@2.16.1(ts-node@10.9.1)(typescript@5.0.4): - resolution: {integrity: sha512-QpBjGXFhhSYoYBGEHyoau/A63crZOP+i3GbNxzLGkL6IklzT+piN14+wGnINNCg5BLSKisQI/RAySPzaWRcx/g==} - engines: {node: '>=14.0.0'} + /hardhat@2.18.0(ts-node@10.9.1)(typescript@5.0.4): + resolution: {integrity: sha512-Com3SPFgk6v73LlE3rypuh32DYxOWvNbVBm5xfPUEzGVEW54Fcc4j3Uq7j6COj7S8Jc27uNihLFsveHYM0YJkQ==} hasBin: true peerDependencies: ts-node: '*' @@ -16718,21 +17563,20 @@ packages: dependencies: '@ethersproject/abi': 5.7.0 '@metamask/eth-sig-util': 4.0.1 - '@nomicfoundation/ethereumjs-block': 5.0.1 - '@nomicfoundation/ethereumjs-blockchain': 7.0.1 - '@nomicfoundation/ethereumjs-common': 4.0.1 - '@nomicfoundation/ethereumjs-evm': 2.0.1 - '@nomicfoundation/ethereumjs-rlp': 5.0.1 - '@nomicfoundation/ethereumjs-statemanager': 2.0.1 - '@nomicfoundation/ethereumjs-trie': 6.0.1 - '@nomicfoundation/ethereumjs-tx': 5.0.1 - '@nomicfoundation/ethereumjs-util': 9.0.1 - '@nomicfoundation/ethereumjs-vm': 7.0.1 + '@nomicfoundation/ethereumjs-block': 5.0.2 + '@nomicfoundation/ethereumjs-blockchain': 7.0.2 + '@nomicfoundation/ethereumjs-common': 4.0.2 + '@nomicfoundation/ethereumjs-evm': 2.0.2 + '@nomicfoundation/ethereumjs-rlp': 5.0.2 + '@nomicfoundation/ethereumjs-statemanager': 2.0.2 + '@nomicfoundation/ethereumjs-trie': 6.0.2 + '@nomicfoundation/ethereumjs-tx': 5.0.2 + '@nomicfoundation/ethereumjs-util': 9.0.2 + '@nomicfoundation/ethereumjs-vm': 7.0.2 '@nomicfoundation/solidity-analyzer': 0.1.1 '@sentry/node': 5.30.0 - '@types/bn.js': 5.1.1 + '@types/bn.js': 5.1.2 '@types/lru-cache': 5.1.1 - abort-controller: 3.0.0 adm-zip: 0.4.16 aggregate-error: 3.1.0 ansi-escapes: 4.3.2 @@ -16740,7 +17584,7 @@ packages: chokidar: 3.5.3 ci-info: 2.0.0 debug: 4.3.4(supports-color@5.5.0) - enquirer: 2.3.6 + enquirer: 2.4.1 env-paths: 2.2.1 ethereum-cryptography: 1.2.0 ethereumjs-abi: 0.6.8 @@ -16748,7 +17592,7 @@ packages: fp-ts: 1.19.3 fs-extra: 7.0.1 glob: 7.2.0 - immutable: 4.3.0 + immutable: 4.3.4 io-ts: 1.10.4 keccak: 3.0.3 lodash: 4.17.21 @@ -16764,7 +17608,7 @@ packages: ts-node: 10.9.1(@types/node@17.0.45)(typescript@5.0.4) tsort: 0.0.1 typescript: 5.0.4 - undici: 5.22.1 + undici: 5.25.4 uuid: 8.3.2 ws: 7.5.9 transitivePeerDependencies: @@ -16787,7 +17631,7 @@ packages: /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.0 /has-proto@1.0.1: resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} @@ -16803,6 +17647,33 @@ packages: dependencies: has-symbols: 1.0.3 + /has-value@0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} + dependencies: + get-value: 2.0.6 + has-values: 0.1.4 + isobject: 2.1.0 + + /has-value@1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} + dependencies: + get-value: 2.0.6 + has-values: 1.0.0 + isobject: 3.0.1 + + /has-values@0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} + + /has-values@1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-number: 3.0.0 + kind-of: 4.0.0 + /has@1.0.3: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} engines: {node: '>= 0.4.0'} @@ -16844,13 +17715,20 @@ packages: tslib: 2.5.0 dev: true - /hermes-estree@0.12.0: - resolution: {integrity: sha512-+e8xR6SCen0wyAKrMT3UD0ZCCLymKhRgjEB5sS28rKiFir/fXgLoeRilRUssFCILmGHb+OvHDUlhxs0+IEyvQw==} + /help-me@4.2.0: + resolution: {integrity: sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==} + dependencies: + glob: 8.1.0 + readable-stream: 3.6.2 + dev: false + + /hermes-estree@0.8.0: + resolution: {integrity: sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q==} - /hermes-parser@0.12.0: - resolution: {integrity: sha512-d4PHnwq6SnDLhYl3LHNHvOg7nQ6rcI7QVil418REYksv0Mh3cEkHDcuhGxNQ3vgnLSLl4QSvDrFCwQNYdpWlzw==} + /hermes-parser@0.8.0: + resolution: {integrity: sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA==} dependencies: - hermes-estree: 0.12.0 + hermes-estree: 0.8.0 /hermes-profile-transformer@0.0.6: resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} @@ -16861,8 +17739,8 @@ packages: /hey-listen@1.0.8: resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} - /hls.js@1.4.10: - resolution: {integrity: sha512-wAVSj4Fm2MqOHy5+BlYnlKxXvJlv5IuZHjlzHu18QmjRzSDFQiUDWdHs5+NsFMQrgKEBwuWDcyvaMC9dUzJ5Uw==} + /hls.js@1.4.12: + resolution: {integrity: sha512-1RBpx2VihibzE3WE9kGoVCtrhhDWTzydzElk/kyRbEOLnb1WIE+3ZabM/L8BqKFTCL3pUy4QzhXgD1Q6Igr1JA==} dev: false /hmac-drbg@1.0.1: @@ -16985,8 +17863,8 @@ packages: - supports-color dev: false - /https-proxy-agent@7.0.1: - resolution: {integrity: sha512-Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ==} + /https-proxy-agent@7.0.2: + resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==} engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 @@ -16998,6 +17876,7 @@ packages: /human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} + dev: true /human-signals@3.0.1: resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} @@ -17043,7 +17922,6 @@ packages: engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 - dev: false /idb@7.1.1: resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} @@ -17063,12 +17941,10 @@ packages: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} - /image-size@1.0.2: - resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==} - engines: {node: '>=14.0.0'} + /image-size@0.6.3: + resolution: {integrity: sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==} + engines: {node: '>=4.0'} hasBin: true - dependencies: - queue: 6.0.2 /immediate@3.0.6: resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} @@ -17081,8 +17957,8 @@ packages: resolution: {integrity: sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q==} dev: false - /immer@10.0.2: - resolution: {integrity: sha512-Rx3CqeqQ19sxUtYV9CU911Vhy8/721wRFnJv3REVGWUmoAcIwzifTsdmJte/MV+0/XpM35LZdQMBGkRIoLPwQA==} + /immer@10.0.3: + resolution: {integrity: sha512-pwupu3eWfouuaowscykeckFmVTpqbzW+rXFCX8rQLkZzM9ftBmU/++Ra+o+L27mz03zJTlyV4UUr+fdKNffo4A==} dev: false /immutable@3.7.6: @@ -17090,8 +17966,8 @@ packages: engines: {node: '>=0.8.0'} dev: true - /immutable@4.3.0: - resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==} + /immutable@4.3.4: + resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==} dev: false /import-fresh@2.0.0: @@ -17220,28 +18096,30 @@ packages: engines: {node: '>= 0.10'} dev: false - /ipfs-core-types@0.10.3(node-fetch@2.6.9): + /ipfs-core-types@0.10.3(node-fetch@2.7.0): resolution: {integrity: sha512-GNid2lRBjR5qgScCglgk7w9Hk3TZAwPHQXxOLQx72wgyc0jF2U5NXRoKW0GRvX8NPbHmsrFszForIqxd23I1Gw==} + deprecated: js-IPFS has been deprecated in favour of Helia - please see https://github.com/ipfs/js-ipfs/issues/4336 for details dependencies: '@ipld/dag-pb': 2.1.18 interface-datastore: 6.1.1 ipfs-unixfs: 6.0.9 - multiaddr: 10.0.1(node-fetch@2.6.9) + multiaddr: 10.0.1(node-fetch@2.7.0) multiformats: 9.9.0 transitivePeerDependencies: - node-fetch - supports-color dev: false - /ipfs-core-utils@0.14.3(node-fetch@2.6.9): + /ipfs-core-utils@0.14.3(node-fetch@2.7.0): resolution: {integrity: sha512-aBkewVhgAj3NWXPwu6imj0wADGiGVZmJzqKzODOJsibDjkx6FGdMv8kvvqtLnK8LS/dvSk9yk32IDtuDyYoV7Q==} + deprecated: js-IPFS has been deprecated in favour of Helia - please see https://github.com/ipfs/js-ipfs/issues/4336 for details dependencies: any-signal: 3.0.1 blob-to-it: 1.0.4 browser-readablestream-to-it: 1.0.3 debug: 4.3.4(supports-color@5.5.0) err-code: 3.0.1 - ipfs-core-types: 0.10.3(node-fetch@2.6.9) + ipfs-core-types: 0.10.3(node-fetch@2.7.0) ipfs-unixfs: 6.0.9 ipfs-utils: 9.0.14 it-all: 1.0.6 @@ -17249,11 +18127,11 @@ packages: it-peekable: 1.0.3 it-to-stream: 1.0.0 merge-options: 3.0.4 - multiaddr: 10.0.1(node-fetch@2.6.9) - multiaddr-to-uri: 8.0.0(node-fetch@2.6.9) + multiaddr: 10.0.1(node-fetch@2.7.0) + multiaddr-to-uri: 8.0.0(node-fetch@2.7.0) multiformats: 9.9.0 nanoid: 3.3.6 - parse-duration: 1.0.3 + parse-duration: 1.1.0 timeout-abort-controller: 3.0.0 uint8arrays: 3.1.1 transitivePeerDependencies: @@ -17262,9 +18140,10 @@ packages: - supports-color dev: false - /ipfs-http-client@56.0.0(node-fetch@2.6.9): + /ipfs-http-client@56.0.0(node-fetch@2.7.0): resolution: {integrity: sha512-JF3on9c0hB9XHk/UCxbyC6rSpERuj8F/0QcN/HImZoHNUKZ0/T8DpgVopocKdmGi1gr3Izlop7poaXomSt8Nug==} engines: {node: '>=15.0.0', npm: '>=3.0.0'} + deprecated: js-IPFS has been deprecated in favour of Helia - please see https://github.com/ipfs/js-ipfs/issues/4336 for details dependencies: '@ipld/dag-cbor': 7.0.3 '@ipld/dag-json': 8.0.11 @@ -17273,15 +18152,15 @@ packages: dag-jose: 1.0.0 debug: 4.3.4(supports-color@5.5.0) err-code: 3.0.1 - ipfs-core-types: 0.10.3(node-fetch@2.6.9) - ipfs-core-utils: 0.14.3(node-fetch@2.6.9) + ipfs-core-types: 0.10.3(node-fetch@2.7.0) + ipfs-core-utils: 0.14.3(node-fetch@2.7.0) ipfs-utils: 9.0.14 it-first: 1.0.7 it-last: 1.0.6 merge-options: 3.0.4 - multiaddr: 10.0.1(node-fetch@2.6.9) + multiaddr: 10.0.1(node-fetch@2.7.0) multiformats: 9.9.0 - parse-duration: 1.0.3 + parse-duration: 1.1.0 stream-to-it: 0.2.4 uint8arrays: 3.1.1 transitivePeerDependencies: @@ -17294,8 +18173,8 @@ packages: resolution: {integrity: sha512-//VPZOqbONtc1HNtb+sBrw+nIGijHEloSm1O3LVR5orSlhHQ8X7+OCkeqceFBhu40tPMe/TwgAPrkvh+fXL+bA==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: - '@ipld/dag-pb': 4.0.2 - '@multiformats/murmur3': 2.1.3 + '@ipld/dag-pb': 4.0.6 + '@multiformats/murmur3': 2.1.7 err-code: 3.0.1 hamt-sharding: 3.0.2 interface-blockstore: 4.0.1 @@ -17308,7 +18187,7 @@ packages: multiformats: 11.0.2 rabin-wasm: 0.1.5 uint8arraylist: 2.4.3 - uint8arrays: 4.0.3 + uint8arrays: 4.0.6 transitivePeerDependencies: - encoding - supports-color @@ -17319,7 +18198,7 @@ packages: engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: err-code: 3.0.1 - protobufjs: 6.11.3 + protobufjs: 6.11.4 dev: false /ipfs-unixfs@9.0.1: @@ -17327,7 +18206,7 @@ packages: engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: err-code: 3.0.1 - protobufjs: 7.2.3 + protobufjs: 7.2.5 dev: false /ipfs-utils@9.0.14: @@ -17346,8 +18225,8 @@ packages: it-to-stream: 1.0.0 merge-options: 3.0.4 nanoid: 3.3.6 - native-fetch: 3.0.0(node-fetch@2.6.12) - node-fetch: 2.6.12 + native-fetch: 3.0.0(node-fetch@2.7.0) + node-fetch: 2.7.0(encoding@0.1.13) react-native-fetch-api: 3.0.0 stream-to-it: 0.2.4 transitivePeerDependencies: @@ -17393,6 +18272,18 @@ packages: is-windows: 1.0.2 dev: true + /is-accessor-descriptor@0.1.6: + resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + + /is-accessor-descriptor@1.0.0: + resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + /is-arguments@1.1.1: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} @@ -17404,8 +18295,8 @@ packages: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.1 - is-typed-array: 1.1.12 + get-intrinsic: 1.2.0 + is-typed-array: 1.1.10 /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} @@ -17439,6 +18330,9 @@ packages: call-bind: 1.0.2 has-tostringtag: 1.0.0 + /is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + /is-buffer@2.0.5: resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} engines: {node: '>=4'} @@ -17465,12 +18359,40 @@ packages: has: 1.0.3 dev: true + /is-data-descriptor@0.1.4: + resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + + /is-data-descriptor@1.0.0: + resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 + /is-descriptor@0.1.6: + resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: 0.1.6 + is-data-descriptor: 0.1.4 + kind-of: 5.1.0 + + /is-descriptor@1.0.2: + resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: 1.0.0 + is-data-descriptor: 1.0.0 + kind-of: 6.0.3 + /is-directory@0.3.1: resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} engines: {node: '>=0.10.0'} @@ -17491,6 +18413,16 @@ packages: resolution: {integrity: sha512-FO/Rhvz5tuw4MCWkpMzHFKWD2LsfHzIb7i6MdPYZ/KW7AlxawyLkqdy+jPZP1WubqEADE3O4FUENlJHDfQASRg==} dev: false + /is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + /is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + dependencies: + is-plain-object: 2.0.4 + /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -17583,6 +18515,12 @@ packages: dependencies: has-tostringtag: 1.0.0 + /is-number@3.0.0: + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -17674,6 +18612,10 @@ packages: dependencies: call-bind: 1.0.2 + /is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} @@ -17717,6 +18659,7 @@ packages: engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.11 + dev: true /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} @@ -17762,7 +18705,6 @@ packages: /is-windows@1.0.2: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} - dev: true /is-wsl@1.1.0: resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} @@ -17784,7 +18726,6 @@ packages: /isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - dev: true /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} @@ -17794,6 +18735,12 @@ packages: engines: {node: '>=12'} dev: false + /isobject@2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} + dependencies: + isarray: 1.0.0 + /isobject@3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} @@ -17801,7 +18748,7 @@ packages: /isomorphic-fetch@3.0.0: resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} dependencies: - node-fetch: 2.6.9 + node-fetch: 2.7.0(encoding@0.1.13) whatwg-fetch: 3.6.2 transitivePeerDependencies: - encoding @@ -17829,6 +18776,14 @@ packages: ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) dev: true + /isomorphic-ws@5.0.0(ws@8.14.1): + resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} + peerDependencies: + ws: '*' + dependencies: + ws: 8.14.1 + dev: true + /isstream@0.1.2: resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} dev: false @@ -17901,7 +18856,7 @@ packages: resolution: {integrity: sha512-pLULMZMAB/+vbdvbZtebC0nWBTbG581lk6w8P7DfIIIKUfa8FbY7Oi0FxZcFPbxvISs7A9E+cMpLDBc1XhpAOA==} dependencies: buffer: 6.0.3 - fast-fifo: 1.2.0 + fast-fifo: 1.3.2 get-iterator: 1.0.2 p-defer: 3.0.0 p-fifo: 1.0.0 @@ -17918,8 +18873,8 @@ packages: set-function-name: 2.0.1 dev: true - /jackspeak@2.3.0: - resolution: {integrity: sha512-uKmsITSsF4rUWQHzqaRUuyAir3fZfW3f202Ee34lz/gZCi970CPZwyQXLGNgWJvvZbvFyzeyGq0+4fcG/mBKZg==} + /jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} engines: {node: '>=14'} dependencies: '@isaacs/cliui': 8.0.2 @@ -17960,47 +18915,54 @@ packages: - bufferutil - utf-8-validate - /jest-environment-node@29.6.3: - resolution: {integrity: sha512-PKl7upfPJXMYbWpD+60o4HP86KvFO2c9dZ+Zr6wUzsG5xcPx/65o3ArNgHW5M0RFvLYdW4/aieR4JSooD0a2ew==} + /jest-environment-node@29.5.0: + resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.6.3 - '@jest/fake-timers': 29.6.3 - '@jest/types': 29.6.3 + '@jest/environment': 29.5.0 + '@jest/fake-timers': 29.5.0 + '@jest/types': 29.5.0 '@types/node': 17.0.45 - jest-mock: 29.6.3 - jest-util: 29.6.3 + jest-mock: 29.5.0 + jest-util: 29.5.0 - /jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + /jest-get-type@26.3.0: + resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} + engines: {node: '>= 10.14.2'} - /jest-message-util@29.6.3: - resolution: {integrity: sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==} + /jest-message-util@29.5.0: + resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.22.10 - '@jest/types': 29.6.3 + '@babel/code-frame': 7.22.13 + '@jest/types': 29.5.0 '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 - pretty-format: 29.6.3 + pretty-format: 29.5.0 slash: 3.0.0 stack-utils: 2.0.6 - /jest-mock@29.6.3: - resolution: {integrity: sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==} + /jest-mock@29.5.0: + resolution: {integrity: sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.3 + '@jest/types': 29.5.0 '@types/node': 17.0.45 - jest-util: 29.6.3 + jest-util: 29.5.0 /jest-regex-util@27.5.1: resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-serializer@27.5.1: + resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + '@types/node': 17.0.45 + graceful-fs: 4.2.11 + /jest-util@27.5.1: resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -18012,27 +18974,27 @@ packages: graceful-fs: 4.2.11 picomatch: 2.3.1 - /jest-util@29.6.3: - resolution: {integrity: sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==} + /jest-util@29.5.0: + resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.3 + '@jest/types': 29.5.0 '@types/node': 17.0.45 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - /jest-validate@29.6.3: - resolution: {integrity: sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + /jest-validate@26.6.2: + resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} + engines: {node: '>= 10.14.2'} dependencies: - '@jest/types': 29.6.3 + '@jest/types': 26.6.2 camelcase: 6.3.0 chalk: 4.1.2 - jest-get-type: 29.6.3 + jest-get-type: 26.3.0 leven: 3.1.0 - pretty-format: 29.6.3 + pretty-format: 26.6.2 /jest-worker@26.6.2: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} @@ -18051,8 +19013,8 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jiti@1.19.3: - resolution: {integrity: sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==} + /jiti@1.20.0: + resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==} hasBin: true /joi@17.9.2: @@ -18064,9 +19026,8 @@ packages: '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 - /jose@4.14.4: - resolution: {integrity: sha512-j8GhLiKmUAh+dsFXlX1aJCbt5KMibuKb+d7j1JaOJG6s2UjX1PQlW+OKB/sD4a/5ZYF4RcmYmLSndOoU3Lt/3g==} - dev: true + /jose@4.15.2: + resolution: {integrity: sha512-IY73F228OXRl9ar3jJagh7Vnuhj/GzBunPiZP13K0lOl7Am9SoWW3kEzq3MCllJMTtZqHTiDXQvoRd4U95aU6A==} /jotai@1.13.1(@babel/core@7.18.5)(react@18.2.0): resolution: {integrity: sha512-RUmH1S4vLsG3V6fbGlKzGJnLrDcC/HNb5gH2AeA9DzuJknoVxSGvvg8OBB7lke+gDc4oXmdVsaKn/xDUhWZ0vw==} @@ -18112,10 +19073,20 @@ packages: react: 18.2.0 dev: false + /joycon@3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + dev: false + /js-base64@3.7.5: resolution: {integrity: sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA==} dev: false + /js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} + dev: false + /js-sdsl@4.3.0: resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==} @@ -18147,36 +19118,33 @@ packages: resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} dev: false - /jsc-android@250231.0.0: - resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} - - /jsc-safe-url@0.2.4: - resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} + /jsc-android@250230.2.1: + resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==} - /jscodeshift@0.14.0(@babel/preset-env@7.20.2): - resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} + /jscodeshift@0.13.1(@babel/preset-env@7.21.5): + resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} hasBin: true peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: '@babel/core': 7.18.5 - '@babel/parser': 7.22.10 + '@babel/parser': 7.23.0 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.5) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.5) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.18.5) - '@babel/preset-env': 7.20.2(@babel/core@7.18.5) - '@babel/preset-flow': 7.22.5(@babel/core@7.18.5) - '@babel/preset-typescript': 7.21.0(@babel/core@7.18.5) - '@babel/register': 7.22.5(@babel/core@7.18.5) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.5) + '@babel/preset-env': 7.21.5(@babel/core@7.18.5) + '@babel/preset-flow': 7.21.4(@babel/core@7.18.5) + '@babel/preset-typescript': 7.21.5(@babel/core@7.18.5) + '@babel/register': 7.21.0(@babel/core@7.18.5) babel-core: 7.0.0-bridge.0(@babel/core@7.18.5) chalk: 4.1.2 - flow-parser: 0.206.0 + flow-parser: 0.185.2 graceful-fs: 4.2.11 - micromatch: 4.0.5 + micromatch: 3.1.10 neo-async: 2.6.2 node-dir: 0.1.17 - recast: 0.21.5 + recast: 0.20.5 temp: 0.8.4 write-file-atomic: 2.4.3 transitivePeerDependencies: @@ -18232,7 +19200,7 @@ packages: dependencies: '@babel/runtime': 7.21.5 '@types/json-schema': 7.0.11 - ts-algebra: 1.2.0 + ts-algebra: 1.2.2 dev: true /json-schema-traverse@0.4.1: @@ -18357,8 +19325,8 @@ packages: node-gyp-build: 4.6.0 readable-stream: 3.6.2 - /keyv@4.5.2: - resolution: {integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==} + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: json-buffer: 3.0.1 dev: false @@ -18366,6 +19334,22 @@ packages: /keyvaluestorage-interface@1.0.0: resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==} + /kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: 1.1.6 + + /kind-of@4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: 1.1.6 + + /kind-of@5.1.0: + resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} + engines: {node: '>=0.10.0'} + /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} @@ -18499,14 +19483,18 @@ packages: type-check: 0.4.0 dev: true - /libsodium-wrappers@0.7.11: - resolution: {integrity: sha512-SrcLtXj7BM19vUKtQuyQKiQCRJPgbpauzl3s0rSwD+60wtHqSUuqcoawlMDheCJga85nKOQwxNYQxf/CKAvs6Q==} + /libphonenumber-js@1.10.47: + resolution: {integrity: sha512-b4t7VQDV29xx/ni+58yl9KWPGjnDLDXCeCTLrD4V8vDpObXZRZBrg7uX/HWZ7YXiJKqdBDGgc+barUUTNB6Slw==} + dev: false + + /libsodium-wrappers@0.7.13: + resolution: {integrity: sha512-kasvDsEi/r1fMzKouIDv7B8I6vNmknXwGiYodErGuESoFTohGSKZplFtVxZqHaoQ217AynyIFgnOVRitpHs0Qw==} dependencies: - libsodium: 0.7.11 + libsodium: 0.7.13 dev: false - /libsodium@0.7.11: - resolution: {integrity: sha512-WPfJ7sS53I2s4iM58QxY3Inb83/6mjlYgcmZs7DJsvDlnmVUwNinBCi5vBT43P6bHRy01O4zsMU2CoVR6xJ40A==} + /libsodium@0.7.13: + resolution: {integrity: sha512-mK8ju0fnrKXXfleL53vtp9xiPq5hKM0zbDQtcxQIsSmxNgSxqCj6R7Hl9PkrNe2j29T4yoDaF7DJLK9/i5iWUw==} dev: false /lie@3.1.1: @@ -18584,7 +19572,7 @@ packages: log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.3.0 - rxjs: 7.8.1 + rxjs: 7.8.0 through: 2.3.8 wrap-ansi: 7.0.0 dev: true @@ -18607,6 +19595,11 @@ packages: dependencies: '@types/trusted-types': 2.0.3 + /lit-html@2.8.0: + resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==} + dependencies: + '@types/trusted-types': 2.0.3 + /lit-siwe@1.1.8(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2)(@ethersproject/wallet@5.7.0): resolution: {integrity: sha512-gXI8GG0GAClw6G7T9p4p6Kn9ywDo8j2d90ShaYArJdsqqO9gwXfzxF84SMeY+bpsNqqQ3FahrhEwTCHd6w7wNw==} peerDependencies: @@ -18629,15 +19622,15 @@ packages: dependencies: '@lit/reactive-element': 1.6.1 lit-element: 3.3.2 - lit-html: 2.7.3 + lit-html: 2.8.0 dev: false - /lit@2.7.3: - resolution: {integrity: sha512-0a+u+vVbmgSfPu+fyvqjMPBX0Kwbyj9QOv9MbQFZhWGlV2cyk3lEwgfUQgYN+i/lx++1Z3wZknSIp3QCKxHLyg==} + /lit@2.7.5: + resolution: {integrity: sha512-i/cH7Ye6nBDUASMnfwcictBnsTN91+aBjXoTHF2xARghXScKxpD4F4WYI+VLXg9lqbMinDfvoI7VnZXjyHgdfQ==} dependencies: '@lit/reactive-element': 1.6.1 lit-element: 3.3.2 - lit-html: 2.7.3 + lit-html: 2.8.0 dev: false /lit@2.7.6: @@ -18645,9 +19638,17 @@ packages: dependencies: '@lit/reactive-element': 1.6.1 lit-element: 3.3.2 - lit-html: 2.7.3 + lit-html: 2.8.0 + + /lit@2.8.0: + resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==} + dependencies: + '@lit/reactive-element': 1.6.1 + lit-element: 3.3.2 + lit-html: 2.8.0 + dev: false - /livepeer@2.6.0(react@18.2.0): + /livepeer@2.6.0(@types/react@18.0.26)(react@18.2.0): resolution: {integrity: sha512-tURkBvJQi0nyS5WlFHhKyRGx0qKqGt/DbKSzhUwJ9fAzT3GAlipujgKVOc3wnNWIj76LQrCp7onUmsrrkFRGkQ==} peerDependencies: react: '>=17.0.0' @@ -18655,17 +19656,18 @@ packages: react: optional: true dependencies: - '@livepeer/core': 1.8.0(react@18.2.0) + '@livepeer/core': 1.8.8(@types/react@18.0.26)(react@18.2.0) '@stitches/core': 1.2.8 - core-js: 3.31.1 - cross-fetch: 3.1.5 - hls.js: 1.4.10 + core-js: 3.33.0 + cross-fetch: 3.1.5(encoding@0.1.13) + hls.js: 1.4.12 ms: 3.0.0-canary.1 multiformats: 9.9.0 react: 18.2.0 - tus-js-client: 3.1.0 + tus-js-client: 3.1.1 zustand: 4.3.8(react@18.2.0) transitivePeerDependencies: + - '@types/react' - encoding - immer dev: false @@ -18863,9 +19865,12 @@ packages: hasBin: true dependencies: ansi-fragments: 0.2.1 - dayjs: 1.11.9 + dayjs: 1.11.7 yargs: 15.4.1 + /lokijs@1.5.12: + resolution: {integrity: sha512-Q5ALD6JiS6xAUWCwX3taQmgwxyveCtIIuL08+ml0nHwT3k0S/GIFJN+Hd38b1qYIMaE5X++iqsqWVksz7SYW+Q==} + /long@4.0.0: resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} dev: false @@ -18883,7 +19888,7 @@ packages: /loupe@2.3.6: resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} dependencies: - get-func-name: 2.0.0 + get-func-name: 2.0.2 dev: false /lower-case-first@2.0.2: @@ -18983,7 +19988,6 @@ packages: /map-cache@0.2.2: resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} engines: {node: '>=0.10.0'} - dev: true /map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} @@ -18995,6 +19999,12 @@ packages: engines: {node: '>=8'} dev: true + /map-visit@1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} + dependencies: + object-visit: 1.0.1 + /marked@4.3.0: resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==} engines: {node: '>= 12'} @@ -19014,6 +20024,14 @@ packages: safe-buffer: 5.2.1 dev: false + /md5@2.3.0: + resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==} + dependencies: + charenc: 0.0.2 + crypt: 0.0.2 + is-buffer: 1.1.6 + dev: false + /mdast-util-definitions@5.1.2: resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} dependencies: @@ -19167,22 +20185,22 @@ packages: resolution: {integrity: sha512-TostQBiwYRIwSE5++jGmacu3ODcKAgqb0Y/pnIohXS7sWxh1gCkSptbmF1a43faehRDpcHf7J/kv0Ml2D/zblQ==} engines: {node: '>= 7.6.0'} dependencies: - bignumber.js: 9.1.1 + bignumber.js: 9.1.2 buffer-reverse: 1.0.1 crypto-js: 3.3.0 treeify: 1.1.0 - web3-utils: 1.10.0 + web3-utils: 1.10.2 dev: false /merkletreejs@0.3.9: resolution: {integrity: sha512-NjlATjJr4NEn9s8v/VEHhgwRWaE1eA/Une07d9SEqKzULJi1Wsh0Y3svwJdP2bYLMmgSBHzOrNydMWM1NN9VeQ==} engines: {node: '>= 7.6.0'} dependencies: - bignumber.js: 9.1.1 + bignumber.js: 9.1.2 buffer-reverse: 1.0.1 crypto-js: 3.3.0 treeify: 1.1.0 - web3-utils: 1.10.0 + web3-utils: 1.10.2 dev: false /meros@1.3.0(@types/node@17.0.45): @@ -19202,65 +20220,70 @@ packages: engines: {node: '>= 0.6'} dev: false - /metro-babel-transformer@0.76.7: - resolution: {integrity: sha512-bgr2OFn0J4r0qoZcHrwEvccF7g9k3wdgTOgk6gmGHrtlZ1Jn3oCpklW/DfZ9PzHfjY2mQammKTc19g/EFGyOJw==} - engines: {node: '>=16'} + /metro-babel-transformer@0.73.5: + resolution: {integrity: sha512-G3awAJ9of/R2jEg+MRokYcq/TNvMSxJipwybQ2NfwwSj5iLEmRH2YbwTx5w8f5qKgs2K4SS2pmBIs8qjdV6p3Q==} dependencies: - '@babel/core': 7.22.10 - hermes-parser: 0.12.0 + '@babel/core': 7.18.5 + hermes-parser: 0.8.0 + metro-source-map: 0.73.5 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - /metro-cache-key@0.76.7: - resolution: {integrity: sha512-0pecoIzwsD/Whn/Qfa+SDMX2YyasV0ndbcgUFx7w1Ct2sLHClujdhQ4ik6mvQmsaOcnGkIyN0zcceMDjC2+BFQ==} - engines: {node: '>=16'} + /metro-babel-transformer@0.73.9: + resolution: {integrity: sha512-DlYwg9wwYIZTHtic7dyD4BP0SDftoltZ3clma76nHu43blMWsCnrImHeHsAVne3XsQ+RJaSRxhN5nkG2VyVHwA==} + dependencies: + '@babel/core': 7.23.0 + hermes-parser: 0.8.0 + metro-source-map: 0.73.9 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color - /metro-cache@0.76.7: - resolution: {integrity: sha512-nWBMztrs5RuSxZRI7hgFgob5PhYDmxICh9FF8anm9/ito0u0vpPvRxt7sRu8fyeD2AHdXqE7kX32rWY0LiXgeg==} - engines: {node: '>=16'} + /metro-cache-key@0.73.9: + resolution: {integrity: sha512-uJg+6Al7UoGIuGfoxqPBy6y1Ewq7Y8/YapGYIDh6sohInwt/kYKnPZgLDYHIPvY2deORnQ/2CYo4tOeBTnhCXQ==} + + /metro-cache@0.73.9: + resolution: {integrity: sha512-upiRxY8rrQkUWj7ieACD6tna7xXuXdu2ZqrheksT79ePI0aN/t0memf6WcyUtJUMHZetke3j+ppELNvlmp3tOw==} dependencies: - metro-core: 0.76.7 + metro-core: 0.73.9 rimraf: 3.0.2 - /metro-config@0.76.7: - resolution: {integrity: sha512-CFDyNb9bqxZemiChC/gNdXZ7OQkIwmXzkrEXivcXGbgzlt/b2juCv555GWJHyZSlorwnwJfY3uzAFu4A9iRVfg==} - engines: {node: '>=16'} + /metro-config@0.73.9: + resolution: {integrity: sha512-NiWl1nkYtjqecDmw77tbRbXnzIAwdO6DXGZTuKSkH+H/c1NKq1eizO8Fe+NQyFtwR9YLqn8Q0WN1nmkwM1j8CA==} dependencies: - connect: 3.7.0 cosmiconfig: 5.2.1 - jest-validate: 29.6.3 - metro: 0.76.7 - metro-cache: 0.76.7 - metro-core: 0.76.7 - metro-runtime: 0.76.7 + jest-validate: 26.6.2 + metro: 0.73.9 + metro-cache: 0.73.9 + metro-core: 0.73.9 + metro-runtime: 0.73.9 transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - /metro-core@0.76.7: - resolution: {integrity: sha512-0b8KfrwPmwCMW+1V7ZQPkTy2tsEKZjYG9Pu1PTsu463Z9fxX7WaR0fcHFshv+J1CnQSUTwIGGjbNvj1teKe+pw==} - engines: {node: '>=16'} + /metro-core@0.73.9: + resolution: {integrity: sha512-1NTs0IErlKcFTfYyRT3ljdgrISWpl1nys+gaHkXapzTSpvtX9F1NQNn5cgAuE+XIuTJhbsCdfIJiM2JXbrJQaQ==} dependencies: lodash.throttle: 4.1.1 - metro-resolver: 0.76.7 + metro-resolver: 0.73.9 - /metro-file-map@0.76.7: - resolution: {integrity: sha512-s+zEkTcJ4mOJTgEE2ht4jIo1DZfeWreQR3tpT3gDV/Y/0UQ8aJBTv62dE775z0GLsWZApiblAYZsj7ZE8P06nw==} - engines: {node: '>=16'} + /metro-file-map@0.73.9: + resolution: {integrity: sha512-R/Wg3HYeQhYY3ehWtfedw8V0ne4lpufG7a21L3GWer8tafnC9pmjoCKEbJz9XZkVj9i1FtxE7UTbrtZNeIILxQ==} dependencies: + abort-controller: 3.0.0 anymatch: 3.1.3 debug: 2.6.9 fb-watchman: 2.0.2 graceful-fs: 4.2.11 invariant: 2.2.4 jest-regex-util: 27.5.1 + jest-serializer: 27.5.1 jest-util: 27.5.1 jest-worker: 27.5.1 micromatch: 4.0.5 - node-abort-controller: 3.1.1 nullthrows: 1.1.1 walker: 1.0.8 optionalDependencies: @@ -19268,199 +20291,252 @@ packages: transitivePeerDependencies: - supports-color - /metro-inspector-proxy@0.76.7: - resolution: {integrity: sha512-rNZ/6edTl/1qUekAhAbaFjczMphM50/UjtxiKulo6vqvgn/Mjd9hVqDvVYfAMZXqPvlusD88n38UjVYPkruLSg==} - engines: {node: '>=16'} + /metro-hermes-compiler@0.73.9: + resolution: {integrity: sha512-5B3vXIwQkZMSh3DQQY23XpTCpX9kPLqZbA3rDuAcbGW0tzC3f8dCenkyBb0GcCzyTDncJeot/A7oVCVK6zapwg==} + + /metro-inspector-proxy@0.73.9: + resolution: {integrity: sha512-B3WrWZnlYhtTrv0IaX3aUAhi2qVILPAZQzb5paO1e+xrz4YZHk9c7dXv7qe7B/IQ132e3w46y3AL7rFo90qVjA==} hasBin: true dependencies: connect: 3.7.0 debug: 2.6.9 - node-fetch: 2.6.12 ws: 7.5.9 yargs: 17.7.2 transitivePeerDependencies: - bufferutil - - encoding - supports-color - utf-8-validate - /metro-minify-terser@0.76.7: - resolution: {integrity: sha512-FQiZGhIxCzhDwK4LxyPMLlq0Tsmla10X7BfNGlYFK0A5IsaVKNJbETyTzhpIwc+YFRT4GkFFwgo0V2N5vxO5HA==} - engines: {node: '>=16'} + /metro-minify-terser@0.73.9: + resolution: {integrity: sha512-MTGPu2qV5qtzPJ2SqH6s58awHDtZ4jd7lmmLR+7TXDwtZDjIBA0YVfI0Zak2Haby2SqoNKrhhUns/b4dPAQAVg==} dependencies: - terser: 5.19.2 + terser: 5.17.1 - /metro-minify-uglify@0.76.7: - resolution: {integrity: sha512-FuXIU3j2uNcSvQtPrAJjYWHruPiQ+EpE++J9Z+VznQKEHcIxMMoQZAfIF2IpZSrZYfLOjVFyGMvj41jQMxV1Vw==} - engines: {node: '>=16'} + /metro-minify-uglify@0.73.9: + resolution: {integrity: sha512-gzxD/7WjYcnCNGiFJaA26z34rjOp+c/Ft++194Wg91lYep3TeWQ0CnH8t2HRS7AYDHU81SGWgvD3U7WV0g4LGA==} dependencies: uglify-es: 3.3.9 - /metro-react-native-babel-preset@0.76.7(@babel/core@7.18.5): - resolution: {integrity: sha512-R25wq+VOSorAK3hc07NW0SmN8z9S/IR0Us0oGAsBcMZnsgkbOxu77Mduqf+f4is/wnWHc5+9bfiqdLnaMngiVw==} - engines: {node: '>=16'} + /metro-react-native-babel-preset@0.73.5(@babel/core@7.18.5): + resolution: {integrity: sha512-Ej6J8ozWSs6nrh0nwX7hgX4oPXUai40ckah37cSLu8qeED2XiEtfLV1YksTLafFE8fX0EieiP97U97dkOGHP4w==} peerDependencies: '@babel/core': '*' dependencies: '@babel/core': 7.18.5 '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.18.5) '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-proposal-export-default-from': 7.22.5(@babel/core@7.18.5) + '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.18.5) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.18.5) '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.18.5) '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.5) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.5) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.18.5) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.18.5) + '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.18.5) '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.5) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.5) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.18.5) '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.18.5) '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.18.5) '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.18.5) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.18.5) + '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.18.5) + '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.18.5) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.5) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.5) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.18.5) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.5) '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.18.5) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.5) '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.18.5) - '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.18.5) - '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.18.5) - '@babel/plugin-transform-runtime': 7.22.10(@babel/core@7.18.5) + '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.18.5) + '@babel/plugin-transform-runtime': 7.21.4(@babel/core@7.18.5) '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.5) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.18.5) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.5) - '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.18.5) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.5) - '@babel/template': 7.22.5 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.18.5) + '@babel/template': 7.22.15 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color - /metro-react-native-babel-preset@0.76.7(@babel/core@7.22.10): - resolution: {integrity: sha512-R25wq+VOSorAK3hc07NW0SmN8z9S/IR0Us0oGAsBcMZnsgkbOxu77Mduqf+f4is/wnWHc5+9bfiqdLnaMngiVw==} - engines: {node: '>=16'} + /metro-react-native-babel-preset@0.73.9(@babel/core@7.18.5): + resolution: {integrity: sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.18.5 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.18.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.18.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.5) + '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.18.5) + '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.18.5) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.18.5) + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.18.5) + '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.18.5) + '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.18.5) + '@babel/plugin-transform-runtime': 7.21.4(@babel/core@7.18.5) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.18.5) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.5) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.5) + '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.18.5) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.5) + '@babel/template': 7.22.15 + react-refresh: 0.4.3 + transitivePeerDependencies: + - supports-color + + /metro-react-native-babel-preset@0.73.9(@babel/core@7.23.0): + resolution: {integrity: sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==} peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-export-default-from': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.10) - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-runtime': 7.22.10(@babel/core@7.22.10) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.10) - '@babel/template': 7.22.5 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.22.10) + '@babel/core': 7.23.0 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.0) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.23.0) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.0) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.23.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.23.0) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.23.0) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.23.0) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.23.0) + '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.23.0) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.23.0) + '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.23.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.23.0) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.23.0) + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.23.0) + '@babel/plugin-transform-runtime': 7.21.4(@babel/core@7.23.0) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.23.0) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.23.0) + '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.23.0) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.23.0) + '@babel/template': 7.22.15 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color - /metro-react-native-babel-transformer@0.76.7(@babel/core@7.18.5): - resolution: {integrity: sha512-W6lW3J7y/05ph3c2p3KKJNhH0IdyxdOCbQ5it7aM2MAl0SM4wgKjaV6EYv9b3rHklpV6K3qMH37UKVcjMooWiA==} - engines: {node: '>=16'} + /metro-react-native-babel-transformer@0.73.5(@babel/core@7.18.5): + resolution: {integrity: sha512-CZYgUguqFTzV9vSOZb60p8qlp31aWz8aBB6OqoZ2gJday+n/1k+Y0yy6VPr/tfXJheuQYVIXKvG1gMmUDyxt+Q==} peerDependencies: '@babel/core': '*' dependencies: '@babel/core': 7.18.5 babel-preset-fbjs: 3.4.0(@babel/core@7.18.5) - hermes-parser: 0.12.0 - metro-react-native-babel-preset: 0.76.7(@babel/core@7.18.5) + hermes-parser: 0.8.0 + metro-babel-transformer: 0.73.5 + metro-react-native-babel-preset: 0.73.5(@babel/core@7.18.5) + metro-source-map: 0.73.5 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - /metro-resolver@0.76.7: - resolution: {integrity: sha512-pC0Wgq29HHIHrwz23xxiNgylhI8Rq1V01kQaJ9Kz11zWrIdlrH0ZdnJ7GC6qA0ErROG+cXmJ0rJb8/SW1Zp2IA==} - engines: {node: '>=16'} + /metro-react-native-babel-transformer@0.73.9(@babel/core@7.18.5): + resolution: {integrity: sha512-DSdrEHuQ22ixY7DyipyKkIcqhOJrt5s6h6X7BYJCP9AMUfXOwLe2biY3BcgJz5GOXv8/Akry4vTCvQscVS1otQ==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.18.5 + babel-preset-fbjs: 3.4.0(@babel/core@7.18.5) + hermes-parser: 0.8.0 + metro-babel-transformer: 0.73.9 + metro-react-native-babel-preset: 0.73.9(@babel/core@7.18.5) + metro-source-map: 0.73.9 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color - /metro-runtime@0.76.7: - resolution: {integrity: sha512-MuWHubQHymUWBpZLwuKZQgA/qbb35WnDAKPo83rk7JRLIFPvzXSvFaC18voPuzJBt1V98lKQIonh6MiC9gd8Ug==} - engines: {node: '>=16'} + /metro-resolver@0.73.9: + resolution: {integrity: sha512-Ej3wAPOeNRPDnJmkK0zk7vJ33iU07n+oPhpcf5L0NFkWneMmSM2bflMPibI86UjzZGmRfn0AhGhs8yGeBwQ/Xg==} + dependencies: + absolute-path: 0.0.0 + + /metro-runtime@0.73.5: + resolution: {integrity: sha512-8QJOS7bhJmR6r/Gkki/qY9oX/DdxnLhS8FpdG1Xmm2hDeUVAug12ekWTiCRMu7d1CDVv1F8WvUz09QckZ0dO0g==} dependencies: '@babel/runtime': 7.21.5 react-refresh: 0.4.3 - /metro-runtime@0.76.8: - resolution: {integrity: sha512-XKahvB+iuYJSCr3QqCpROli4B4zASAYpkK+j3a0CJmokxCDNbgyI4Fp88uIL6rNaZfN0Mv35S0b99SdFXIfHjg==} - engines: {node: '>=16'} + /metro-runtime@0.73.9: + resolution: {integrity: sha512-d5Hs83FpKB9r8q8Vb95+fa6ESpwysmPr4lL1I2rM2qXAFiO7OAPT9Bc23WmXgidkBtD0uUFdB2lG+H1ATz8rZg==} dependencies: '@babel/runtime': 7.21.5 react-refresh: 0.4.3 - /metro-source-map@0.76.7: - resolution: {integrity: sha512-Prhx7PeRV1LuogT0Kn5VjCuFu9fVD68eefntdWabrksmNY6mXK8pRqzvNJOhTojh6nek+RxBzZeD6MIOOyXS6w==} - engines: {node: '>=16'} + /metro-source-map@0.73.5: + resolution: {integrity: sha512-58p3zNWgUrqYYjFJb0KkZ+uJurTL4oz7i5T7577b3kvTYuJ0eK4y7rtYf8EwOfMYxRAn/m20aH1Y1fHTsLUwjQ==} dependencies: - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 invariant: 2.2.4 - metro-symbolicate: 0.76.7 + metro-symbolicate: 0.73.5 nullthrows: 1.1.1 - ob1: 0.76.7 + ob1: 0.73.5 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color - /metro-source-map@0.76.8: - resolution: {integrity: sha512-Hh0ncPsHPVf6wXQSqJqB3K9Zbudht4aUtNpNXYXSxH+pteWqGAXnjtPsRAnCsCWl38wL0jYF0rJDdMajUI3BDw==} - engines: {node: '>=16'} + /metro-source-map@0.73.9: + resolution: {integrity: sha512-l4VZKzdqafipriETYR6lsrwtavCF1+CMhCOY9XbyWeTrpGSNgJQgdeJpttzEZTHQQTLR0csQo0nD1ef3zEP6IQ==} dependencies: - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 invariant: 2.2.4 - metro-symbolicate: 0.76.8 + metro-symbolicate: 0.73.9 nullthrows: 1.1.1 - ob1: 0.76.8 + ob1: 0.73.9 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color - /metro-symbolicate@0.76.7: - resolution: {integrity: sha512-p0zWEME5qLSL1bJb93iq+zt5fz3sfVn9xFYzca1TJIpY5MommEaS64Va87lp56O0sfEIvh4307Oaf/ZzRjuLiQ==} - engines: {node: '>=16'} + /metro-symbolicate@0.73.5: + resolution: {integrity: sha512-aIC8sDlaEdtn0dTt+64IFZFEATatFx3GtzRbJi0+jJx47RjDRiuCt9fzmTMLuadWwnbFK9ZfVMuWEXM9sdtQ7w==} + engines: {node: '>=8.3'} hasBin: true dependencies: invariant: 2.2.4 - metro-source-map: 0.76.7 + metro-source-map: 0.73.5 nullthrows: 1.1.1 source-map: 0.5.7 through2: 2.0.5 @@ -19468,13 +20544,13 @@ packages: transitivePeerDependencies: - supports-color - /metro-symbolicate@0.76.8: - resolution: {integrity: sha512-LrRL3uy2VkzrIXVlxoPtqb40J6Bf1mlPNmUQewipc3qfKKFgtPHBackqDy1YL0njDsWopCKcfGtFYLn0PTUn3w==} - engines: {node: '>=16'} + /metro-symbolicate@0.73.9: + resolution: {integrity: sha512-4TUOwxRHHqbEHxRqRJ3wZY5TA8xq7AHMtXrXcjegMH9FscgYztsrIG9aNBUBS+VLB6g1qc6BYbfIgoAnLjCDyw==} + engines: {node: '>=8.3'} hasBin: true dependencies: invariant: 2.2.4 - metro-source-map: 0.76.8 + metro-source-map: 0.73.9 nullthrows: 1.1.1 source-map: 0.5.7 through2: 2.0.5 @@ -19482,33 +20558,32 @@ packages: transitivePeerDependencies: - supports-color - /metro-transform-plugins@0.76.7: - resolution: {integrity: sha512-iSmnjVApbdivjuzb88Orb0JHvcEt5veVyFAzxiS5h0QB+zV79w6JCSqZlHCrbNOkOKBED//LqtKbFVakxllnNg==} - engines: {node: '>=16'} + /metro-transform-plugins@0.73.9: + resolution: {integrity: sha512-r9NeiqMngmooX2VOKLJVQrMuV7PAydbqst5bFhdVBPcFpZkxxqyzjzo+kzrszGy2UpSQBZr2P1L6OMjLHwQwfQ==} dependencies: - '@babel/core': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10(supports-color@5.5.0) + '@babel/core': 7.23.0 + '@babel/generator': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.0 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - /metro-transform-worker@0.76.7: - resolution: {integrity: sha512-cGvELqFMVk9XTC15CMVzrCzcO6sO1lURfcbgjuuPdzaWuD11eEyocvkTX0DPiRjsvgAmicz4XYxVzgYl3MykDw==} - engines: {node: '>=16'} - dependencies: - '@babel/core': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/types': 7.22.10 - babel-preset-fbjs: 3.4.0(@babel/core@7.22.10) - metro: 0.76.7 - metro-babel-transformer: 0.76.7 - metro-cache: 0.76.7 - metro-cache-key: 0.76.7 - metro-source-map: 0.76.7 - metro-transform-plugins: 0.76.7 + /metro-transform-worker@0.73.9: + resolution: {integrity: sha512-Rq4b489sIaTUENA+WCvtu9yvlT/C6zFMWhU4sq+97W29Zj0mPBjdk+qGT5n1ZBgtBIJzZWt1KxeYuc17f4aYtQ==} + dependencies: + '@babel/core': 7.23.0 + '@babel/generator': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 + babel-preset-fbjs: 3.4.0(@babel/core@7.23.0) + metro: 0.73.9 + metro-babel-transformer: 0.73.9 + metro-cache: 0.73.9 + metro-cache-key: 0.73.9 + metro-hermes-compiler: 0.73.9 + metro-source-map: 0.73.9 + metro-transform-plugins: 0.73.9 nullthrows: 1.1.1 transitivePeerDependencies: - bufferutil @@ -19516,18 +20591,18 @@ packages: - supports-color - utf-8-validate - /metro@0.76.7: - resolution: {integrity: sha512-67ZGwDeumEPnrHI+pEDSKH2cx+C81Gx8Mn5qOtmGUPm/Up9Y4I1H2dJZ5n17MWzejNo0XAvPh0QL0CrlJEODVQ==} - engines: {node: '>=16'} + /metro@0.73.9: + resolution: {integrity: sha512-BlYbPmTF60hpetyNdKhdvi57dSqutb+/oK0u3ni4emIh78PiI0axGo7RfdsZ/mn3saASXc94tDbpC5yn7+NpEg==} hasBin: true dependencies: - '@babel/code-frame': 7.22.10 - '@babel/core': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10(supports-color@5.5.0) - '@babel/types': 7.22.10 + '@babel/code-frame': 7.22.13 + '@babel/core': 7.23.0 + '@babel/generator': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 + absolute-path: 0.0.0 accepts: 1.3.8 async: 3.2.4 chalk: 4.1.2 @@ -19537,35 +20612,36 @@ packages: denodeify: 1.2.1 error-stack-parser: 2.1.4 graceful-fs: 4.2.11 - hermes-parser: 0.12.0 - image-size: 1.0.2 + hermes-parser: 0.8.0 + image-size: 0.6.3 invariant: 2.2.4 jest-worker: 27.5.1 - jsc-safe-url: 0.2.4 lodash.throttle: 4.1.1 - metro-babel-transformer: 0.76.7 - metro-cache: 0.76.7 - metro-cache-key: 0.76.7 - metro-config: 0.76.7 - metro-core: 0.76.7 - metro-file-map: 0.76.7 - metro-inspector-proxy: 0.76.7 - metro-minify-terser: 0.76.7 - metro-minify-uglify: 0.76.7 - metro-react-native-babel-preset: 0.76.7(@babel/core@7.22.10) - metro-resolver: 0.76.7 - metro-runtime: 0.76.7 - metro-source-map: 0.76.7 - metro-symbolicate: 0.76.7 - metro-transform-plugins: 0.76.7 - metro-transform-worker: 0.76.7 + metro-babel-transformer: 0.73.9 + metro-cache: 0.73.9 + metro-cache-key: 0.73.9 + metro-config: 0.73.9 + metro-core: 0.73.9 + metro-file-map: 0.73.9 + metro-hermes-compiler: 0.73.9 + metro-inspector-proxy: 0.73.9 + metro-minify-terser: 0.73.9 + metro-minify-uglify: 0.73.9 + metro-react-native-babel-preset: 0.73.9(@babel/core@7.23.0) + metro-resolver: 0.73.9 + metro-runtime: 0.73.9 + metro-source-map: 0.73.9 + metro-symbolicate: 0.73.9 + metro-transform-plugins: 0.73.9 + metro-transform-worker: 0.73.9 mime-types: 2.1.35 - node-fetch: 2.6.12 + node-fetch: 2.7.0(encoding@0.1.13) nullthrows: 1.1.1 rimraf: 3.0.2 serialize-error: 2.1.0 source-map: 0.5.7 strip-ansi: 6.0.1 + temp: 0.8.3 throat: 5.0.0 ws: 7.5.9 yargs: 17.7.2 @@ -19755,6 +20831,26 @@ packages: - supports-color dev: false + /micromatch@3.1.10: + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + braces: 2.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + extglob: 2.0.4 + fragment-cache: 0.2.1 + kind-of: 6.0.3 + nanomatch: 1.2.13 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + /micromatch@4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} @@ -19847,6 +20943,13 @@ packages: brace-expansion: 2.0.1 dev: false + /minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + dev: false + /minimatch@6.2.0: resolution: {integrity: sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==} engines: {node: '>=10'} @@ -19880,8 +20983,8 @@ packages: yallist: 3.1.1 dev: false - /minipass@7.0.3: - resolution: {integrity: sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==} + /minipass@7.0.4: + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} engines: {node: '>=16 || 14 >=14.17'} dev: true @@ -19891,6 +20994,13 @@ packages: minipass: 2.9.0 dev: false + /mixin-deep@1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} + dependencies: + for-in: 1.0.2 + is-extendable: 1.0.1 + /mkdirp-classic@0.5.3: resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} dev: false @@ -19964,18 +21074,18 @@ packages: /moralis@2.22.4: resolution: {integrity: sha512-3DRVO6FoqFgvnDDP1rxXCdFMOJ9xKjY8JF0SC5ceh72ad5d4SCNZHQ2UOTYJU5jg9bXwQE3W559lCIkVnsqcKg==} dependencies: - '@moralisweb3/api-utils': 2.22.5 - '@moralisweb3/aptos-api': 2.22.5 - '@moralisweb3/auth': 2.22.5 - '@moralisweb3/common-aptos-utils': 2.22.5 - '@moralisweb3/common-auth-utils': 2.22.5 - '@moralisweb3/common-core': 2.22.5 + '@moralisweb3/api-utils': 2.23.1 + '@moralisweb3/aptos-api': 2.23.1 + '@moralisweb3/auth': 2.23.1 + '@moralisweb3/common-aptos-utils': 2.23.1 + '@moralisweb3/common-auth-utils': 2.23.1 + '@moralisweb3/common-core': 2.23.1 '@moralisweb3/common-evm-utils': 2.22.4 - '@moralisweb3/common-sol-utils': 2.22.5 - '@moralisweb3/common-streams-utils': 2.22.5 - '@moralisweb3/evm-api': 2.22.5 - '@moralisweb3/sol-api': 2.22.5 - '@moralisweb3/streams': 2.22.5 + '@moralisweb3/common-sol-utils': 2.23.1 + '@moralisweb3/common-streams-utils': 2.23.1 + '@moralisweb3/evm-api': 2.23.1 + '@moralisweb3/sol-api': 2.23.1 + '@moralisweb3/streams': 2.23.1 '@moralisweb3/streams-typings': 1.0.7 transitivePeerDependencies: - debug @@ -19985,11 +21095,11 @@ packages: resolution: {integrity: sha512-ejP6KioN4pigTGxL93APzOnvtLklParL59UQB2T3HWXQBxFcIp5/7YXFmkgiA6pNKKzjvnLhnonRBN5iSFMnNw==} dependencies: '@motionone/animation': 10.15.1 - '@motionone/dom': 10.15.5 - '@motionone/svelte': 10.15.5 + '@motionone/dom': 10.16.2 + '@motionone/svelte': 10.16.2 '@motionone/types': 10.15.1 '@motionone/utils': 10.15.1 - '@motionone/vue': 10.15.5 + '@motionone/vue': 10.16.2 dev: false /motion@10.16.2: @@ -20021,21 +21131,21 @@ packages: engines: {node: '>=12.13'} dev: false - /multiaddr-to-uri@8.0.0(node-fetch@2.6.9): + /multiaddr-to-uri@8.0.0(node-fetch@2.7.0): resolution: {integrity: sha512-dq4p/vsOOUdVEd1J1gl+R2GFrXJQH8yjLtz4hodqdVbieg39LvBOdMQRdQnfbg5LSM/q1BYNVf5CBbwZFFqBgA==} deprecated: This module is deprecated, please upgrade to @multiformats/multiaddr-to-uri dependencies: - multiaddr: 10.0.1(node-fetch@2.6.9) + multiaddr: 10.0.1(node-fetch@2.7.0) transitivePeerDependencies: - node-fetch - supports-color dev: false - /multiaddr@10.0.1(node-fetch@2.6.9): + /multiaddr@10.0.1(node-fetch@2.7.0): resolution: {integrity: sha512-G5upNcGzEGuTHkzxezPrrD6CaIHR9uo+7MwqhNVcXTs33IInon4y7nMiGxl2CY5hG7chvYQUQhz5V52/Qe3cbg==} deprecated: This module is deprecated, please upgrade to @multiformats/multiaddr dependencies: - dns-over-http-resolver: 1.2.3(node-fetch@2.6.9) + dns-over-http-resolver: 1.2.3(node-fetch@2.7.0) err-code: 3.0.1 is-ip: 3.1.0 multiformats: 9.9.0 @@ -20082,6 +21192,11 @@ packages: engines: {node: '>=16.0.0', npm: '>=7.0.0'} dev: false + /multiformats@12.1.2: + resolution: {integrity: sha512-6mRIsrZXyw5xNPO31IGBMmxgDXBSgCGDsBAtazkZ02ip4hMwZNrQvfxXZtytRoBSWuzSq5f9VmMnXj76fIz5FQ==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + dev: false + /multiformats@9.9.0: resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} @@ -20130,6 +21245,24 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + /nanomatch@1.2.13: + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + fragment-cache: 0.2.1 + is-windows: 1.0.2 + kind-of: 6.0.3 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + /napi-build-utils@1.0.2: resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} dev: false @@ -20138,20 +21271,12 @@ packages: resolution: {integrity: sha512-hmEVtAGYzVQpCKdbQea4skABsdXW4RUh5t5mJ2zzqowJS2OyXZTU1KhDVFhx+NlWZ4ap9mqR9TcDO3LTTttd+g==} dev: false - /native-fetch@3.0.0(node-fetch@2.6.12): - resolution: {integrity: sha512-G3Z7vx0IFb/FQ4JxvtqGABsOTIqRWvgQz6e+erkB+JJD6LrszQtMozEHI4EkmgZQvnGHrpLVzUWk7t4sJCIkVw==} - peerDependencies: - node-fetch: '*' - dependencies: - node-fetch: 2.6.12 - dev: false - - /native-fetch@3.0.0(node-fetch@2.6.9): + /native-fetch@3.0.0(node-fetch@2.7.0): resolution: {integrity: sha512-G3Z7vx0IFb/FQ4JxvtqGABsOTIqRWvgQz6e+erkB+JJD6LrszQtMozEHI4EkmgZQvnGHrpLVzUWk7t4sJCIkVw==} peerDependencies: node-fetch: '*' dependencies: - node-fetch: 2.6.9 + node-fetch: 2.7.0(encoding@0.1.13) dev: false /natural-compare-lite@1.4.0: @@ -20225,7 +21350,7 @@ packages: '@next/env': 13.5.2 '@swc/helpers': 0.5.2 busboy: 1.6.0 - caniuse-lite: 1.0.30001522 + caniuse-lite: 1.0.30001486 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -20247,6 +21372,9 @@ packages: - babel-plugin-macros dev: false + /nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + /nise@5.1.4: resolution: {integrity: sha512-8+Ib8rRJ4L0o3kfmyVCL7gzrohyDe0cMFTBa2d364yIrEGMEoetznKJx899YxjybU6bL9SQkYPSBBs1gyYs8Xg==} dependencies: @@ -20268,16 +21396,13 @@ packages: resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} engines: {node: '>=12.0.0'} - /node-abi@3.47.0: - resolution: {integrity: sha512-2s6B2CWZM//kPgwnuI0KrYwNjfdByE25zvAaEpq9IH4zcNsarH8Ihu/UuX6XMPEogDAxkuUFeZn60pXNHAqn3A==} + /node-abi@3.48.0: + resolution: {integrity: sha512-uWR/uwQyVV2iN5+Wkf1/oQxOR9YjU7gBclJLg2qK7GDvVohcnY6LaBXKV89N79EQFyN4/e43O32yQYE5QdFYTA==} engines: {node: '>=10'} dependencies: semver: 7.5.4 dev: false - /node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - /node-addon-api@2.0.2: resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} @@ -20296,8 +21421,12 @@ packages: engines: {node: '>=10.5.0'} dev: true - /node-fetch@2.6.12: - resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==} + /node-fetch-native@1.4.0: + resolution: {integrity: sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==} + dev: false + + /node-fetch@2.6.7(encoding@0.1.13): + resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 @@ -20305,10 +21434,11 @@ packages: encoding: optional: true dependencies: + encoding: 0.1.13 whatwg-url: 5.0.0 - /node-fetch@2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} + /node-fetch@2.6.9(encoding@0.1.13): + resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 @@ -20316,10 +21446,11 @@ packages: encoding: optional: true dependencies: + encoding: 0.1.13 whatwg-url: 5.0.0 - /node-fetch@2.6.9: - resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} + /node-fetch@2.7.0(encoding@0.1.13): + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 @@ -20327,8 +21458,8 @@ packages: encoding: optional: true dependencies: + encoding: 0.1.13 whatwg-url: 5.0.0 - dev: false /node-fetch@3.3.1: resolution: {integrity: sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==} @@ -20396,11 +21527,18 @@ packages: engines: {node: '>=10'} dev: false + /npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + dependencies: + path-key: 2.0.1 + /npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} dependencies: path-key: 3.1.1 + dev: true /npm-run-path@5.1.0: resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} @@ -20430,18 +21568,24 @@ packages: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} dev: false - /ob1@0.76.7: - resolution: {integrity: sha512-BQdRtxxoUNfSoZxqeBGOyuT9nEYSn18xZHwGMb0mMVpn2NBcYbnyKY4BK2LIHRgw33CBGlUmE+KMaNvyTpLLtQ==} - engines: {node: '>=16'} + /ob1@0.73.5: + resolution: {integrity: sha512-MxQH/rCq9/COvgTQbjCldArmesGEidZVVQIn4vDUJvJJ8uMphXOTCBsgWTief2ugvb0WUimIaslKSA+qryFjjQ==} - /ob1@0.76.8: - resolution: {integrity: sha512-dlBkJJV5M/msj9KYA9upc+nUWVwuOFFTbu28X6kZeGwcuW+JxaHSBZ70SYQnk5M+j5JbNLR6yKHmgW4M5E7X5g==} - engines: {node: '>=16'} + /ob1@0.73.9: + resolution: {integrity: sha512-kHOzCOFXmAM26fy7V/YuXNKne2TyRiXbFAvPBIbuedJCZZWQZHLdPzMeXJI4Egt6IcfDttRzN3jQ90wOwq1iNw==} /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} + /object-copy@0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} + dependencies: + copy-descriptor: 0.1.1 + define-property: 0.2.5 + kind-of: 3.2.2 + /object-hash@3.0.0: resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} engines: {node: '>= 6'} @@ -20465,6 +21609,12 @@ packages: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} + /object-visit@1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + /object.assign@4.1.4: resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} engines: {node: '>= 0.4'} @@ -20508,6 +21658,12 @@ packages: es-abstract: 1.21.2 dev: true + /object.pick@1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + /object.values@1.1.6: resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} engines: {node: '>= 0.4'} @@ -20527,6 +21683,14 @@ packages: http-https: 1.0.0 dev: false + /ofetch@1.3.3: + resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==} + dependencies: + destr: 2.0.1 + node-fetch-native: 1.4.0 + ufo: 1.3.1 + dev: false + /on-exit-leak-free@0.2.0: resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==} @@ -20596,8 +21760,8 @@ packages: resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==} dev: true - /openpgp@5.9.0: - resolution: {integrity: sha512-wEI6TAinCAq8ZLZA4oZ3ZtJ2BhhHj+CiPCd8TzE7zCicr0V8tvG5UF76OtddLLOJcK63w3Aj3KiRd+VLMScirQ==} + /openpgp@5.10.2: + resolution: {integrity: sha512-nRqMp4o31rBagWB02tgfKCsocXWq4uYobZf9GDVlD5rQXBq/wRIZHiDhGX1dlDAI2inkZcPd2dSZOqmtGnsK1A==} engines: {node: '>= 8.0.0'} dependencies: asn1.js: 5.4.1 @@ -20615,7 +21779,6 @@ packages: resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} engines: {node: '>= 0.8.0'} dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 @@ -20679,14 +21842,13 @@ packages: /p-fifo@1.0.0: resolution: {integrity: sha512-IjoCxXW48tqdtDFz6fqo5q1UfFVjjVZe8TC1QRflvNUJtNfCUhxOUw6MOVZhDPjqhSzc26xKdugsO17gmzd5+A==} dependencies: - fast-fifo: 1.2.0 + fast-fifo: 1.3.2 p-defer: 3.0.0 dev: false /p-finally@1.0.0: resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} engines: {node: '>=4'} - dev: false /p-limit@1.3.0: resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} @@ -20799,8 +21961,8 @@ packages: callsites: 3.1.0 dev: true - /parse-duration@1.0.3: - resolution: {integrity: sha512-o6NAh12na5VvR6nFejkU0gpQ8jmOY9Y9sTU2ke3L3G/d/3z8jqmbBbeyBGHU73P4JLXfc7tJARygIK3WGIkloA==} + /parse-duration@1.1.0: + resolution: {integrity: sha512-z6t9dvSJYaPoQq7quMzdEagSFtpGu+utzHqqxmpVWNNZRIXnvqyCvn9XsTdh7c/w0Bqmdz3RB3YnRaKtpRtEXQ==} dev: false /parse-filepath@1.0.2: @@ -20827,7 +21989,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.22.10 + '@babel/code-frame': 7.18.6 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -20844,6 +22006,10 @@ packages: tslib: 2.5.0 dev: true + /pascalcase@0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} + /path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} dev: true @@ -20876,9 +22042,14 @@ packages: resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} dev: false + /path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + /path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} + dev: true /path-key@4.0.0: resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} @@ -20905,7 +22076,7 @@ packages: engines: {node: '>=16 || 14 >=14.17'} dependencies: lru-cache: 10.0.1 - minipass: 7.0.3 + minipass: 7.0.4 dev: true /path-to-regexp@0.1.7: @@ -20995,8 +22166,28 @@ packages: /pino-abstract-transport@1.0.0: resolution: {integrity: sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==} dependencies: - readable-stream: 4.4.2 - split2: 4.2.0 + readable-stream: 4.3.0 + split2: 4.1.0 + dev: false + + /pino-pretty@10.2.3: + resolution: {integrity: sha512-4jfIUc8TC1GPUfDyMSlW1STeORqkoxec71yhxIpLDQapUu8WOuoz2TTCoidrIssyz78LZC69whBMPIKCMbi3cw==} + hasBin: true + dependencies: + colorette: 2.0.19 + dateformat: 4.6.3 + fast-copy: 3.0.1 + fast-safe-stringify: 2.1.1 + help-me: 4.2.0 + joycon: 3.1.1 + minimist: 1.2.8 + on-exit-leak-free: 2.1.0 + pino-abstract-transport: 1.0.0 + pump: 3.0.0 + readable-stream: 4.3.0 + secure-json-parse: 2.7.0 + sonic-boom: 3.2.1 + strip-json-comments: 3.1.1 dev: false /pino-std-serializers@4.0.0: @@ -21035,12 +22226,12 @@ packages: quick-format-unescaped: 4.0.4 real-require: 0.2.0 safe-stable-stringify: 2.4.3 - sonic-boom: 3.3.0 - thread-stream: 2.3.0 + sonic-boom: 3.2.1 + thread-stream: 2.4.1 dev: false - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + /pirates@4.0.5: + resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} engines: {node: '>= 6'} /pkg-dir@3.0.0: @@ -21056,31 +22247,40 @@ packages: find-up: 4.1.0 dev: false + /pngjs@3.4.0: + resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==} + engines: {node: '>=4.0.0'} + dev: false + /pngjs@5.0.0: resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} engines: {node: '>=10.13.0'} - /postcss-import@15.1.0(postcss@8.4.29): + /posix-character-classes@0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} + + /postcss-import@15.1.0(postcss@8.4.31): resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.2 - /postcss-js@4.0.1(postcss@8.4.29): + /postcss-js@4.0.1(postcss@8.4.31): resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.4.21 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.29 + postcss: 8.4.31 - /postcss-load-config@4.0.1(postcss@8.4.29)(ts-node@10.9.1): + /postcss-load-config@4.0.1(postcss@8.4.31)(ts-node@10.9.1): resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} engines: {node: '>= 14'} peerDependencies: @@ -21093,17 +22293,17 @@ packages: optional: true dependencies: lilconfig: 2.1.0 - postcss: 8.4.29 + postcss: 8.4.31 ts-node: 10.9.1(@types/node@17.0.45)(typescript@5.0.4) - yaml: 2.3.1 + yaml: 2.3.2 - /postcss-nested@6.0.1(postcss@8.4.29): + /postcss-nested@6.0.1(postcss@8.4.31): resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.11 /postcss-selector-parser@6.0.11: @@ -21134,8 +22334,8 @@ packages: source-map-js: 1.0.2 dev: true - /postcss@8.4.29: - resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==} + /postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.6 @@ -21145,6 +22345,10 @@ packages: /preact@10.13.2: resolution: {integrity: sha512-q44QFLhOhty2Bd0Y46fnYW0gD/cbVM9dUVtNTDKPcdXSMA7jfY+Jpd6rk3GB0lcQss0z5s/6CmVP0Z/hV+g6pw==} + /preact@10.4.1: + resolution: {integrity: sha512-WKrRpCSwL2t3tpOOGhf2WfTpcmbpxaWtDbdJdKdjd0aEiTkvOmS4NBkG6kzlaAHI9AkQ3iVqbFWM3Ei7mZ4o1Q==} + dev: false + /prebuild-install@7.1.1: resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} engines: {node: '>=10'} @@ -21156,7 +22360,7 @@ packages: minimist: 1.2.8 mkdirp-classic: 0.5.3 napi-build-utils: 1.0.2 - node-abi: 3.47.0 + node-abi: 3.48.0 pump: 3.0.0 rc: 1.2.8 simple-get: 4.0.1 @@ -21252,11 +22456,11 @@ packages: ansi-styles: 4.3.0 react-is: 17.0.2 - /pretty-format@29.6.3: - resolution: {integrity: sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==} + /pretty-format@29.5.0: + resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/schemas': 29.6.3 + '@jest/schemas': 29.4.3 ansi-styles: 5.2.0 react-is: 18.2.0 @@ -21320,8 +22524,8 @@ packages: resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==} dev: false - /protobufjs@6.11.3: - resolution: {integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==} + /protobufjs@6.11.4: + resolution: {integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==} hasBin: true requiresBuild: true dependencies: @@ -21340,8 +22544,8 @@ packages: long: 4.0.0 dev: false - /protobufjs@7.2.3: - resolution: {integrity: sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==} + /protobufjs@7.2.5: + resolution: {integrity: sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==} engines: {node: '>=12.0.0'} requiresBuild: true dependencies: @@ -21391,7 +22595,6 @@ packages: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - dev: false /punycode@1.4.1: resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} @@ -21420,6 +22623,20 @@ packages: engines: {node: '>=0.6.0', teleport: '>=0.2.0'} dev: true + /qrcode@1.4.4: + resolution: {integrity: sha512-oLzEC5+NKFou9P0bMj5+v6Z40evexeE29Z9cummZXZ9QXyMr3lphkURzxjXgPJC5azpxcshoDWV1xE46z+/c3Q==} + engines: {node: '>=4'} + hasBin: true + dependencies: + buffer: 5.7.1 + buffer-alloc: 1.2.0 + buffer-from: 1.1.2 + dijkstrajs: 1.0.3 + isarray: 2.0.5 + pngjs: 3.4.0 + yargs: 13.3.2 + dev: false + /qrcode@1.5.0: resolution: {integrity: sha512-9MgRpgVc+/+47dFvQeD6U2s0Z92EsKzcHogtum4QB+UNd025WOJSHvn/hjk9xmzj7Stj95CyUAs31mrjxliEsQ==} engines: {node: '>=10.13.0'} @@ -21517,11 +22734,6 @@ packages: resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} dev: false - /queue@6.0.2: - resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} - dependencies: - inherits: 2.0.4 - /quick-format-unescaped@4.0.4: resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} @@ -21543,7 +22755,7 @@ packages: bl: 5.1.0 debug: 4.3.4(supports-color@5.5.0) minimist: 1.2.8 - node-fetch: 2.6.12 + node-fetch: 2.7.0(encoding@0.1.13) readable-stream: 3.6.2 transitivePeerDependencies: - encoding @@ -21599,8 +22811,19 @@ packages: react: 18.2.0 dev: false - /react-devtools-core@4.28.0: - resolution: {integrity: sha512-E3C3X1skWBdBzwpOUbmXG8SgH6BtsluSMe+s6rRcujNKG1DGi8uIfhdhszkgDpAsMoE55hwqRUzeXCmETDBpTg==} + /react-device-detect@2.2.3(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw==} + peerDependencies: + react: '>= 0.14.0' + react-dom: '>= 0.14.0' + dependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + ua-parser-js: 1.0.36 + dev: false + + /react-devtools-core@4.27.6: + resolution: {integrity: sha512-jeFNhEzcSwpiqmw+zix5IFibNEPmUodICN7ClrlRKGktzO/3FMteMb52l1NRUiz/ABSYt9hOZ9IPgVDrg5pyUw==} dependencies: shell-quote: 1.8.1 ws: 7.5.9 @@ -21682,13 +22905,24 @@ packages: - supports-color dev: false + /react-native-codegen@0.71.5(@babel/preset-env@7.21.5): + resolution: {integrity: sha512-rfsuc0zkuUuMjFnrT55I1mDZ+pBRp2zAiRwxck3m6qeGJBGK5OV5JH66eDQ4aa+3m0of316CqrJDRzVlYufzIg==} + dependencies: + '@babel/parser': 7.23.0 + flow-parser: 0.185.2 + jscodeshift: 0.13.1(@babel/preset-env@7.21.5) + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + /react-native-fetch-api@3.0.0: resolution: {integrity: sha512-g2rtqPjdroaboDKTsJCTlcmtw54E25OjyaunUP0anOZn4Fuo2IKs8BVfe02zVggA/UysbmfSnRJIqtNkAgggNA==} dependencies: p-defer: 3.0.0 dev: false - /react-native-fs@2.20.0(react-native@0.72.4): + /react-native-fs@2.20.0(react-native@0.71.0): resolution: {integrity: sha512-VkTBzs7fIDUiy/XajOSNk0XazFE9l+QlMAce7lGuebZcag5CnjszB+u4BdqzwaQOdcYb5wsJIsqq4kxInIRpJQ==} peerDependencies: react-native: '*' @@ -21698,58 +22932,59 @@ packages: optional: true dependencies: base-64: 0.1.0 - react-native: 0.72.4(@babel/core@7.18.5)(@babel/preset-env@7.20.2)(react@18.2.0) + react-native: 0.71.0(@babel/core@7.18.5)(@babel/preset-env@7.21.5)(react@18.2.0) utf8: 3.0.0 dev: true + /react-native-gradle-plugin@0.71.17: + resolution: {integrity: sha512-OXXYgpISEqERwjSlaCiaQY6cTY5CH6j73gdkWpK0hedxtiWMWgH+i5TOi4hIGYitm9kQBeyDu+wim9fA8ROFJA==} + /react-native-path@0.0.5: resolution: {integrity: sha512-WJr256xBquk7X2O83QYWKqgLg43Zg3SrgjPc/kr0gCD2LoXA+2L72BW4cmstH12GbGeutqs/eXk3jgDQ2iCSvQ==} dev: true - /react-native@0.72.4(@babel/core@7.18.5)(@babel/preset-env@7.20.2)(react@18.2.0): - resolution: {integrity: sha512-+vrObi0wZR+NeqL09KihAAdVlQ9IdplwznJWtYrjnQ4UbCW6rkzZJebRsugwUneSOKNFaHFEo1uKU89HsgtYBg==} - engines: {node: '>=16'} + /react-native@0.71.0(@babel/core@7.18.5)(@babel/preset-env@7.21.5)(react@18.2.0): + resolution: {integrity: sha512-b5oCS/cPVqXT5E2K+0CfQMERAoRu6/6g1no9XRAcjQ4b5JG608WgDh5QgXPHaMSVhAvsJ1DuRoU8C/xqTjQITA==} + engines: {node: '>=14'} hasBin: true peerDependencies: react: 18.2.0 dependencies: - '@jest/create-cache-key-function': 29.6.3 - '@react-native-community/cli': 11.3.6(@babel/core@7.18.5) - '@react-native-community/cli-platform-android': 11.3.6 - '@react-native-community/cli-platform-ios': 11.3.6 - '@react-native/assets-registry': 0.72.0 - '@react-native/codegen': 0.72.6(@babel/preset-env@7.20.2) - '@react-native/gradle-plugin': 0.72.11 - '@react-native/js-polyfills': 0.72.1 - '@react-native/normalize-colors': 0.72.0 - '@react-native/virtualized-lists': 0.72.8(react-native@0.72.4) + '@jest/create-cache-key-function': 29.5.0 + '@react-native-community/cli': 10.0.0(@babel/core@7.18.5) + '@react-native-community/cli-platform-android': 10.0.0 + '@react-native-community/cli-platform-ios': 10.0.0 + '@react-native/assets': 1.0.0 + '@react-native/normalize-color': 2.1.0 + '@react-native/polyfills': 2.0.0 abort-controller: 3.0.0 anser: 1.4.10 base64-js: 1.5.1 - deprecated-react-native-prop-types: 4.1.0 + deprecated-react-native-prop-types: 3.0.1 event-target-shim: 5.0.1 - flow-enums-runtime: 0.0.5 invariant: 2.2.4 - jest-environment-node: 29.6.3 - jsc-android: 250231.0.0 + jest-environment-node: 29.5.0 + jsc-android: 250230.2.1 memoize-one: 5.2.1 - metro-runtime: 0.76.8 - metro-source-map: 0.76.8 + metro-react-native-babel-transformer: 0.73.5(@babel/core@7.18.5) + metro-runtime: 0.73.5 + metro-source-map: 0.73.5 mkdirp: 0.5.6 nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 react: 18.2.0 - react-devtools-core: 4.28.0 + react-devtools-core: 4.27.6 + react-native-codegen: 0.71.5(@babel/preset-env@7.21.5) + react-native-gradle-plugin: 0.71.17 react-refresh: 0.4.3 react-shallow-renderer: 16.15.0(react@18.2.0) regenerator-runtime: 0.13.11 - scheduler: 0.24.0-canary-efb381bbf-20230505 + scheduler: 0.23.0 stacktrace-parser: 0.1.10 use-sync-external-store: 1.2.0(react@18.2.0) whatwg-fetch: 3.6.2 ws: 6.2.2 - yargs: 17.7.2 transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' @@ -21911,15 +23146,14 @@ packages: string_decoder: 1.3.0 util-deprecate: 1.0.2 - /readable-stream@4.4.2: - resolution: {integrity: sha512-Lk/fICSyIhodxy1IDK2HazkeGjSmezAWX2egdtJnYhtzKEsBPJowlI6F6LPb5tqIQILrMbx22S5o3GuJavPusA==} + /readable-stream@4.3.0: + resolution: {integrity: sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: abort-controller: 3.0.0 buffer: 6.0.3 events: 3.3.0 process: 0.11.10 - string_decoder: 1.3.0 dev: false /readdirp@3.6.0: @@ -21944,11 +23178,11 @@ packages: engines: {node: '>= 12.13.0'} dev: false - /recast@0.21.5: - resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} + /recast@0.20.5: + resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} engines: {node: '>= 4'} dependencies: - ast-types: 0.15.2 + ast-types: 0.14.2 esprima: 4.0.1 source-map: 0.6.1 tslib: 2.5.0 @@ -21976,7 +23210,7 @@ packages: arweave: 1.14.0 arweave-multihost: 0.1.0 axios: 0.21.4 - bignumber.js: 9.1.1 + bignumber.js: 9.1.2 bson: 4.7.2 json-beautify: 1.1.1 tslog: 3.3.4 @@ -22013,6 +23247,13 @@ packages: dependencies: '@babel/runtime': 7.21.5 + /regex-not@1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 3.0.2 + safe-regex: 1.1.0 + /regexp.prototype.flags@1.4.3: resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} engines: {node: '>= 0.4'} @@ -22093,6 +23334,14 @@ packages: resolution: {integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==} dev: true + /repeat-element@1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} + + /repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + /request@2.88.2: resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} engines: {node: '>= 6'} @@ -22160,6 +23409,10 @@ packages: global-dirs: 0.1.1 dev: true + /resolve-url@0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated + /resolve@1.17.0: resolution: {integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==} dependencies: @@ -22170,7 +23423,7 @@ packages: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true dependencies: - is-core-module: 2.12.0 + is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -22187,7 +23440,7 @@ packages: resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} hasBin: true dependencies: - is-core-module: 2.12.0 + is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -22218,6 +23471,10 @@ packages: signal-exit: 3.0.7 dev: true + /ret@0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} + /retimer@3.0.0: resolution: {integrity: sha512-WKE0j11Pa0ZJI5YIk0nflGI7SQsfl2ljihVy7ogh7DeQSeYAUi0ubZ/yEueGtDfUPk6GH5LRw1hBdLq4IwUBWA==} dev: false @@ -22235,18 +23492,15 @@ packages: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} dev: true - /rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + /rimraf@2.2.8: + resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==} hasBin: true - dependencies: - glob: 7.2.3 - /rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + /rimraf@2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} hasBin: true dependencies: glob: 7.2.3 - dev: false /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} @@ -22254,12 +23508,12 @@ packages: dependencies: glob: 7.2.3 - /rimraf@5.0.1: - resolution: {integrity: sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==} + /rimraf@5.0.5: + resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==} engines: {node: '>=14'} hasBin: true dependencies: - glob: 10.3.3 + glob: 10.3.10 dev: true /ripemd160@2.0.2: @@ -22282,11 +23536,11 @@ packages: peerDependencies: rollup: ^2.0.0 dependencies: - '@babel/code-frame': 7.22.10 + '@babel/code-frame': 7.22.13 jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 - terser: 5.19.2 + terser: 5.17.1 dev: false /rollup@2.79.1: @@ -22347,6 +23601,12 @@ packages: dependencies: tslib: 1.14.1 + /rxjs@7.8.0: + resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} + dependencies: + tslib: 2.5.0 + dev: true + /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: @@ -22383,9 +23643,14 @@ packages: resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.0 is-regex: 1.1.4 + /safe-regex@1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + dependencies: + ret: 0.1.15 + /safe-stable-stringify@2.4.3: resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} engines: {node: '>=10'} @@ -22398,11 +23663,6 @@ packages: dependencies: loose-envify: 1.4.0 - /scheduler@0.24.0-canary-efb381bbf-20230505: - resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} - dependencies: - loose-envify: 1.4.0 - /schema-utils@2.7.1: resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} engines: {node: '>= 8.9.0'} @@ -22439,6 +23699,14 @@ packages: node-gyp-build: 4.6.0 dev: false + /secure-json-parse@2.7.0: + resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} + dev: false + + /secure-password-utilities@0.2.1: + resolution: {integrity: sha512-znUg8ae3cpuAaogiFBhP82gD2daVkSz4Qv/L7OWjB7wWvfbCdeqqQuJkm2/IvhKQPOV0T739YPR6rb7vs0uWaw==} + dev: false + /semaphore-async-await@1.5.1: resolution: {integrity: sha512-b/ptP11hETwYWpeilHXXQiV5UJNJl7ZWWooKRE5eBIYWoom6dZ0SluCIdCtKycsMtZgKWE01/qAw6jblw1YVhg==} engines: {node: '>=4.1'} @@ -22470,7 +23738,6 @@ packages: hasBin: true dependencies: lru-cache: 6.0.0 - dev: true /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} @@ -22565,6 +23832,15 @@ packages: has-property-descriptors: 1.0.0 dev: true + /set-value@2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + /setimmediate@1.0.5: resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} @@ -22603,23 +23879,35 @@ packages: tunnel-agent: 0.6.0 dev: false + /shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + dependencies: + shebang-regex: 1.0.0 + /shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 + dev: true + + /shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} /shebang-regex@3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} + dev: true /shell-quote@1.8.1: resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - /shiki@0.14.3: - resolution: {integrity: sha512-U3S/a+b0KS+UkTyMjoNojvTgrBHjgp7L6ovhFVZsXmBGnVdQ4K4U9oK0z63w538S91ATngv1vXigHCSWOwnr+g==} + /shiki@0.14.4: + resolution: {integrity: sha512-IXCRip2IQzKwxArNNq1S+On4KPML3Yyn8Zzs/xRgcgOWIr8ntIK3IKzjFPfjy/7kt9ZMjc+FItfqHRBg8b6tNQ==} dependencies: - ansi-sequence-parser: 1.1.0 + ansi-sequence-parser: 1.1.1 jsonc-parser: 3.2.0 vscode-oniguruma: 1.7.0 vscode-textmate: 8.0.0 @@ -22684,18 +23972,18 @@ packages: is-arrayish: 0.3.2 dev: false - /sinon-chai@3.7.0(chai@4.3.7)(sinon@15.2.0): + /sinon-chai@3.7.0(chai@4.3.7)(sinon@16.1.0): resolution: {integrity: sha512-mf5NURdUaSdnatJx3uhoBOrY9dtL19fiOtAdT1Azxg3+lNJFiuN0uzaU3xX1LeAfL17kHQhTAJgpsfhbMJMY2g==} peerDependencies: chai: ^4.0.0 sinon: '>=4.0.0' dependencies: chai: 4.3.7 - sinon: 15.2.0 + sinon: 16.1.0 dev: false - /sinon@15.2.0: - resolution: {integrity: sha512-nPS85arNqwBXaIsFCkolHjGIkFo+Oxu9vbgmBJizLAhqe6P2o3Qmj3KCUoRkfhHtvgDhZdWD3risLHAUJ8npjw==} + /sinon@16.1.0: + resolution: {integrity: sha512-ZSgzF0vwmoa8pq0GEynqfdnpEDyP1PkYmEChnkjW0Vyh8IDlyFEJ+fkMhCP0il6d5cJjPl2PUsnUSAuP5sttOQ==} dependencies: '@sinonjs/commons': 3.0.0 '@sinonjs/fake-timers': 10.3.0 @@ -22769,6 +24057,35 @@ packages: tslib: 2.5.0 dev: true + /snapdragon-node@2.1.1: + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 1.0.0 + isobject: 3.0.1 + snapdragon-util: 3.0.1 + + /snapdragon-util@3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + + /snapdragon@0.8.2: + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} + dependencies: + base: 0.11.2 + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + map-cache: 0.2.2 + source-map: 0.5.7 + source-map-resolve: 0.5.3 + use: 3.1.1 + transitivePeerDependencies: + - supports-color + /socket.io-client@4.7.2: resolution: {integrity: sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==} engines: {node: '>=10.0.0'} @@ -22816,8 +24133,8 @@ packages: dependencies: atomic-sleep: 1.0.0 - /sonic-boom@3.3.0: - resolution: {integrity: sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==} + /sonic-boom@3.2.1: + resolution: {integrity: sha512-iITeTHxy3B9FGu8aVdiDXUVAcHMF9Ss0cCsAOo2HfCrmVGT3/DT5oYaeu0M/YKZDlKTvChEyPq0zI9Hf33EX6A==} dependencies: atomic-sleep: 1.0.0 dev: false @@ -22830,12 +24147,26 @@ packages: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} + /source-map-resolve@0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.2 + resolve-url: 0.2.1 + source-map-url: 0.4.1 + urix: 0.1.0 + /source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 + /source-map-url@0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated + /source-map@0.5.7: resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} engines: {node: '>=0.10.0'} @@ -22898,12 +24229,23 @@ packages: resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} engines: {node: '>=6'} + /split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 3.0.2 + /split2@3.2.2: resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} dependencies: readable-stream: 3.6.2 dev: true + /split2@4.1.0: + resolution: {integrity: sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ==} + engines: {node: '>= 10.x'} + dev: false + /split2@4.2.0: resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} engines: {node: '>= 10.x'} @@ -22953,6 +24295,13 @@ packages: dependencies: type-fest: 0.7.1 + /static-extend@0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 0.2.5 + object-copy: 0.1.0 + /statuses@1.5.0: resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} engines: {node: '>= 0.6'} @@ -22990,7 +24339,7 @@ packages: /streamx@2.15.1: resolution: {integrity: sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==} dependencies: - fast-fifo: 1.2.0 + fast-fifo: 1.3.2 queue-tick: 1.0.1 dev: false @@ -23012,6 +24361,15 @@ packages: resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==} dev: true + /string-width@3.1.0: + resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} + engines: {node: '>=6'} + dependencies: + emoji-regex: 7.0.3 + is-fullwidth-code-point: 2.0.0 + strip-ansi: 5.2.0 + dev: false + /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -23136,9 +24494,14 @@ packages: engines: {node: '>=10'} dev: false + /strip-eof@1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} + dev: true /strip-final-newline@3.0.0: resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} @@ -23197,8 +24560,8 @@ packages: react-dom: '>= 16.8.0' react-is: '>= 16.8.0' dependencies: - '@babel/helper-module-imports': 7.22.5 - '@babel/traverse': 7.22.10(supports-color@5.5.0) + '@babel/helper-module-imports': 7.21.4 + '@babel/traverse': 7.21.5(supports-color@5.5.0) '@emotion/is-prop-valid': 1.2.1 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 @@ -23242,7 +24605,7 @@ packages: glob: 7.1.6 lines-and-columns: 1.2.4 mz: 2.7.0 - pirates: 4.0.6 + pirates: 4.0.5 ts-interface-checker: 0.1.13 /sudo-prompt@9.2.1: @@ -23364,17 +24727,17 @@ packages: fast-glob: 3.2.12 glob-parent: 6.0.2 is-glob: 4.0.3 - jiti: 1.19.3 + jiti: 1.20.0 lilconfig: 2.1.0 micromatch: 4.0.5 normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.29 - postcss-import: 15.1.0(postcss@8.4.29) - postcss-js: 4.0.1(postcss@8.4.29) - postcss-load-config: 4.0.1(postcss@8.4.29)(ts-node@10.9.1) - postcss-nested: 6.0.1(postcss@8.4.29) + postcss: 8.4.31 + postcss-import: 15.1.0(postcss@8.4.31) + postcss-js: 4.0.1(postcss@8.4.31) + postcss-load-config: 4.0.1(postcss@8.4.31)(ts-node@10.9.1) + postcss-nested: 6.0.1(postcss@8.4.31) postcss-selector-parser: 6.0.11 resolve: 1.22.2 sucrase: 3.34.0 @@ -23417,7 +24780,7 @@ packages: resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==} dependencies: b4a: 1.6.4 - fast-fifo: 1.2.0 + fast-fifo: 1.3.2 streamx: 2.15.1 dev: false @@ -23439,6 +24802,13 @@ packages: engines: {node: '>=8'} dev: false + /temp@0.8.3: + resolution: {integrity: sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==} + engines: {'0': node >=0.8.0} + dependencies: + os-tmpdir: 1.0.2 + rimraf: 2.2.8 + /temp@0.8.4: resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} engines: {node: '>=6.0.0'} @@ -23476,16 +24846,16 @@ packages: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.19.2 + terser: 5.17.1 webpack: 5.88.2(esbuild@0.15.13) dev: false - /terser@5.19.2: - resolution: {integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==} + /terser@5.17.1: + resolution: {integrity: sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==} engines: {node: '>=10'} hasBin: true dependencies: - '@jridgewell/source-map': 0.3.5 + '@jridgewell/source-map': 0.3.3 acorn: 8.8.2 commander: 2.20.3 source-map-support: 0.5.21 @@ -23518,8 +24888,8 @@ packages: dependencies: real-require: 0.1.0 - /thread-stream@2.3.0: - resolution: {integrity: sha512-kaDqm1DET9pp3NXwR8382WHbnpXnRkN9xGN9dQt3B2+dmXiW8X1SOwmFOxAErEQ47ObhZ96J6yhZNXuyCOL7KA==} + /thread-stream@2.4.1: + resolution: {integrity: sha512-d/Ex2iWd1whipbT681JmTINKw0ZwOUBZm7+Gjs64DHuX34mmw8vJL2bFAaNacaW72zYiTJxSHi5abUuOi5nsfg==} dependencies: real-require: 0.2.0 dev: false @@ -23565,6 +24935,10 @@ packages: engines: {node: '>=6'} dev: true + /tinycolor2@1.6.0: + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + dev: false + /title-case@3.0.3: resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} dependencies: @@ -23589,12 +24963,34 @@ packages: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} + /to-object-path@0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + + /to-regex-range@2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} + dependencies: + is-number: 3.0.0 + repeat-string: 1.6.1 + /to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 + /to-regex@3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 2.0.2 + extend-shallow: 3.0.2 + regex-not: 1.0.2 + safe-regex: 1.1.0 + /toggle-selection@1.0.6: resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} @@ -23642,8 +25038,8 @@ packages: resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==} dev: false - /ts-algebra@1.2.0: - resolution: {integrity: sha512-kMuJJd8B2N/swCvIvn1hIFcIOrLGbWl9m/J6O3kHx9VRaevh00nvgjPiEGaRee7DRaAczMYR2uwWvXU22VFltw==} + /ts-algebra@1.2.2: + resolution: {integrity: sha512-kloPhf1hq3JbCPOTYoOWDKxebWjNb2o/LKnNfkWhxVVisFFmMJPPdJeGoGmM+iRLyoXAR61e08Pb+vUXINg8aA==} dev: true /ts-interface-checker@0.1.13: @@ -23690,8 +25086,8 @@ packages: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - /tsafe@1.6.4: - resolution: {integrity: sha512-l4Z54QFGHO8GF0gBpb3yPGHjkIkIirl8rwW+lMBmtEMzOJeRs8BdjkDEx6nU8Ak9PQVp/KNDtECxTja8MMIDoA==} + /tsafe@1.6.5: + resolution: {integrity: sha512-895zss8xqqHKTc28sHGIfZKnt3C5jrstB1DyPr/h3/flK0zojsZUMQL1/W4ytdDW6KI4Oth62nb9rrxmA3s3Iw==} dev: false /tsconfig-paths@3.14.2: @@ -23749,8 +25145,8 @@ packages: safe-buffer: 5.2.1 dev: false - /tus-js-client@3.1.0: - resolution: {integrity: sha512-Hfpc8ho4C9Lhs/OflPUA/nHUHZJUrKD5upoPBq7dYJJ9DQhWocsjJU2RZYfN16Y5n19j9dFDszwCvVZ5sfcogw==} + /tus-js-client@3.1.1: + resolution: {integrity: sha512-SZzWP62jEFLmROSRZx+uoGLKqsYWMGK/m+PiNehPVWbCm7/S9zRIMaDxiaOcKdMnFno4luaqP5E+Y1iXXPjP0A==} dependencies: buffer-from: 1.1.2 combine-errors: 3.0.3 @@ -23872,7 +25268,7 @@ packages: dependencies: call-bind: 1.0.2 for-each: 0.3.3 - is-typed-array: 1.1.12 + is-typed-array: 1.1.10 /typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} @@ -23889,7 +25285,7 @@ packages: lunr: 2.3.9 marked: 4.3.0 minimatch: 6.2.0 - shiki: 0.14.3 + shiki: 0.14.4 typescript: 5.0.4 dev: false @@ -23904,9 +25300,12 @@ packages: engines: {node: '>=12.20'} hasBin: true - /ua-parser-js@1.0.35: - resolution: {integrity: sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==} - dev: true + /ua-parser-js@1.0.36: + resolution: {integrity: sha512-znuyCIXzl8ciS3+y3fHJI/2OhQIXbXw9MWC/o3qwyR+RGppjZHrM27CGFSKCJXi2Kctiz537iOu2KnXs1lMQhw==} + + /ufo@1.3.1: + resolution: {integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==} + dev: false /uglify-es@3.3.9: resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==} @@ -23921,7 +25320,7 @@ packages: resolution: {integrity: sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} dependencies: - uint8arrays: 4.0.3 + uint8arrays: 4.0.6 dev: false /uint8arrays@3.1.1: @@ -23929,11 +25328,10 @@ packages: dependencies: multiformats: 9.9.0 - /uint8arrays@4.0.3: - resolution: {integrity: sha512-b+aKlI2oTnxnfeSQWV1sMacqSNxqhtXySaH6bflvONGxF8V/fT3ZlYH7z2qgGfydsvpVo4JUgM/Ylyfl2YouCg==} - engines: {node: '>=16.0.0', npm: '>=7.0.0'} + /uint8arrays@4.0.6: + resolution: {integrity: sha512-4ZesjQhqOU2Ip6GPReIwN60wRxIupavL8T0Iy36BBHr2qyMrNxsPJvr7vpS4eFt8F8kSguWUPad6ZM9izs/vyw==} dependencies: - multiformats: 11.0.2 + multiformats: 12.1.2 dev: false /ultron@1.1.1: @@ -23953,11 +25351,11 @@ packages: engines: {node: '>=0.10.0'} dev: true - /undici@5.22.1: - resolution: {integrity: sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==} + /undici@5.25.4: + resolution: {integrity: sha512-450yJxT29qKMf3aoudzFpIciqpx6Pji3hEWaXqXmanbXF58LTAGCKxcJjxMXWu3iG+Mudgo3ZUfDB6YDFd/dAw==} engines: {node: '>=14.0'} dependencies: - busboy: 1.6.0 + '@fastify/busboy': 2.0.0 dev: false /unicode-canonical-property-names-ecmascript@2.0.0: @@ -23991,6 +25389,15 @@ packages: vfile: 5.3.7 dev: false + /union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + /unique-string@2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} engines: {node: '>=8'} @@ -24054,6 +25461,13 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} + /unset-value@1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} + dependencies: + has-value: 0.3.1 + isobject: 3.0.1 + /untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} engines: {node: '>=8'} @@ -24074,13 +25488,13 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 - /update-browserslist-db@1.0.11(browserslist@4.21.10): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} + /update-browserslist-db@1.0.13(browserslist@4.22.1): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.10 + browserslist: 4.22.1 escalade: 3.1.1 picocolors: 1.0.0 @@ -24101,6 +25515,10 @@ packages: dependencies: punycode: 2.3.0 + /urix@0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated + /url-parse@1.5.10: resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} dependencies: @@ -24171,6 +25589,10 @@ packages: dependencies: react: 18.2.0 + /use@3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} + /usehooks-ts@2.9.1(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-2FAuSIGHlY+apM9FVlj8/oNhd+1y+Uwv5QNkMQz1oSfdHk4PXo1qoCw9I5M7j0vpH8CSWFJwXbVPeYDjLCx9PA==} engines: {node: '>=16.15.0', npm: '>=8'} @@ -24222,8 +25644,8 @@ packages: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true - /uuid@9.0.0: - resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} + /uuid@9.0.1: + resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} hasBin: true dev: false @@ -24262,8 +25684,8 @@ packages: use-sync-external-store: 1.2.0(react@18.2.0) dev: false - /valtio@1.10.4(react@18.2.0): - resolution: {integrity: sha512-gqGWh0DjtDMAy8Jaui8ufFoxlQB1k1NiA/QHrpKoTUk9EeY331WKeYhvtGn1u703RcefrDCez7PT+qeCu9lWEw==} + /valtio@1.10.5(react@18.2.0): + resolution: {integrity: sha512-jTp0k63VXf4r5hPoaC6a6LCG4POkVSh629WLi1+d5PlajLsbynTMd7qAgEiOSPxzoX5iNvbN7iZ/k/g29wrNiQ==} engines: {node: '>=12.20.0'} peerDependencies: react: '>=16.8' @@ -24271,7 +25693,7 @@ packages: react: optional: true dependencies: - proxy-compare: 2.5.0 + proxy-compare: 2.5.1 react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) dev: false @@ -24289,6 +25711,24 @@ packages: react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) + /valtio@1.11.2(@types/react@18.0.26)(react@18.2.0): + resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': '>=16.8' + react: '>=16.8' + peerDependenciesMeta: + '@types/react': + optional: true + react: + optional: true + dependencies: + '@types/react': 18.0.26 + proxy-compare: 2.5.1 + react: 18.2.0 + use-sync-external-store: 1.2.0(react@18.2.0) + dev: false + /value-or-promise@1.0.12: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} @@ -24379,7 +25819,7 @@ packages: resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==} dev: false - /wagmi@1.3.10(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4): + /wagmi@1.3.10(@types/react@18.0.26)(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4): resolution: {integrity: sha512-MMGJcnxOmeUZWDmzUxgRGcB1cqxbJoSFSa+pNY4vBCWMz0n4ptpE5F8FKISLCx+BGoDwsaz2ldcMALcdJZ+29w==} peerDependencies: react: '>=17.0.0' @@ -24390,9 +25830,9 @@ packages: optional: true dependencies: '@tanstack/query-sync-storage-persister': 4.29.5 - '@tanstack/react-query': 4.29.23(react-dom@18.2.0)(react-native@0.72.4)(react@18.2.0) - '@tanstack/react-query-persist-client': 4.29.23(@tanstack/react-query@4.29.23) - '@wagmi/core': 1.3.9(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) + '@tanstack/react-query': 4.29.5(react-dom@18.2.0)(react-native@0.71.0)(react@18.2.0) + '@tanstack/react-query-persist-client': 4.29.5(@tanstack/react-query@4.29.5) + '@wagmi/core': 1.3.9(@types/react@18.0.26)(react@18.2.0)(typescript@5.0.4)(viem@1.0.0)(zod@3.21.4) abitype: 0.8.7(typescript@5.0.4)(zod@3.21.4) react: 18.2.0 typescript: 5.0.4 @@ -24400,6 +25840,7 @@ packages: viem: 1.0.0(typescript@5.0.4)(zod@3.21.4) transitivePeerDependencies: - '@react-native-async-storage/async-storage' + - '@types/react' - bufferutil - encoding - immer @@ -24433,12 +25874,12 @@ packages: engines: {node: '>= 8'} dev: true - /web-vitals@3.3.1: - resolution: {integrity: sha512-LTfY5GjcY3ngFzNsYFSYL+AmVmlWrzPTUxSMDis2rZbf+SzT7HH3NH4Y/l45XOlrAIunOBeURN9qtBHkRskAiA==} + /web-vitals@3.5.0: + resolution: {integrity: sha512-f5YnCHVG9Y6uLCePD4tY8bO/Ge15NPEQWtvm3tPzDKygloiqtb4SVqRHBcrIAqo2ztqX5XueqDn97zHF0LdT6w==} dev: false - /web3-bzz@1.10.0: - resolution: {integrity: sha512-o9IR59io3pDUsXTsps5pO5hW1D5zBmg46iNc2t4j2DkaYHNdDLwk2IP9ukoM2wg47QILfPEJYzhTfkS/CcX0KA==} + /web3-bzz@1.10.2: + resolution: {integrity: sha512-vLOfDCj6198Qc7esDrCKeFA/M3ZLbowsaHQ0hIL4NmIHoq7lU8aSRTa5AI+JBh8cKN1gVryJsuW2ZCc5bM4I4Q==} engines: {node: '>=8.0.0'} requiresBuild: true dependencies: @@ -24459,118 +25900,126 @@ packages: web3-utils: 1.10.0 dev: false - /web3-core-method@1.10.0: - resolution: {integrity: sha512-4R700jTLAMKDMhQ+nsVfIXvH6IGJlJzGisIfMKWAIswH31h5AZz7uDUW2YctI+HrYd+5uOAlS4OJeeT9bIpvkA==} + /web3-core-helpers@1.10.2: + resolution: {integrity: sha512-1JfaNtox6/ZYJHNoI+QVc2ObgwEPeGF+YdxHZQ7aF5605BmlwM1Bk3A8xv6mg64jIRvEq1xX6k9oG6x7p1WgXQ==} + engines: {node: '>=8.0.0'} + dependencies: + web3-eth-iban: 1.10.2 + web3-utils: 1.10.2 + dev: false + + /web3-core-method@1.10.2: + resolution: {integrity: sha512-gG6ES+LOuo01MJHML4gnEt702M8lcPGMYZoX8UjZzmEebGrPYOY9XccpCrsFgCeKgQzM12SVnlwwpMod1+lcLg==} engines: {node: '>=8.0.0'} dependencies: '@ethersproject/transactions': 5.7.0 - web3-core-helpers: 1.10.0 - web3-core-promievent: 1.10.0 - web3-core-subscriptions: 1.10.0 - web3-utils: 1.10.0 + web3-core-helpers: 1.10.2 + web3-core-promievent: 1.10.2 + web3-core-subscriptions: 1.10.2 + web3-utils: 1.10.2 dev: false - /web3-core-promievent@1.10.0: - resolution: {integrity: sha512-68N7k5LWL5R38xRaKFrTFT2pm2jBNFaM4GioS00YjAKXRQ3KjmhijOMG3TICz6Aa5+6GDWYelDNx21YAeZ4YTg==} + /web3-core-promievent@1.10.2: + resolution: {integrity: sha512-Qkkb1dCDOU8dZeORkcwJBQRAX+mdsjx8LqFBB+P4W9QgwMqyJ6LXda+y1XgyeEVeKEmY1RCeTq9Y94q1v62Sfw==} engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.4 dev: false - /web3-core-requestmanager@1.10.0: - resolution: {integrity: sha512-3z/JKE++Os62APml4dvBM+GAuId4h3L9ckUrj7ebEtS2AR0ixyQPbrBodgL91Sv7j7cQ3Y+hllaluqjguxvSaQ==} + /web3-core-requestmanager@1.10.2(encoding@0.1.13): + resolution: {integrity: sha512-nlLeNJUu6fR+ZbJr2k9Du/nN3VWwB4AJPY4r6nxUODAmykgJq57T21cLP/BEk6mbiFQYGE9TrrPhh4qWxQEtAw==} engines: {node: '>=8.0.0'} dependencies: util: 0.12.5 - web3-core-helpers: 1.10.0 - web3-providers-http: 1.10.0 - web3-providers-ipc: 1.10.0 - web3-providers-ws: 1.10.0 + web3-core-helpers: 1.10.2 + web3-providers-http: 1.10.2(encoding@0.1.13) + web3-providers-ipc: 1.10.2 + web3-providers-ws: 1.10.2 transitivePeerDependencies: - encoding - supports-color dev: false - /web3-core-subscriptions@1.10.0: - resolution: {integrity: sha512-HGm1PbDqsxejI075gxBc5OSkwymilRWZufIy9zEpnWKNmfbuv5FfHgW1/chtJP6aP3Uq2vHkvTDl3smQBb8l+g==} + /web3-core-subscriptions@1.10.2: + resolution: {integrity: sha512-MiWcKjz4tco793EPPPLc/YOJmYUV3zAfxeQH/UVTfBejMfnNvmfwKa2SBKfPIvKQHz/xI5bV2TF15uvJEucU7w==} engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.4 - web3-core-helpers: 1.10.0 + web3-core-helpers: 1.10.2 dev: false - /web3-core@1.10.0: - resolution: {integrity: sha512-fWySwqy2hn3TL89w5TM8wXF1Z2Q6frQTKHWmP0ppRQorEK8NcHJRfeMiv/mQlSKoTS1F6n/nv2uyZsixFycjYQ==} + /web3-core@1.10.2(encoding@0.1.13): + resolution: {integrity: sha512-qTn2UmtE8tvwMRsC5pXVdHxrQ4uZ6jiLgF5DRUVtdi7dPUmX18Dp9uxKfIfhGcA011EAn8P6+X7r3pvi2YRxBw==} engines: {node: '>=8.0.0'} dependencies: - '@types/bn.js': 5.1.1 + '@types/bn.js': 5.1.2 '@types/node': 12.20.55 - bignumber.js: 9.1.1 - web3-core-helpers: 1.10.0 - web3-core-method: 1.10.0 - web3-core-requestmanager: 1.10.0 - web3-utils: 1.10.0 + bignumber.js: 9.1.2 + web3-core-helpers: 1.10.2 + web3-core-method: 1.10.2 + web3-core-requestmanager: 1.10.2(encoding@0.1.13) + web3-utils: 1.10.2 transitivePeerDependencies: - encoding - supports-color dev: false - /web3-eth-abi@1.10.0: - resolution: {integrity: sha512-cwS+qRBWpJ43aI9L3JS88QYPfFcSJJ3XapxOQ4j40v6mk7ATpA8CVK1vGTzpihNlOfMVRBkR95oAj7oL6aiDOg==} + /web3-eth-abi@1.10.2: + resolution: {integrity: sha512-pY4fQUio7W7ZRSLf+vsYkaxJqaT/jHcALZjIxy+uBQaYAJ3t6zpQqMZkJB3Dw7HUODRJ1yI0NPEFGTnkYf/17A==} engines: {node: '>=8.0.0'} dependencies: '@ethersproject/abi': 5.7.0 - web3-utils: 1.10.0 + web3-utils: 1.10.2 dev: false - /web3-eth-accounts@1.10.0: - resolution: {integrity: sha512-wiq39Uc3mOI8rw24wE2n15hboLE0E9BsQLdlmsL4Zua9diDS6B5abXG0XhFcoNsXIGMWXVZz4TOq3u4EdpXF/Q==} + /web3-eth-accounts@1.10.2: + resolution: {integrity: sha512-6/HhCBYAXN/f553/SyxS9gY62NbLgpD1zJpENcvRTDpJN3Znvli1cmpl5Q3ZIUJkvHnG//48EWfWh0cbb3fbKQ==} engines: {node: '>=8.0.0'} dependencies: '@ethereumjs/common': 2.5.0 '@ethereumjs/tx': 3.3.2 + '@ethereumjs/util': 8.1.0 eth-lib: 0.2.8 - ethereumjs-util: 7.1.5 scrypt-js: 3.0.1 - uuid: 9.0.0 - web3-core: 1.10.0 - web3-core-helpers: 1.10.0 - web3-core-method: 1.10.0 - web3-utils: 1.10.0 + uuid: 9.0.1 + web3-core: 1.10.2(encoding@0.1.13) + web3-core-helpers: 1.10.2 + web3-core-method: 1.10.2 + web3-utils: 1.10.2 transitivePeerDependencies: - encoding - supports-color dev: false - /web3-eth-contract@1.10.0: - resolution: {integrity: sha512-MIC5FOzP/+2evDksQQ/dpcXhSqa/2hFNytdl/x61IeWxhh6vlFeSjq0YVTAyIzdjwnL7nEmZpjfI6y6/Ufhy7w==} + /web3-eth-contract@1.10.2: + resolution: {integrity: sha512-CZLKPQRmupP/+OZ5A/CBwWWkBiz5B/foOpARz0upMh1yjb0dEud4YzRW2gJaeNu0eGxDLsWVaXhUimJVGYprQw==} engines: {node: '>=8.0.0'} dependencies: - '@types/bn.js': 5.1.1 - web3-core: 1.10.0 - web3-core-helpers: 1.10.0 - web3-core-method: 1.10.0 - web3-core-promievent: 1.10.0 - web3-core-subscriptions: 1.10.0 - web3-eth-abi: 1.10.0 - web3-utils: 1.10.0 + '@types/bn.js': 5.1.2 + web3-core: 1.10.2(encoding@0.1.13) + web3-core-helpers: 1.10.2 + web3-core-method: 1.10.2 + web3-core-promievent: 1.10.2 + web3-core-subscriptions: 1.10.2 + web3-eth-abi: 1.10.2 + web3-utils: 1.10.2 transitivePeerDependencies: - encoding - supports-color dev: false - /web3-eth-ens@1.10.0: - resolution: {integrity: sha512-3hpGgzX3qjgxNAmqdrC2YUQMTfnZbs4GeLEmy8aCWziVwogbuqQZ+Gzdfrym45eOZodk+lmXyLuAdqkNlvkc1g==} + /web3-eth-ens@1.10.2: + resolution: {integrity: sha512-kTQ42UdNHy4BQJHgWe97bHNMkc3zCMBKKY7t636XOMxdI/lkRdIjdE5nQzt97VjQvSVasgIWYKRAtd8aRaiZiQ==} engines: {node: '>=8.0.0'} dependencies: content-hash: 2.5.2 eth-ens-namehash: 2.0.8 - web3-core: 1.10.0 - web3-core-helpers: 1.10.0 - web3-core-promievent: 1.10.0 - web3-eth-abi: 1.10.0 - web3-eth-contract: 1.10.0 - web3-utils: 1.10.0 + web3-core: 1.10.2(encoding@0.1.13) + web3-core-helpers: 1.10.2 + web3-core-promievent: 1.10.2 + web3-eth-abi: 1.10.2 + web3-eth-contract: 1.10.2 + web3-utils: 1.10.2 transitivePeerDependencies: - encoding - supports-color @@ -24584,94 +26033,102 @@ packages: web3-utils: 1.10.0 dev: false - /web3-eth-personal@1.10.0: - resolution: {integrity: sha512-anseKn98w/d703eWq52uNuZi7GhQeVjTC5/svrBWEKob0WZ5kPdo+EZoFN0sp5a5ubbrk/E0xSl1/M5yORMtpg==} + /web3-eth-iban@1.10.2: + resolution: {integrity: sha512-y8+Ii2XXdyHQMFNL2NWpBnXe+TVJ4ryvPlzNhObRRnIo4O4nLIXS010olLDMayozDzoUlmzCmBZJYc9Eev1g7A==} + engines: {node: '>=8.0.0'} + dependencies: + bn.js: 5.2.1 + web3-utils: 1.10.2 + dev: false + + /web3-eth-personal@1.10.2: + resolution: {integrity: sha512-+vEbJsPUJc5J683y0c2aN645vXC+gPVlFVCQu4IjPvXzJrAtUfz26+IZ6AUOth4fDJPT0f1uSLS5W2yrUdw9BQ==} engines: {node: '>=8.0.0'} dependencies: '@types/node': 12.20.55 - web3-core: 1.10.0 - web3-core-helpers: 1.10.0 - web3-core-method: 1.10.0 - web3-net: 1.10.0 - web3-utils: 1.10.0 + web3-core: 1.10.2(encoding@0.1.13) + web3-core-helpers: 1.10.2 + web3-core-method: 1.10.2 + web3-net: 1.10.2 + web3-utils: 1.10.2 transitivePeerDependencies: - encoding - supports-color dev: false - /web3-eth@1.10.0: - resolution: {integrity: sha512-Z5vT6slNMLPKuwRyKGbqeGYC87OAy8bOblaqRTgg94CXcn/mmqU7iPIlG4506YdcdK3x6cfEDG7B6w+jRxypKA==} + /web3-eth@1.10.2: + resolution: {integrity: sha512-s38rhrntyhGShmXC4R/aQtfkpcmev9c7iZwgb9CDIBFo7K8nrEJvqIOyajeZTxnDIiGzTJmrHxiKSadii5qTRg==} engines: {node: '>=8.0.0'} dependencies: - web3-core: 1.10.0 - web3-core-helpers: 1.10.0 - web3-core-method: 1.10.0 - web3-core-subscriptions: 1.10.0 - web3-eth-abi: 1.10.0 - web3-eth-accounts: 1.10.0 - web3-eth-contract: 1.10.0 - web3-eth-ens: 1.10.0 - web3-eth-iban: 1.10.0 - web3-eth-personal: 1.10.0 - web3-net: 1.10.0 - web3-utils: 1.10.0 + web3-core: 1.10.2(encoding@0.1.13) + web3-core-helpers: 1.10.2 + web3-core-method: 1.10.2 + web3-core-subscriptions: 1.10.2 + web3-eth-abi: 1.10.2 + web3-eth-accounts: 1.10.2 + web3-eth-contract: 1.10.2 + web3-eth-ens: 1.10.2 + web3-eth-iban: 1.10.2 + web3-eth-personal: 1.10.2 + web3-net: 1.10.2 + web3-utils: 1.10.2 transitivePeerDependencies: - encoding - supports-color dev: false - /web3-net@1.10.0: - resolution: {integrity: sha512-NLH/N3IshYWASpxk4/18Ge6n60GEvWBVeM8inx2dmZJVmRI6SJIlUxbL8jySgiTn3MMZlhbdvrGo8fpUW7a1GA==} + /web3-net@1.10.2: + resolution: {integrity: sha512-w9i1t2z7dItagfskhaCKwpp6W3ylUR88gs68u820y5f8yfK5EbPmHc6c2lD8X9ZrTnmDoeOpIRCN/RFPtZCp+g==} engines: {node: '>=8.0.0'} dependencies: - web3-core: 1.10.0 - web3-core-method: 1.10.0 - web3-utils: 1.10.0 + web3-core: 1.10.2(encoding@0.1.13) + web3-core-method: 1.10.2 + web3-utils: 1.10.2 transitivePeerDependencies: - encoding - supports-color dev: false - /web3-providers-http@1.10.0: - resolution: {integrity: sha512-eNr965YB8a9mLiNrkjAWNAPXgmQWfpBfkkn7tpEFlghfww0u3I0tktMZiaToJVcL2+Xq+81cxbkpeWJ5XQDwOA==} + /web3-providers-http@1.10.2(encoding@0.1.13): + resolution: {integrity: sha512-G8abKtpkyKGpRVKvfjIF3I4O/epHP7mxXWN8mNMQLkQj1cjMFiZBZ13f+qI77lNJN7QOf6+LtNdKrhsTGU72TA==} engines: {node: '>=8.0.0'} dependencies: abortcontroller-polyfill: 1.7.5 - cross-fetch: 3.1.5 + cross-fetch: 4.0.0(encoding@0.1.13) es6-promise: 4.2.8 - web3-core-helpers: 1.10.0 + web3-core-helpers: 1.10.2 transitivePeerDependencies: - encoding dev: false - /web3-providers-ipc@1.10.0: - resolution: {integrity: sha512-OfXG1aWN8L1OUqppshzq8YISkWrYHaATW9H8eh0p89TlWMc1KZOL9vttBuaBEi96D/n0eYDn2trzt22bqHWfXA==} + /web3-providers-ipc@1.10.2: + resolution: {integrity: sha512-lWbn6c+SgvhLymU8u4Ea/WOVC0Gqs7OJUvauejWz+iLycxeF0xFNyXnHVAi42ZJDPVI3vnfZotafoxcNNL7Sug==} engines: {node: '>=8.0.0'} dependencies: oboe: 2.1.5 - web3-core-helpers: 1.10.0 + web3-core-helpers: 1.10.2 dev: false - /web3-providers-ws@1.10.0: - resolution: {integrity: sha512-sK0fNcglW36yD5xjnjtSGBnEtf59cbw4vZzJ+CmOWIKGIR96mP5l684g0WD0Eo+f4NQc2anWWXG74lRc9OVMCQ==} + /web3-providers-ws@1.10.2: + resolution: {integrity: sha512-3nYSiP6grI5GvpkSoehctSywfCTodU21VY8bUtXyFHK/IVfDooNtMpd5lVIMvXVAlaxwwrCfjebokaJtKH2Iag==} engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.4 - web3-core-helpers: 1.10.0 + web3-core-helpers: 1.10.2 websocket: 1.0.34 transitivePeerDependencies: - supports-color dev: false - /web3-shh@1.10.0: - resolution: {integrity: sha512-uNUUuNsO2AjX41GJARV9zJibs11eq6HtOe6Wr0FtRUcj8SN6nHeYIzwstAvJ4fXA53gRqFMTxdntHEt9aXVjpg==} + /web3-shh@1.10.2: + resolution: {integrity: sha512-UP0Kc3pHv9uULFu0+LOVfPwKBSJ6B+sJ5KflF7NyBk6TvNRxlpF3hUhuaVDCjjB/dDUR6T0EQeg25FA2uzJbag==} engines: {node: '>=8.0.0'} requiresBuild: true dependencies: - web3-core: 1.10.0 - web3-core-method: 1.10.0 - web3-core-subscriptions: 1.10.0 - web3-net: 1.10.0 + web3-core: 1.10.2(encoding@0.1.13) + web3-core-method: 1.10.2 + web3-core-subscriptions: 1.10.2 + web3-net: 1.10.2 transitivePeerDependencies: - encoding - supports-color @@ -24690,18 +26147,32 @@ packages: utf8: 3.0.0 dev: false - /web3@1.10.0: - resolution: {integrity: sha512-YfKY9wSkGcM8seO+daR89oVTcbu18NsVfvOngzqMYGUU0pPSQmE57qQDvQzUeoIOHAnXEBNzrhjQJmm8ER0rng==} + /web3-utils@1.10.2: + resolution: {integrity: sha512-TdApdzdse5YR+5GCX/b/vQnhhbj1KSAtfrDtRW7YS0kcWp1gkJsN62gw6GzCaNTeXookB7UrLtmDUuMv65qgow==} + engines: {node: '>=8.0.0'} + dependencies: + '@ethereumjs/util': 8.1.0 + bn.js: 5.2.1 + ethereum-bloom-filters: 1.0.10 + ethereum-cryptography: 2.1.2 + ethjs-unit: 0.1.6 + number-to-bn: 1.7.0 + randombytes: 2.1.0 + utf8: 3.0.0 + dev: false + + /web3@1.10.2: + resolution: {integrity: sha512-DAtZ3a3ruPziE80uZ3Ob0YDZxt6Vk2un/F5BcBrxO70owJ9Z1Y2+loZmbh1MoAmoLGjA/SUSHeUtid3fYmBaog==} engines: {node: '>=8.0.0'} requiresBuild: true dependencies: - web3-bzz: 1.10.0 - web3-core: 1.10.0 - web3-eth: 1.10.0 - web3-eth-personal: 1.10.0 - web3-net: 1.10.0 - web3-shh: 1.10.0 - web3-utils: 1.10.0 + web3-bzz: 1.10.2 + web3-core: 1.10.2(encoding@0.1.13) + web3-eth: 1.10.2 + web3-eth-personal: 1.10.2 + web3-net: 1.10.2 + web3-shh: 1.10.2 + web3-utils: 1.10.2 transitivePeerDependencies: - bufferutil - encoding @@ -24747,17 +26218,17 @@ packages: webpack-cli: optional: true dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 1.0.1 + '@types/eslint-scope': 3.7.5 + '@types/estree': 1.0.2 '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/wasm-edit': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 acorn: 8.8.2 acorn-import-assertions: 1.9.0(acorn@8.8.2) - browserslist: 4.21.10 + browserslist: 4.22.1 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.0 + es-module-lexer: 1.3.1 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -24821,7 +26292,7 @@ packages: resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} engines: {node: '>= 0.4'} dependencies: - function.prototype.name: 1.1.5 + function.prototype.name: 1.1.6 has-tostringtag: 1.0.0 is-async-function: 2.0.0 is-date-object: 1.0.5 @@ -24832,7 +26303,7 @@ packages: isarray: 2.0.5 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 - which-typed-array: 1.1.9 + which-typed-array: 1.1.11 dev: true /which-collection@1.0.1: @@ -24856,6 +26327,7 @@ packages: for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 + dev: true /which-typed-array@1.1.9: resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} @@ -24868,12 +26340,23 @@ packages: has-tostringtag: 1.0.0 is-typed-array: 1.1.10 + /which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + dependencies: + isexe: 2.0.0 + /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 + dev: true + + /wicg-inert@3.1.2: + resolution: {integrity: sha512-Ba9tGNYxXwaqKEi9sJJvPMKuo063umUPsHN0JJsjrs2j8KDSzkWLMZGZ+MH1Jf1Fq4OWZ5HsESJID6nRza2ang==} + dev: false /word-wrap@1.2.3: resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} @@ -24899,7 +26382,7 @@ packages: dependencies: '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0) '@babel/core': 7.18.5 - '@babel/preset-env': 7.20.2(@babel/core@7.18.5) + '@babel/preset-env': 7.21.5(@babel/core@7.18.5) '@babel/runtime': 7.21.5 '@rollup/plugin-babel': 5.3.1(@babel/core@7.18.5)(rollup@2.79.1) '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1) @@ -25048,6 +26531,15 @@ packages: resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==} dev: false + /wrap-ansi@5.1.0: + resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} + engines: {node: '>=6'} + dependencies: + ansi-styles: 3.2.1 + string-width: 3.1.0 + strip-ansi: 5.2.0 + dev: false + /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} @@ -25177,6 +26669,19 @@ packages: bufferutil: 4.0.7 utf-8-validate: 5.0.10 + /ws@8.14.1: + resolution: {integrity: sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + /xhr-request-promise@0.1.3: resolution: {integrity: sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==} dependencies: @@ -25252,10 +26757,17 @@ packages: engines: {node: '>= 14'} dev: true - /yaml@2.3.1: - resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} + /yaml@2.3.2: + resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==} engines: {node: '>= 14'} + /yargs-parser@13.1.2: + resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + dev: false + /yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} @@ -25286,6 +26798,21 @@ packages: is-plain-obj: 2.1.0 dev: false + /yargs@13.3.2: + resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} + dependencies: + cliui: 5.0.0 + find-up: 3.0.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 3.1.0 + which-module: 2.0.1 + y18n: 4.0.3 + yargs-parser: 13.1.2 + dev: false + /yargs@15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} engines: {node: '>=8'} @@ -25390,17 +26917,21 @@ packages: use-sync-external-store: 1.2.0(react@18.2.0) dev: false - /zustand@4.3.9(react@18.2.0): - resolution: {integrity: sha512-Tat5r8jOMG1Vcsj8uldMyqYKC5IZvQif8zetmLHs9WoZlntTHmIoNM8TpLRY31ExncuUvUOXehd0kvahkuHjDw==} + /zustand@4.4.3(@types/react@18.0.26)(react@18.2.0): + resolution: {integrity: sha512-oRy+X3ZazZvLfmv6viIaQmtLOMeij1noakIsK/Y47PWYhT8glfXzQ4j0YcP5i0P0qI1A4rIB//SGROGyZhx91A==} engines: {node: '>=12.7.0'} peerDependencies: + '@types/react': '>=16.8' immer: '>=9.0' react: '>=16.8' peerDependenciesMeta: + '@types/react': + optional: true immer: optional: true react: optional: true dependencies: + '@types/react': 18.0.26 react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) From 6439803a22d71983a5c736e85e3dbe474af8daf2 Mon Sep 17 00:00:00 2001 From: AlanRacciatti Date: Tue, 10 Oct 2023 12:11:14 -0300 Subject: [PATCH 2/6] fix: merge errors --- app/(general)/integration/disco/page.tsx | 2 +- app/(general)/integration/erc1155/page.tsx | 2 +- app/(general)/integration/erc20/page.tsx | 2 +- app/(general)/integration/erc721/page.tsx | 2 +- app/(general)/integration/etherscan/page.tsx | 2 +- app/(general)/integration/gelato/page.tsx | 2 +- .../integration/gitcoin-passport/page.tsx | 2 +- .../gitcoin-passport/score-gated/page.tsx | 2 +- .../gitcoin-passport/stamp-gated/page.tsx | 2 +- .../integration/lens-protocol/layout.tsx | 2 +- .../integration/lit-protocol/page.tsx | 2 +- .../integration/pooltogether-v4/page.tsx | 2 +- .../integration/push-protocol/page.tsx | 2 +- .../sign-in-with-ethereum/page.tsx | 2 +- .../blockchain/wallet-connect-custom.tsx | 90 ------------------- components/blockchain/wallet-connect.tsx | 23 ----- components/providers/rainbow-kit.tsx | 57 ------------ components/providers/root-provider.tsx | 35 -------- components/shared/example-demos.tsx | 2 +- config/networks.ts | 10 ++- .../erc20/components/erc20-write-transfer.tsx | 2 +- .../components/form-lit-decrypt-message.tsx | 2 +- .../components/form-lit-encrypt-message.tsx | 2 +- integrations/privy/root-provider.tsx | 30 ++++--- integrations/privy/wallet-connect.tsx | 8 +- integrations/rainbow-kit/root-provider.tsx | 61 ++++++------- lib/generated/blockchain.ts | 2 +- 27 files changed, 72 insertions(+), 280 deletions(-) delete mode 100644 components/blockchain/wallet-connect-custom.tsx delete mode 100644 components/blockchain/wallet-connect.tsx delete mode 100644 components/providers/rainbow-kit.tsx delete mode 100644 components/providers/root-provider.tsx diff --git a/app/(general)/integration/disco/page.tsx b/app/(general)/integration/disco/page.tsx index cf3863a3..ea1ddc79 100644 --- a/app/(general)/integration/disco/page.tsx +++ b/app/(general)/integration/disco/page.tsx @@ -10,7 +10,7 @@ import { buttonVariants } from "@/components/ui/button" import { Card, CardContent, CardHeader } from "@/components/ui/card" import { Separator } from "@/components/ui/separator" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/erc1155/page.tsx b/app/(general)/integration/erc1155/page.tsx index bf21705a..809a8f71 100644 --- a/app/(general)/integration/erc1155/page.tsx +++ b/app/(general)/integration/erc1155/page.tsx @@ -6,7 +6,7 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/erc20/page.tsx b/app/(general)/integration/erc20/page.tsx index 7636468e..9bb82594 100644 --- a/app/(general)/integration/erc20/page.tsx +++ b/app/(general)/integration/erc20/page.tsx @@ -7,7 +7,7 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" import { Card, CardContent } from "@/components/ui/card" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/erc721/page.tsx b/app/(general)/integration/erc721/page.tsx index 5c36eb68..9a1d8e66 100644 --- a/app/(general)/integration/erc721/page.tsx +++ b/app/(general)/integration/erc721/page.tsx @@ -6,7 +6,7 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/etherscan/page.tsx b/app/(general)/integration/etherscan/page.tsx index 1335532a..09078231 100644 --- a/app/(general)/integration/etherscan/page.tsx +++ b/app/(general)/integration/etherscan/page.tsx @@ -8,7 +8,7 @@ import { useNetwork } from "wagmi" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" import { Card, CardContent } from "@/components/ui/card" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/gelato/page.tsx b/app/(general)/integration/gelato/page.tsx index 70f0b45b..ddb8b726 100644 --- a/app/(general)/integration/gelato/page.tsx +++ b/app/(general)/integration/gelato/page.tsx @@ -7,7 +7,7 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/gitcoin-passport/page.tsx b/app/(general)/integration/gitcoin-passport/page.tsx index e5b60c69..a7a22b71 100644 --- a/app/(general)/integration/gitcoin-passport/page.tsx +++ b/app/(general)/integration/gitcoin-passport/page.tsx @@ -1,6 +1,6 @@ "use client" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { ListStamps } from "@/integrations/gitcoin-passport/components/list-stamps" diff --git a/app/(general)/integration/gitcoin-passport/score-gated/page.tsx b/app/(general)/integration/gitcoin-passport/score-gated/page.tsx index d485b056..62fcf34c 100644 --- a/app/(general)/integration/gitcoin-passport/score-gated/page.tsx +++ b/app/(general)/integration/gitcoin-passport/score-gated/page.tsx @@ -1,7 +1,7 @@ "use client" import { Card, CardContent, CardTitle } from "@/components/ui/card" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { ScoreGate } from "@/integrations/gitcoin-passport/components/score-gate" diff --git a/app/(general)/integration/gitcoin-passport/stamp-gated/page.tsx b/app/(general)/integration/gitcoin-passport/stamp-gated/page.tsx index ebb42965..f38b9a37 100644 --- a/app/(general)/integration/gitcoin-passport/stamp-gated/page.tsx +++ b/app/(general)/integration/gitcoin-passport/stamp-gated/page.tsx @@ -1,7 +1,7 @@ "use client" import { Card, CardContent, CardTitle } from "@/components/ui/card" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { StampGate } from "@/integrations/gitcoin-passport/components/stamp-gate" diff --git a/app/(general)/integration/lens-protocol/layout.tsx b/app/(general)/integration/lens-protocol/layout.tsx index 1e851aab..7949c050 100644 --- a/app/(general)/integration/lens-protocol/layout.tsx +++ b/app/(general)/integration/lens-protocol/layout.tsx @@ -8,7 +8,7 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/lit-protocol/page.tsx b/app/(general)/integration/lit-protocol/page.tsx index edcf872e..5a1dbbee 100644 --- a/app/(general)/integration/lit-protocol/page.tsx +++ b/app/(general)/integration/lit-protocol/page.tsx @@ -8,7 +8,7 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/pooltogether-v4/page.tsx b/app/(general)/integration/pooltogether-v4/page.tsx index 824530b2..036edc94 100644 --- a/app/(general)/integration/pooltogether-v4/page.tsx +++ b/app/(general)/integration/pooltogether-v4/page.tsx @@ -5,7 +5,7 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/push-protocol/page.tsx b/app/(general)/integration/push-protocol/page.tsx index 6fa1fbb8..c503657d 100644 --- a/app/(general)/integration/push-protocol/page.tsx +++ b/app/(general)/integration/push-protocol/page.tsx @@ -18,7 +18,7 @@ import { SelectValue, } from "@/components/ui/select" import { Separator } from "@/components/ui/separator" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/app/(general)/integration/sign-in-with-ethereum/page.tsx b/app/(general)/integration/sign-in-with-ethereum/page.tsx index 0ac276ea..601b9e1e 100644 --- a/app/(general)/integration/sign-in-with-ethereum/page.tsx +++ b/app/(general)/integration/sign-in-with-ethereum/page.tsx @@ -4,7 +4,7 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, diff --git a/components/blockchain/wallet-connect-custom.tsx b/components/blockchain/wallet-connect-custom.tsx deleted file mode 100644 index 82688dc2..00000000 --- a/components/blockchain/wallet-connect-custom.tsx +++ /dev/null @@ -1,90 +0,0 @@ -import { HTMLAttributes } from "react" -import { ConnectButton } from "@rainbow-me/rainbowkit" - -import { Button } from "../ui/button" - -interface WalletConnectCustomProps extends HTMLAttributes { - classNameConnect?: string - classNameConnected?: string - classNameWrongNetwork?: string - labelConnect?: string - labelWrongNetwork?: string -} - -export const WalletConnectCustom = ({ - className, - labelConnect = "Connect Wallet", - labelWrongNetwork = "Wrong Network", - ...props -}: WalletConnectCustomProps) => { - return ( - - {({ - account, - chain, - openChainModal, - openConnectModal, - authenticationStatus, - }) => { - const connected = - account && - chain && - (!authenticationStatus || authenticationStatus === "authenticated") - - return ( -
- {(() => { - if (!connected) { - return ( - <> - - - ) - } - - if (chain.unsupported) { - return ( - - ) - } - - return ( -
- -
- ) - })()} -
- ) - }} -
- ) -} - -export default WalletConnectCustom diff --git a/components/blockchain/wallet-connect.tsx b/components/blockchain/wallet-connect.tsx deleted file mode 100644 index 60622740..00000000 --- a/components/blockchain/wallet-connect.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import { HtmlHTMLAttributes } from "react" -import { ConnectButton } from "@rainbow-me/rainbowkit" - -export const WalletConnect = ({ - className, - ...props -}: HtmlHTMLAttributes) => { - return ( - - - - ) -} diff --git a/components/providers/rainbow-kit.tsx b/components/providers/rainbow-kit.tsx deleted file mode 100644 index 0bb9f527..00000000 --- a/components/providers/rainbow-kit.tsx +++ /dev/null @@ -1,57 +0,0 @@ -"use client" - -import "@rainbow-me/rainbowkit/styles.css" - -import { ReactNode } from "react" -import { - connectorsForWallets, - darkTheme, - lightTheme, - RainbowKitProvider, -} from "@rainbow-me/rainbowkit" -import { - coinbaseWallet, - injectedWallet, - metaMaskWallet, - rainbowWallet, - walletConnectWallet, -} from "@rainbow-me/rainbowkit/wallets" -import { createConfig, WagmiConfig } from "wagmi" - -import { chains, publicClient, webSocketPublicClient } from "@/config/networks" -import { siteConfig } from "@/config/site" -import { useColorMode } from "@/lib/state/color-mode" - -const connectors = connectorsForWallets([ - { - groupName: "Recommended", - wallets: [ - injectedWallet({ chains }), - metaMaskWallet({ chains }), - rainbowWallet({ chains }), - coinbaseWallet({ chains, appName: siteConfig.name }), - walletConnectWallet({ chains }), - ], - }, -]) - -const wagmiConfig = createConfig({ - autoConnect: true, - connectors, - publicClient, - webSocketPublicClient, -}) - -export function RainbowKit({ children }: { children: ReactNode }) { - const [colorMode] = useColorMode() - return ( - - - {children} - - - ) -} diff --git a/components/providers/root-provider.tsx b/components/providers/root-provider.tsx deleted file mode 100644 index 1730bdfa..00000000 --- a/components/providers/root-provider.tsx +++ /dev/null @@ -1,35 +0,0 @@ -"use client" - -import { ReactNode } from "react" -import { QueryClient, QueryClientProvider } from "@tanstack/react-query" -import { ThemeProvider } from "next-themes" -import { Provider as RWBProvider } from "react-wrap-balancer" - -import { useIsMounted } from "@/lib/hooks/use-is-mounted" -import HandleWalletEvents from "@/components/blockchain/handle-wallet-events" -import { RainbowKit } from "@/components/providers/rainbow-kit" - -const queryClient = new QueryClient() -interface RootProviderProps { - children: ReactNode -} - -export default function RootProvider({ children }: RootProviderProps) { - const isMounted = useIsMounted() - return isMounted ? ( - - - - - {children} - - - - - ) : null -} diff --git a/components/shared/example-demos.tsx b/components/shared/example-demos.tsx index 1ae6b14e..51307f73 100644 --- a/components/shared/example-demos.tsx +++ b/components/shared/example-demos.tsx @@ -12,7 +12,7 @@ import { cn } from "@/lib/utils" import { fadeUpVariant } from "@/lib/utils/motion" import { buttonVariants } from "@/components/ui/button" import { WalletAddress } from "@/components/blockchain/wallet-address" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageSectionGrid } from "@/components/layout/page-section" import { IsDarkTheme } from "@/components/shared/is-dark-theme" import { IsLightTheme } from "@/components/shared/is-light-theme" diff --git a/config/networks.ts b/config/networks.ts index a5fe3e2d..e28d0108 100644 --- a/config/networks.ts +++ b/config/networks.ts @@ -121,7 +121,9 @@ if (PROVIDERS.length === 0 || env.NEXT_PUBLIC_USE_PUBLIC_PROVIDER === "true") { PROVIDERS.push(publicProvider()) } -// @ts-ignore -// TODO: The sepolia chain is throwing type errors for some reason. -export const configureChainsConfig = configureChains(UNIQUE_CHAINS, [...PROVIDERS]) -export const { chains, publicClient, webSocketPublicClient } = configureChainsConfig +export const configureChainsConfig = configureChains( + CHAINS, + PROVIDERS +) + +export const { chains, publicClient, webSocketPublicClient } = configureChainsConfig \ No newline at end of file diff --git a/integrations/erc20/components/erc20-write-transfer.tsx b/integrations/erc20/components/erc20-write-transfer.tsx index 535d9dc2..2956033a 100644 --- a/integrations/erc20/components/erc20-write-transfer.tsx +++ b/integrations/erc20/components/erc20-write-transfer.tsx @@ -7,7 +7,7 @@ import { Card, CardContent, CardFooter } from "@/components/ui/card" import { Separator } from "@/components/ui/separator" import { ContractWriteButton } from "@/components/blockchain/contract-write-button" import { TransactionStatus } from "@/components/blockchain/transaction-status" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" diff --git a/integrations/lit-protocol/components/form-lit-decrypt-message.tsx b/integrations/lit-protocol/components/form-lit-decrypt-message.tsx index 6d864cc3..4099b9ea 100644 --- a/integrations/lit-protocol/components/form-lit-decrypt-message.tsx +++ b/integrations/lit-protocol/components/form-lit-decrypt-message.tsx @@ -8,7 +8,7 @@ import { useToast } from "@/lib/hooks/use-toast" import { Button } from "@/components/ui/button" import { Card, CardContent, CardFooter } from "@/components/ui/card" import { Textarea } from "@/components/ui/textarea" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" diff --git a/integrations/lit-protocol/components/form-lit-encrypt-message.tsx b/integrations/lit-protocol/components/form-lit-encrypt-message.tsx index f18f5125..69932da4 100644 --- a/integrations/lit-protocol/components/form-lit-encrypt-message.tsx +++ b/integrations/lit-protocol/components/form-lit-encrypt-message.tsx @@ -21,7 +21,7 @@ import { } from "@/components/ui/select" import { Separator } from "@/components/ui/separator" import { Textarea } from "@/components/ui/textarea" -import { WalletConnect } from "@/components/blockchain/wallet-connect" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { LinkComponent } from "@/components/shared/link-component" diff --git a/integrations/privy/root-provider.tsx b/integrations/privy/root-provider.tsx index 4f2fc60b..17b481d7 100644 --- a/integrations/privy/root-provider.tsx +++ b/integrations/privy/root-provider.tsx @@ -1,14 +1,13 @@ -'use client' +"use client" -import { ReactNode } from 'react' +import { ReactNode } from "react" +import { QueryClient, QueryClientProvider } from "@tanstack/react-query" +import { ThemeProvider } from "next-themes" +import { Provider as RWBProvider } from "react-wrap-balancer" -import { QueryClient, QueryClientProvider } from '@tanstack/react-query' -import { ThemeProvider } from 'next-themes' -import { ModalProvider } from 'react-modal-hook' - -import HandleWalletEvents from '@/components/blockchain/handle-wallet-events' -import { Privy } from '@/integrations/privy/provider' -import { useIsMounted } from '@/lib/hooks/use-is-mounted' +import { useIsMounted } from "@/lib/hooks/use-is-mounted" +import HandleWalletEvents from "@/components/blockchain/handle-wallet-events" +import { Privy } from "./provider" const queryClient = new QueryClient() interface RootProviderProps { @@ -18,14 +17,19 @@ interface RootProviderProps { export default function RootProvider({ children }: RootProviderProps) { const isMounted = useIsMounted() return isMounted ? ( - + - + {children} - + ) : null -} +} \ No newline at end of file diff --git a/integrations/privy/wallet-connect.tsx b/integrations/privy/wallet-connect.tsx index 02a8d841..c4526e9f 100644 --- a/integrations/privy/wallet-connect.tsx +++ b/integrations/privy/wallet-connect.tsx @@ -37,14 +37,14 @@ export const WalletConnect = ({ if (!authenticated) { return ( <> - + ) } else { return ( - @@ -61,7 +61,7 @@ export const WalletConnect = ({ {wallet.address === activeWallet?.address ? ( Active ) : ( - )} @@ -69,7 +69,7 @@ export const WalletConnect = ({ ))}
- diff --git a/integrations/rainbow-kit/root-provider.tsx b/integrations/rainbow-kit/root-provider.tsx index 40249321..22cdb16f 100644 --- a/integrations/rainbow-kit/root-provider.tsx +++ b/integrations/rainbow-kit/root-provider.tsx @@ -1,44 +1,35 @@ -'use client' +"use client" -import { QueryClient, QueryClientProvider } from '@tanstack/react-query' -import { ThemeProvider } from 'next-themes' -import { ModalProvider } from 'react-modal-hook' -import { Provider as RWBProvider } from 'react-wrap-balancer' -import { SWRConfig } from 'swr' +import { ReactNode } from "react" +import { QueryClient, QueryClientProvider } from "@tanstack/react-query" +import { ThemeProvider } from "next-themes" +import { Provider as RWBProvider } from "react-wrap-balancer" -import HandleWalletEvents from '@/components/blockchain/handle-wallet-events' -import { RainbowKit } from '@/integrations/rainbow-kit/provider' -import { useIsMounted } from '@/lib/hooks/use-is-mounted' -import fetchJson from '@/lib/utils/fetch-json' +import { useIsMounted } from "@/lib/hooks/use-is-mounted" +import HandleWalletEvents from "@/components/blockchain/handle-wallet-events" +import { RainbowKit } from "./provider" const queryClient = new QueryClient() interface RootProviderProps { - children: React.ReactNode + children: ReactNode } export default function RootProvider({ children }: RootProviderProps) { const isMounted = useIsMounted() - return ( - { - console.error(err) - }, - }}> - {isMounted && ( - - - - - - {children} - - - - - - )} - - ) -} + return isMounted ? ( + + + + + {children} + + + + + ) : null +} \ No newline at end of file diff --git a/lib/generated/blockchain.ts b/lib/generated/blockchain.ts index 82e1af56..62272846 100644 --- a/lib/generated/blockchain.ts +++ b/lib/generated/blockchain.ts @@ -1,4 +1,4 @@ -// Generated by @wagmi/cli@1.1.0 on 10/10/2023 at 10:31:26 AM +// Generated by @wagmi/cli@1.1.0 on 10/10/2023 at 11:33:32 AM import { useContractEvent, UseContractEventConfig, From c57d03fe17e668687e3d88aefb7b066440d31660 Mon Sep 17 00:00:00 2001 From: AlanRacciatti Date: Tue, 10 Oct 2023 12:19:10 -0300 Subject: [PATCH 3/6] chore: change connect wallet text in privy button --- integrations/privy/wallet-connect.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/privy/wallet-connect.tsx b/integrations/privy/wallet-connect.tsx index c4526e9f..3f035f51 100644 --- a/integrations/privy/wallet-connect.tsx +++ b/integrations/privy/wallet-connect.tsx @@ -21,7 +21,7 @@ export const WalletConnect = ({ className, classNameConnected, classNameWrongNetwork, - labelConnect = 'Connect', + labelConnect = 'Connect Wallet', labelManage = 'Manage Wallets', ...props }: WalletConnectPrivyProps) => { From 2a2093b8b6d65303e4ade7b4e91170def2ffd874 Mon Sep 17 00:00:00 2001 From: AlanRacciatti Date: Wed, 25 Oct 2023 14:23:52 -0300 Subject: [PATCH 4/6] feat: improve privy's connect wallet btn UI --- app/(general)/integration/disco/page.tsx | 2 +- app/(general)/integration/erc1155/page.tsx | 2 +- app/(general)/integration/erc20/page.tsx | 2 +- app/(general)/integration/erc721/page.tsx | 2 +- app/(general)/integration/etherscan/page.tsx | 2 +- app/(general)/integration/gelato/page.tsx | 2 +- .../integration/gitcoin-passport/page.tsx | 2 +- .../gitcoin-passport/score-gated/page.tsx | 2 +- .../gitcoin-passport/stamp-gated/page.tsx | 2 +- .../integration/lens-protocol/layout.tsx | 2 +- .../integration/lit-protocol/page.tsx | 2 +- .../integration/pooltogether-v4/page.tsx | 2 +- .../integration/push-protocol/page.tsx | 2 +- .../sign-in-with-ethereum/page.tsx | 2 +- app/(general)/layout.tsx | 2 +- app/admin/layout.tsx | 66 +++++++++++++------ app/dashboard/layout.tsx | 3 +- app/layout.tsx | 4 +- components/layout/dashboard-header.tsx | 40 ++++++----- components/shared/example-demos.tsx | 2 +- .../erc20/components/erc20-write-transfer.tsx | 2 +- .../components/form-lit-decrypt-message.tsx | 2 +- .../components/form-lit-encrypt-message.tsx | 2 +- integrations/privy/wallet-connect.tsx | 59 ++++++++++++----- 24 files changed, 134 insertions(+), 76 deletions(-) diff --git a/app/(general)/integration/disco/page.tsx b/app/(general)/integration/disco/page.tsx index ea1ddc79..ee611fbe 100644 --- a/app/(general)/integration/disco/page.tsx +++ b/app/(general)/integration/disco/page.tsx @@ -10,7 +10,6 @@ import { buttonVariants } from "@/components/ui/button" import { Card, CardContent, CardHeader } from "@/components/ui/card" import { Separator } from "@/components/ui/separator" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -24,6 +23,7 @@ import { LightDarkImage } from "@/components/shared/light-dark-image" import { DiscoProfileBasic } from "@/integrations/disco/components/disco-profile-basic" import { DiscoProfileCredentials } from "@/integrations/disco/components/disco-profile-credentials" import { FormCredentialIssuanceProofOfHack } from "@/integrations/disco/components/form-issue-proof-of-hack" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { ButtonSIWELogin } from "@/integrations/siwe/components/button-siwe-login" import { IsSignedIn } from "@/integrations/siwe/components/is-signed-in" import { IsSignedOut } from "@/integrations/siwe/components/is-signed-out" diff --git a/app/(general)/integration/erc1155/page.tsx b/app/(general)/integration/erc1155/page.tsx index 809a8f71..4e8a0d14 100644 --- a/app/(general)/integration/erc1155/page.tsx +++ b/app/(general)/integration/erc1155/page.tsx @@ -6,7 +6,6 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -28,6 +27,7 @@ import { } from "@/integrations/erc1155" import { Erc1155SetTokenStorage } from "@/integrations/erc1155/components/erc1155-set-token-storage" import { useErc1155TokenStorage } from "@/integrations/erc1155/hooks/use-erc1155-token-storage" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" const integrationData = turboIntegrations.erc1155 diff --git a/app/(general)/integration/erc20/page.tsx b/app/(general)/integration/erc20/page.tsx index 9bb82594..b87d63df 100644 --- a/app/(general)/integration/erc20/page.tsx +++ b/app/(general)/integration/erc20/page.tsx @@ -7,7 +7,6 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" import { Card, CardContent } from "@/components/ui/card" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -24,6 +23,7 @@ import { Erc20SetTokenStorage } from "@/integrations/erc20/components/erc20-set- import { ERC20WriteMint } from "@/integrations/erc20/components/erc20-write-mint" import { ERC20WriteTransfer } from "@/integrations/erc20/components/erc20-write-transfer" import { useERC20TokenStorage } from "@/integrations/erc20/hooks/use-erc20-token-storage" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function Erc20Page() { const [token] = useERC20TokenStorage() diff --git a/app/(general)/integration/erc721/page.tsx b/app/(general)/integration/erc721/page.tsx index 9a1d8e66..6202af75 100644 --- a/app/(general)/integration/erc721/page.tsx +++ b/app/(general)/integration/erc721/page.tsx @@ -6,7 +6,6 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -26,6 +25,7 @@ import { } from "@/integrations/erc721" import { Erc721SetTokenStorage } from "@/integrations/erc721/components/erc721-set-token-storage" import { useErc721TokenStorage } from "@/integrations/erc721/hooks/use-erc721-token-storage" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function ERC721Page() { const [token] = useErc721TokenStorage() diff --git a/app/(general)/integration/etherscan/page.tsx b/app/(general)/integration/etherscan/page.tsx index 09078231..5dc53f87 100644 --- a/app/(general)/integration/etherscan/page.tsx +++ b/app/(general)/integration/etherscan/page.tsx @@ -8,7 +8,6 @@ import { useNetwork } from "wagmi" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" import { Card, CardContent } from "@/components/ui/card" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -21,6 +20,7 @@ import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected import { LightDarkImage } from "@/components/shared/light-dark-image" import TransactionsTable from "@/integrations/etherscan/components/transactions-table" import { useEtherscanAccountTransactions } from "@/integrations/etherscan/hooks/use-etherscan-account-transactions" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { ButtonSIWELogin } from "@/integrations/siwe/components/button-siwe-login" import { IsSignedIn } from "@/integrations/siwe/components/is-signed-in" import { IsSignedOut } from "@/integrations/siwe/components/is-signed-out" diff --git a/app/(general)/integration/gelato/page.tsx b/app/(general)/integration/gelato/page.tsx index ddb8b726..a335be2f 100644 --- a/app/(general)/integration/gelato/page.tsx +++ b/app/(general)/integration/gelato/page.tsx @@ -7,7 +7,6 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -19,6 +18,7 @@ import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { LightDarkImage } from "@/components/shared/light-dark-image" import { ActiveTasks, useIsAutomateSupported } from "@/integrations/gelato" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function GelatoPage() { const isAutomateSupported = useIsAutomateSupported() diff --git a/app/(general)/integration/gitcoin-passport/page.tsx b/app/(general)/integration/gitcoin-passport/page.tsx index a7a22b71..8b312673 100644 --- a/app/(general)/integration/gitcoin-passport/page.tsx +++ b/app/(general)/integration/gitcoin-passport/page.tsx @@ -1,9 +1,9 @@ "use client" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { ListStamps } from "@/integrations/gitcoin-passport/components/list-stamps" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function PageIntegration() { return ( diff --git a/app/(general)/integration/gitcoin-passport/score-gated/page.tsx b/app/(general)/integration/gitcoin-passport/score-gated/page.tsx index 62fcf34c..814d31c7 100644 --- a/app/(general)/integration/gitcoin-passport/score-gated/page.tsx +++ b/app/(general)/integration/gitcoin-passport/score-gated/page.tsx @@ -1,10 +1,10 @@ "use client" import { Card, CardContent, CardTitle } from "@/components/ui/card" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { ScoreGate } from "@/integrations/gitcoin-passport/components/score-gate" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function PageIntegration() { return ( diff --git a/app/(general)/integration/gitcoin-passport/stamp-gated/page.tsx b/app/(general)/integration/gitcoin-passport/stamp-gated/page.tsx index f38b9a37..928e9e46 100644 --- a/app/(general)/integration/gitcoin-passport/stamp-gated/page.tsx +++ b/app/(general)/integration/gitcoin-passport/stamp-gated/page.tsx @@ -1,10 +1,10 @@ "use client" import { Card, CardContent, CardTitle } from "@/components/ui/card" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { StampGate } from "@/integrations/gitcoin-passport/components/stamp-gate" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function PageIntegration() { return ( diff --git a/app/(general)/integration/lens-protocol/layout.tsx b/app/(general)/integration/lens-protocol/layout.tsx index 7949c050..44937fcb 100644 --- a/app/(general)/integration/lens-protocol/layout.tsx +++ b/app/(general)/integration/lens-protocol/layout.tsx @@ -8,7 +8,6 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -21,6 +20,7 @@ import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected import { LightDarkImage } from "@/components/shared/light-dark-image" import { Navbar } from "@/integrations/lens-protocol/components/navbar" import { lensProviderConfig } from "@/integrations/lens-protocol/lens-provider" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function LayoutIntegration({ children, diff --git a/app/(general)/integration/lit-protocol/page.tsx b/app/(general)/integration/lit-protocol/page.tsx index 5a1dbbee..e37417e3 100644 --- a/app/(general)/integration/lit-protocol/page.tsx +++ b/app/(general)/integration/lit-protocol/page.tsx @@ -8,7 +8,6 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -21,6 +20,7 @@ import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected import { LightDarkImage } from "@/components/shared/light-dark-image" import { FormLitDecryptMessage } from "@/integrations/lit-protocol/components/form-lit-decrypt-message" import { FormLitEncryptMessage } from "@/integrations/lit-protocol/components/form-lit-encrypt-message" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function LitProtocolPage() { const searchParams = useSearchParams() diff --git a/app/(general)/integration/pooltogether-v4/page.tsx b/app/(general)/integration/pooltogether-v4/page.tsx index 036edc94..b04c5f9b 100644 --- a/app/(general)/integration/pooltogether-v4/page.tsx +++ b/app/(general)/integration/pooltogether-v4/page.tsx @@ -5,7 +5,6 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -18,6 +17,7 @@ import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected import { LightDarkImage } from "@/components/shared/light-dark-image" import { PoolTogetherFormDeposit } from "@/integrations/pooltogether-v4/components/form-yield-source-prize-pool-deposit" import { PoolTogetherFormWithdraw } from "@/integrations/pooltogether-v4/components/form-yield-source-prize-pool-withdraw" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function PoolTogetherPage() { return ( diff --git a/app/(general)/integration/push-protocol/page.tsx b/app/(general)/integration/push-protocol/page.tsx index c503657d..3b635cb1 100644 --- a/app/(general)/integration/push-protocol/page.tsx +++ b/app/(general)/integration/push-protocol/page.tsx @@ -18,7 +18,6 @@ import { SelectValue, } from "@/components/ui/select" import { Separator } from "@/components/ui/separator" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -37,6 +36,7 @@ import { NotificationBell, } from "@/integrations/push-protocol" import { PUSH_CHANNEL_ADDRESS } from "@/integrations/push-protocol/utils/constants" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function PushProtocolPage() { const [mockedNotifications, setMockedNotifications] = useState< diff --git a/app/(general)/integration/sign-in-with-ethereum/page.tsx b/app/(general)/integration/sign-in-with-ethereum/page.tsx index 601b9e1e..13b85879 100644 --- a/app/(general)/integration/sign-in-with-ethereum/page.tsx +++ b/app/(general)/integration/sign-in-with-ethereum/page.tsx @@ -4,7 +4,6 @@ import { LuBook } from "react-icons/lu" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageHeader, PageHeaderCTA, @@ -15,6 +14,7 @@ import { PageSection } from "@/components/layout/page-section" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { LightDarkImage } from "@/components/shared/light-dark-image" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { ButtonSIWELogin } from "@/integrations/siwe/components/button-siwe-login" import { ButtonSIWELogout } from "@/integrations/siwe/components/button-siwe-logout" import { IsSignedIn } from "@/integrations/siwe/components/is-signed-in" diff --git a/app/(general)/layout.tsx b/app/(general)/layout.tsx index 06879328..6ca835c6 100644 --- a/app/(general)/layout.tsx +++ b/app/(general)/layout.tsx @@ -3,7 +3,7 @@ import { ReactNode } from "react" import { NetworkStatus } from "@/components/blockchain/network-status" import { Footer } from "@/components/layout/footer" import { SiteHeader } from "@/components/layout/site-header" -import { WalletConnect } from '@/integrations/rainbow-kit/wallet-connect' +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" interface RootLayoutProps { children: ReactNode diff --git a/app/admin/layout.tsx b/app/admin/layout.tsx index 3793d49c..d3bb9c64 100644 --- a/app/admin/layout.tsx +++ b/app/admin/layout.tsx @@ -1,20 +1,23 @@ -'use client' +"use client" -import classNames from 'clsx' -import Image from 'next/image' +import Image from "next/image" +import classNames from "clsx" -import { DashboardFooter } from '@/components/layout/dashboard-footer' -import { DashboardHeader } from '@/components/layout/dashboard-header' -import { MenuAdminSidebar } from '@/components/layout/menu-admin-sidebar' -import { UserDropdown } from '@/components/layout/user-dropdown' -import { BranchColorMode } from '@/components/shared/branch-color-mode' -import { LinkComponent } from '@/components/shared/link-component' -import { ResponsiveMobileAndDesktop } from '@/components/shared/responsive-mobile-and-desktop' -import { siteConfig } from '@/config/site' -import { WalletConnect } from '@/integrations/rainbow-kit/wallet-connect' +import { siteConfig } from "@/config/site" +import { DashboardFooter } from "@/components/layout/dashboard-footer" +import { DashboardHeader } from "@/components/layout/dashboard-header" +import { MenuAdminSidebar } from "@/components/layout/menu-admin-sidebar" +import { UserDropdown } from "@/components/layout/user-dropdown" +import { BranchColorMode } from "@/components/shared/branch-color-mode" +import { LinkComponent } from "@/components/shared/link-component" +import { ResponsiveMobileAndDesktop } from "@/components/shared/responsive-mobile-and-desktop" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" export default function AdminLayout({ children }: any) { - const classes = classNames('AdminLayout', 'bg-gradient-dark h-screen lg:grid lg:grid-cols-12') + const classes = classNames( + "AdminLayout", + "bg-gradient-dark h-screen lg:grid lg:grid-cols-12" + ) return ( <>
@@ -24,8 +27,18 @@ export default function AdminLayout({ children }: any) {
- Logo - Logo + Logo + Logo
@@ -37,10 +50,22 @@ export default function AdminLayout({ children }: any) {
- Logo - Logo + Logo + Logo -

{siteConfig.name}

+

+ {siteConfig.name} +

@@ -48,7 +73,10 @@ export default function AdminLayout({ children }: any) {
- + Dashboard
diff --git a/app/dashboard/layout.tsx b/app/dashboard/layout.tsx index 21579218..e3829ed8 100644 --- a/app/dashboard/layout.tsx +++ b/app/dashboard/layout.tsx @@ -7,13 +7,12 @@ import { siteConfig } from "@/config/site" import { ScrollArea } from "@/components/ui/scroll-area" import { SidebarNav } from "@/components/layout/sidebar-nav" import { SiteHeader } from "@/components/layout/site-header" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" interface DashboardLayoutProps { children: React.ReactNode } -import { WalletConnect } from '@/integrations/rainbow-kit/wallet-connect' - export default function DashboardLayout({ children }: DashboardLayoutProps) { return (
diff --git a/app/layout.tsx b/app/layout.tsx index b4ade089..749056e7 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,12 +3,12 @@ import "@/styles/globals.css" import { ReactNode } from "react" import { env } from "@/env.mjs" -import RootProvider from '@/integrations/rainbow-kit/root-provider' -import { cn } from '@/lib/utils' import { siteConfig } from "@/config/site" import { fontSans } from "@/lib/fonts" +import { cn } from "@/lib/utils" import { Toaster } from "@/components/ui/toaster" +import RootProvider from "@/integrations/rainbow-kit/root-provider" const url = env.NEXT_PUBLIC_SITE_URL || "http://localhost:3000" diff --git a/components/layout/dashboard-header.tsx b/components/layout/dashboard-header.tsx index 67eee7e6..95020eb8 100644 --- a/components/layout/dashboard-header.tsx +++ b/components/layout/dashboard-header.tsx @@ -1,31 +1,35 @@ -import { WalletAddress } from '@turbo-eth/core-wagmi' -import classNames from 'clsx' -import { CopyToClipboard } from 'react-copy-to-clipboard' -import { FaCopy } from 'react-icons/fa' -import { useAccount } from 'wagmi' +import { WalletAddress } from "@turbo-eth/core-wagmi" +import classNames from "clsx" +import { CopyToClipboard } from "react-copy-to-clipboard" +import { FaCopy } from "react-icons/fa" +import { useAccount } from "wagmi" -import { BranchIsWalletConnected } from '@/components/shared/branch-is-wallet-connected' -import { WalletConnect } from '@/integrations/rainbow-kit/wallet-connect' -import { BranchIsAuthenticated } from '@/integrations/siwe/components/branch-is-authenticated' -import { ButtonSIWELogin } from '@/integrations/siwe/components/button-siwe-login' -import { ButtonSIWELogout } from '@/integrations/siwe/components/button-siwe-logout' -import { useToast } from '@/lib/hooks/use-toast' +import { useToast } from "@/lib/hooks/use-toast" +import { BranchIsWalletConnected } from "@/components/shared/branch-is-wallet-connected" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" +import { BranchIsAuthenticated } from "@/integrations/siwe/components/branch-is-authenticated" +import { ButtonSIWELogin } from "@/integrations/siwe/components/button-siwe-login" +import { ButtonSIWELogout } from "@/integrations/siwe/components/button-siwe-logout" -import { ThemeToggle } from '../shared/theme-toggle' +import { ThemeToggle } from "../shared/theme-toggle" interface Props { className?: string } export function DashboardHeader(props: Props) { - const classes = classNames(props.className, 'Header', 'px-6 lg:px-10 py-3 flex items-center w-full') + const classes = classNames( + props.className, + "Header", + "px-6 lg:px-10 py-3 flex items-center w-full" + ) const { address } = useAccount() const { toast, dismiss } = useToast() const handleToast = () => { toast({ - title: 'Addess Copied', - description: 'Your address has been copied to your clipboard.', + title: "Addess Copied", + description: "Your address has been copied to your clipboard.", }) setTimeout(() => { @@ -37,7 +41,11 @@ export function DashboardHeader(props: Props) {
- + diff --git a/components/shared/example-demos.tsx b/components/shared/example-demos.tsx index 51307f73..7a22e7b4 100644 --- a/components/shared/example-demos.tsx +++ b/components/shared/example-demos.tsx @@ -12,7 +12,6 @@ import { cn } from "@/lib/utils" import { fadeUpVariant } from "@/lib/utils/motion" import { buttonVariants } from "@/components/ui/button" import { WalletAddress } from "@/components/blockchain/wallet-address" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { PageSectionGrid } from "@/components/layout/page-section" import { IsDarkTheme } from "@/components/shared/is-dark-theme" import { IsLightTheme } from "@/components/shared/is-light-theme" @@ -25,6 +24,7 @@ import { ERC20Symbol, } from "@/integrations/erc20/components/erc20-read" import { ERC721TokenUriImage, ERC721TokenUriName } from "@/integrations/erc721" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { ButtonSIWELogin } from "@/integrations/siwe/components/button-siwe-login" import { ButtonSIWELogout } from "@/integrations/siwe/components/button-siwe-logout" import { IsSignedIn } from "@/integrations/siwe/components/is-signed-in" diff --git a/integrations/erc20/components/erc20-write-transfer.tsx b/integrations/erc20/components/erc20-write-transfer.tsx index 2956033a..9a763f5c 100644 --- a/integrations/erc20/components/erc20-write-transfer.tsx +++ b/integrations/erc20/components/erc20-write-transfer.tsx @@ -7,9 +7,9 @@ import { Card, CardContent, CardFooter } from "@/components/ui/card" import { Separator } from "@/components/ui/separator" import { ContractWriteButton } from "@/components/blockchain/contract-write-button" import { TransactionStatus } from "@/components/blockchain/transaction-status" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { useErc20Transfer, diff --git a/integrations/lit-protocol/components/form-lit-decrypt-message.tsx b/integrations/lit-protocol/components/form-lit-decrypt-message.tsx index 4099b9ea..1719ce4f 100644 --- a/integrations/lit-protocol/components/form-lit-decrypt-message.tsx +++ b/integrations/lit-protocol/components/form-lit-decrypt-message.tsx @@ -8,9 +8,9 @@ import { useToast } from "@/lib/hooks/use-toast" import { Button } from "@/components/ui/button" import { Card, CardContent, CardFooter } from "@/components/ui/card" import { Textarea } from "@/components/ui/textarea" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { useLitClient } from "../hooks/use-lit-client" diff --git a/integrations/lit-protocol/components/form-lit-encrypt-message.tsx b/integrations/lit-protocol/components/form-lit-encrypt-message.tsx index 69932da4..e91e035b 100644 --- a/integrations/lit-protocol/components/form-lit-encrypt-message.tsx +++ b/integrations/lit-protocol/components/form-lit-encrypt-message.tsx @@ -21,10 +21,10 @@ import { } from "@/components/ui/select" import { Separator } from "@/components/ui/separator" import { Textarea } from "@/components/ui/textarea" -import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" import { LinkComponent } from "@/components/shared/link-component" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { useLitClient } from "../hooks/use-lit-client" import { AccessControlConditions } from "../utils/types" diff --git a/integrations/privy/wallet-connect.tsx b/integrations/privy/wallet-connect.tsx index 3f035f51..25503c6d 100644 --- a/integrations/privy/wallet-connect.tsx +++ b/integrations/privy/wallet-connect.tsx @@ -1,13 +1,18 @@ -'use client' +"use client" -import { HTMLAttributes } from 'react' +import { HTMLAttributes } from "react" +import Link from "next/link" +import { usePrivy, useWallets } from "@privy-io/react-auth" +import { usePrivyWagmi } from "@privy-io/wagmi-connector" -import { usePrivy, useWallets } from '@privy-io/react-auth' -import { usePrivyWagmi } from '@privy-io/wagmi-connector' - -import { Button } from '@/components/ui/button' -import { Dialog, DialogContent, DialogFooter, DialogTrigger } from '@/components/ui/dialog' -import { shorten } from '@/lib/utils/shorten' +import { shorten } from "@/lib/utils/shorten" +import { Button } from "@/components/ui/button" +import { + Dialog, + DialogContent, + DialogFooter, + DialogTrigger, +} from "@/components/ui/dialog" interface WalletConnectPrivyProps extends HTMLAttributes { classNameConnect?: string @@ -21,8 +26,8 @@ export const WalletConnect = ({ className, classNameConnected, classNameWrongNetwork, - labelConnect = 'Connect Wallet', - labelManage = 'Manage Wallets', + labelConnect = "Connect Wallet", + labelManage = "Manage Wallets", ...props }: WalletConnectPrivyProps) => { const { login, ready, authenticated, logout } = usePrivy() @@ -37,22 +42,39 @@ export const WalletConnect = ({ if (!authenticated) { return ( <> - + ) } else { return ( -
-

Manage wallets

+

Manage wallets

+

+ Select your preferred wallet. + + Read more + +

+

- Active: {activeWallet?.address} + Active:{" "} + + {activeWallet?.address} +

{wallets.map((wallet, index) => (
@@ -61,7 +83,10 @@ export const WalletConnect = ({ {wallet.address === activeWallet?.address ? ( Active ) : ( - )} @@ -69,9 +94,7 @@ export const WalletConnect = ({ ))}
- +
From b08b0ec3bbde4be5607b2980fbe9164905b25f50 Mon Sep 17 00:00:00 2001 From: AlanRacciatti Date: Wed, 25 Oct 2023 14:38:26 -0300 Subject: [PATCH 5/6] fix: wrong import connext integration --- integrations/connext/components/form-connext-xtransfer.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/integrations/connext/components/form-connext-xtransfer.tsx b/integrations/connext/components/form-connext-xtransfer.tsx index c048551b..2f2fc43b 100644 --- a/integrations/connext/components/form-connext-xtransfer.tsx +++ b/integrations/connext/components/form-connext-xtransfer.tsx @@ -23,9 +23,9 @@ import { SelectValue, } from "@/components/ui/select" import { Switch } from "@/components/ui/switch" -import WalletConnectCustom from "@/components/blockchain/wallet-connect-custom" import { IsWalletConnected } from "@/components/shared/is-wallet-connected" import { IsWalletDisconnected } from "@/components/shared/is-wallet-disconnected" +import { WalletConnect } from "@/integrations/rainbow-kit/wallet-connect" import { useApproveIfNeeded } from "../hooks/use-approve-if-needed" import { useEstimatedAmount } from "../hooks/use-estimated-amount" @@ -656,10 +656,7 @@ export function FormConnextXTransfer({ )} {getButton()} - + ) From 7e6e7dedccd0962eeb5cf425b3265ce80f0ded84 Mon Sep 17 00:00:00 2001 From: AlanRacciatti Date: Tue, 14 Nov 2023 16:26:21 -0300 Subject: [PATCH 6/6] fix: connext connect wallet btn broken --- .../components/form-connext-xtransfer.tsx | 2 +- integrations/privy/wallet-connect.tsx | 5 +---- integrations/rainbow-kit/wallet-connect.tsx | 21 ++++++++++--------- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/integrations/connext/components/form-connext-xtransfer.tsx b/integrations/connext/components/form-connext-xtransfer.tsx index 2f2fc43b..dd3910c8 100644 --- a/integrations/connext/components/form-connext-xtransfer.tsx +++ b/integrations/connext/components/form-connext-xtransfer.tsx @@ -656,7 +656,7 @@ export function FormConnextXTransfer({ )} {getButton()} - + ) diff --git a/integrations/privy/wallet-connect.tsx b/integrations/privy/wallet-connect.tsx index 25503c6d..e0b8aa6d 100644 --- a/integrations/privy/wallet-connect.tsx +++ b/integrations/privy/wallet-connect.tsx @@ -16,16 +16,13 @@ import { interface WalletConnectPrivyProps extends HTMLAttributes { classNameConnect?: string - classNameConnected?: string - classNameWrongNetwork?: string labelConnect?: string labelManage?: string } export const WalletConnect = ({ className, - classNameConnected, - classNameWrongNetwork, + classNameConnect, labelConnect = "Connect Wallet", labelManage = "Manage Wallets", ...props diff --git a/integrations/rainbow-kit/wallet-connect.tsx b/integrations/rainbow-kit/wallet-connect.tsx index 7ff8ced4..5c3cf6cb 100644 --- a/integrations/rainbow-kit/wallet-connect.tsx +++ b/integrations/rainbow-kit/wallet-connect.tsx @@ -1,26 +1,27 @@ -'use client' -import * as React from 'react' +"use client" -import { ConnectButton } from '@rainbow-me/rainbowkit' +import * as React from "react" +import { ConnectButton } from "@rainbow-me/rainbowkit" -interface WalletConnectProps { +interface WalletConnectProps extends React.HTMLAttributes { className?: string + classNameConnect?: string } export const WalletConnect = ({ className }: WalletConnectProps) => { return ( - +
- +
) }