diff --git a/.prettierrc b/.prettierrc index d9f988f..781e200 100644 --- a/.prettierrc +++ b/.prettierrc @@ -6,5 +6,6 @@ "semi": false, "singleQuote": true, "tabWidth": 2, - "trailingComma": "all" -} + "trailingComma": "all", + "useTabs": false +} \ No newline at end of file diff --git a/components/AcceptPayments/index.tsx b/components/AcceptPayments/index.tsx index 6362d78..2b11f53 100644 --- a/components/AcceptPayments/index.tsx +++ b/components/AcceptPayments/index.tsx @@ -1,24 +1,57 @@ -import classNames from "classnames"; -import CodeBlock from "components/CodeBlock"; -import LzButton from "components/UI/button"; -import Styles from './index.module.scss'; +import classNames from 'classnames' +import CodeBlock from 'components/CodeBlock' +import LzButton from 'components/UI/button' +import LzLink from 'components/UI/link' +import Styles from './index.module.scss' +import { DataProp, ItemType, RequestData } from 'components/CodeBlock/types' export default function AcceptPayments(): JSX.Element { - - return ( -
-
-
-

To get started

-

Authenticate all Lazerpay API calls using your secret keys.

-
- - Let's go - -
-
- -
-
- ) -} \ No newline at end of file + const codeObject: { type: any; item: RequestData } = { + type: 'request', + item: { + requestData: { + name: ['cURL'], + snippet: ['getStartedAcceptPaymentPostCURL'], + lang: ['curl'], + }, + // responseData: { + // name: ['201: Created'], + // snippet: ['nodeSDKSampleResponse'], + // lang: ['json'], + // }, + }, + } + return ( +
+
+
+

To get started

+

+ Authenticate all Lazerpay API calls using your secret keys. +

+
+ + Let's go + +
+
+ + {/* */} +
+
+ ) +} diff --git a/components/CardList/CardList.tsx b/components/CardList/CardList.tsx new file mode 100644 index 0000000..658dd77 --- /dev/null +++ b/components/CardList/CardList.tsx @@ -0,0 +1,38 @@ +import classNames from 'classnames' +import LinkCard from 'components/LinkCard' + +export type CardListProps = { + items: CardListType[] + icon: boolean +} + +export type CardListType = { + title: string + desc: string + route: string +} + +const CardList = (props: CardListProps) => { + const { items, icon } = props + return ( +
+ {items.map(({ title, desc, route }) => { + return ( + + ) + })} +
+ ) +} + +export default CardList diff --git a/components/CardList/LibrarySection.tsx b/components/CardList/LibrarySection.tsx new file mode 100644 index 0000000..588336d --- /dev/null +++ b/components/CardList/LibrarySection.tsx @@ -0,0 +1,17 @@ +import classNames from "classnames" +import LinkCard from "components/LinkCard" +import { libraryGetStarted } from './data'; + +export const GetStarted = () => { + return ( +
+ {libraryGetStarted.map(({ title, desc, route }) => { + return + })} +
+ ) +} \ No newline at end of file diff --git a/components/CardList/data.ts b/components/CardList/data.ts new file mode 100644 index 0000000..a59edbb --- /dev/null +++ b/components/CardList/data.ts @@ -0,0 +1,18 @@ +export interface CardWithImage { + title: string + desc: string + route: string +} + +export const libraryGetStarted: CardWithImage[] = [ + { + title: 'Libraries', + desc: 'Find documentation libraries for all Lazerpay products.', + route: 'libraries/libraries', + }, + { + title: 'Plugins', + desc: 'Official and open source softwares for accepting crypto payments.', + route: 'libraries/plugin', + }, +] diff --git a/components/CardList/index.ts b/components/CardList/index.ts new file mode 100644 index 0000000..2b712ce --- /dev/null +++ b/components/CardList/index.ts @@ -0,0 +1,2 @@ +export { GetStarted as LibraryGetStarted } from './LibrarySection'; +export { default } from './CardList'; \ No newline at end of file diff --git a/components/CodeBlock/components/RequestHead.tsx b/components/CodeBlock/components/RequestHead.tsx new file mode 100644 index 0000000..c26db34 --- /dev/null +++ b/components/CodeBlock/components/RequestHead.tsx @@ -0,0 +1,48 @@ +import cn from 'classnames' +import { LzCodeSelect, LzToggle } from 'components' +import { RequestData, RequestType } from '../types' + +const RequestHead = (props: RequestData) => { + const { + method = undefined, + requestData, + showResponse, + onChange, + toggleResponse, + } = props + const { name } = requestData as RequestType + const options = { + POST: 'bg-suc-100', + GET: 'bg-pri-500 text-neu-50', + PUT: 'bg-sec-700 text-neu-50', + PATCH: 'bg-sec-700 text-neu-50', + DELETE: 'bg-err-700 text-neu-50', + } + return ( +
+
+
+ {method && ( + + {method} + + )} + {name.length > 1 && } +
+
+ + {showResponse ? 'Hide Response' : 'Show Response'} + + +
+
+
+ ) +} + +export default RequestHead diff --git a/components/CodeBlock/components/ResponseHead.tsx b/components/CodeBlock/components/ResponseHead.tsx new file mode 100644 index 0000000..8be6139 --- /dev/null +++ b/components/CodeBlock/components/ResponseHead.tsx @@ -0,0 +1,31 @@ +import { LzCodeSelect } from 'components' +import { ItemType } from '../types' + +export type ResponseProp = { + title: string + item: ItemType + onChange: (i: number) => void +} + +const ResponseHead = (props: ResponseProp) => { + const { title, item, onChange } = props + const { name } = item as ItemType + return ( +
+
+
+

+ {title || 'Response'} +

+
+
+ {item.name.length > 1 ? ( + + ) : null} +
+
+
+ ) +} + +export default ResponseHead diff --git a/components/CodeBlock/components/TabHead.tsx b/components/CodeBlock/components/TabHead.tsx new file mode 100644 index 0000000..dca2604 --- /dev/null +++ b/components/CodeBlock/components/TabHead.tsx @@ -0,0 +1,39 @@ +import { useState, MouseEvent } from "react"; +import cn from "classnames"; + +export type TabProps = { + items: string[]; + onChange: (i: number) => void; +} + +const TabHead = (props: TabProps) => { + const { items, onChange } = props; + const [active, setActive] = useState(0); + + const tabItemClassName = (i: number): string => { + return cn('py-3.5 px-2.5 text-neu-400 relative mr-4', { 'text-pri-600': i === active }) + } + + const onTabClicked = (e: MouseEvent): void => { + e.preventDefault(); + const { dataset } = e.target as HTMLButtonElement; + setActive(Number(dataset.value)); + onChange(Number(dataset.value)) + } + return ( +
+
    + {items.map((title: string, i: number) => ( +
  • + + {i === active && ( +
    + )} +
  • + ))} +
+
+ ) +} + +export default TabHead; \ No newline at end of file diff --git a/components/CodeBlock/components/index.ts b/components/CodeBlock/components/index.ts new file mode 100644 index 0000000..d821a80 --- /dev/null +++ b/components/CodeBlock/components/index.ts @@ -0,0 +1,3 @@ +export { default as RequestHead } from './RequestHead'; +export { default as ResponseHead } from './ResponseHead'; +export { default as TabHead } from './TabHead'; \ No newline at end of file diff --git a/components/CodeBlock/configurePrism.ts b/components/CodeBlock/configurePrism.ts new file mode 100644 index 0000000..d0295c2 --- /dev/null +++ b/components/CodeBlock/configurePrism.ts @@ -0,0 +1,49 @@ +const initializePrism = (Prism) => { + Prism.languages.json = { + 'property': { + pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/, + lookbehind: true, + greedy: true + }, + 'string': { + pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/, + lookbehind: true, + greedy: true + }, + 'comment': { + pattern: /\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/, + greedy: true + }, + 'number': /-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i, + 'punctuation': /[{}[\],]/, + 'operator': /:/, + 'boolean': /\b(?:false|true)\b/, + 'null': { + pattern: /\bnull\b/, + alias: 'keyword' + } + }; + + Prism.languages.curl = { + 'curl': /\bcurl\b/, + 'url': /https?:[a-zA-Z0-9:.?=\/\-_{}]*/, + 'parameter': { + pattern: /[A-Za-z0-9\[\]-_]+ *(?=[=])/, + }, + 'value': [{ + pattern: /([=])([A-Za-z0-9-_.]*)/, + lookbehind: true, + }, { + pattern: /(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/, + }, { + pattern: /(\-u )([A-Za-z0-9-_.{}]*)/, + lookbehind: true, + }], + 'punctuation': /[{}['’\],]/, + 'method': /(?:POST|GET|PATCH|PUT)/g, + 'option': / *--[a-zA-Z-]*\b/, + }; + + Prism.languages.webmanifest = Prism.languages.json; +} +export { initializePrism }; \ No newline at end of file diff --git a/components/CodeBlock/hooks/useStateSnippet.ts b/components/CodeBlock/hooks/useStateSnippet.ts new file mode 100644 index 0000000..af8f699 --- /dev/null +++ b/components/CodeBlock/hooks/useStateSnippet.ts @@ -0,0 +1,42 @@ +import { snippets } from 'data/snippets'; +import { useState, useEffect } from 'react'; + +import { ItemType, RequestData, RequestType } from '../types'; + +export type StateSnippetProps = { + type: any; + item: any; +} + +export type StateSnippetTypes = { + language: string; + codeSnippet: string; + updateSnippet: any; +} + +const useStateSnippet = ({ type, item }: StateSnippetProps): StateSnippetTypes => { + const [codeSnippet, setCodeSnippet] = useState(""); + const [language, setLanguage] = useState("jsx"); + + const updateSnippet = (snippet, lang: string) => { + setCodeSnippet(snippet); + setLanguage(lang); + } + + useEffect(() => { + if (type === 'tab') { + updateSnippet(snippets[(item as ItemType).snippet[0]], (item as ItemType).lang[0]); + } + if (type === 'request') { + const { requestData } = item as RequestData; + updateSnippet(snippets[(requestData as RequestType).snippet[0]], (requestData as RequestType).lang[0]) + } + if (type === 'response') { + updateSnippet(snippets[(item as ItemType).snippet[0]], 'json'); + } + }, []); + + return { language, codeSnippet, updateSnippet }; +} + +export default useStateSnippet; \ No newline at end of file diff --git a/components/CodeBlock/index.module.scss b/components/CodeBlock/index.module.scss index 3ba98e6..5b17a28 100644 --- a/components/CodeBlock/index.module.scss +++ b/components/CodeBlock/index.module.scss @@ -8,15 +8,31 @@ position: absolute; top: -100px; } - + /* Track */ ::-webkit-scrollbar-track { background-color: #FFF; + position: absolute; } - + /* Handle */ ::-webkit-scrollbar-thumb { - background: #C2C2C2; + background: #C2C2C2; border-radius: 50px; + position: absolute; } +} + +.select { + box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05); + visibility: hidden; + top: 1.9rem; + opacity: 0; + transition: all .1s ease-out; +} + +.selectActive { + visibility: visible; + top: 1.3rem; + opacity: 1; } \ No newline at end of file diff --git a/components/CodeBlock/index.tsx b/components/CodeBlock/index.tsx index 2cf0532..7aeee4c 100644 --- a/components/CodeBlock/index.tsx +++ b/components/CodeBlock/index.tsx @@ -1,69 +1,145 @@ -import { useEffect } from 'react' +import { useEffect, useState, FC } from 'react' import Prism from 'prismjs' +import { CopyToClipboard } from 'react-copy-to-clipboard' +import cn from 'classnames' import 'prismjs/components/prism-jsx.js' import 'prismjs/plugins/line-numbers/prism-line-numbers.js' import 'prismjs/plugins/line-numbers/prism-line-numbers.css' -import 'prismjs/themes/prism-tomorrow.css' + import Styles from './index.module.scss' import { snippets } from 'data/snippets' -import classNames from 'classnames' -interface IProps { - id?: string - req?: string - lang?: string - className?: string - children?: React.ReactNode +import { RequestHead, ResponseHead, TabHead } from './components' +import { ItemType, RequestType, RequestData, DataProp } from './types' +import { initializePrism } from './configurePrism' +import useStateSnippet from './hooks/useStateSnippet' + +initializePrism(Prism) + +export interface CodeBlockProps { + responseTheme?: 'default' | 'red' + responseTitle?: string + data: DataProp + codeClassName?: string } -export const Label = ({ label }) => { - const options = { - POST: 'bg-suc-100', - } +const CodeBlock: FC> = (props) => { + const { data, responseTheme, responseTitle, codeClassName } = props + const { type, item } = data as DataProp - return ( -
- {label} -
+ const { codeSnippet, language, updateSnippet } = useStateSnippet({ + type, + item, + }) + const [copied, setCopied] = useState(false) + const [showResponse, setShowResponse] = useState(false) + + const onCodeSwitch = (i: number, items: ItemType | RequestType): void => { + updateSnippet( + snippets[(items as ItemType).snippet[i]], + (items as ItemType).lang[i], ) -} + } -export default function CodeBlock({ - id, - lang, - req = 'POST', - className, -}: IProps) { - const codeSnippet = snippets[id] || 'snippet not found' - // const title = Object.keys(snippets).find(s => s === id); + const onCopy = (): void => { + setCopied(true) + setTimeout(() => { + setCopied(false) + }, 2000) + } - useEffect(() => { - Prism.highlightAll() - }, []) + const responseThemeClassname = (): string => { + if (type === 'response') { + return responseTheme === 'default' ? 'code--default' : 'code--red' + } + return 'code' + } - return ( -
-
-
- -
-                    
-                        {codeSnippet}
-                    
-                
+ const codeBg = (): string => { + return type === 'response' ? 'response' : 'default' + } + + const hasResponseData = () => { + if (!item) return false + const hasKey = 'responseData' in item + const hasName = Array.isArray((item as RequestData).responseData?.name) + return hasKey && hasName + } + + useEffect(() => { + if (typeof window !== undefined) { + Prism.highlightAll() + } + }, [codeSnippet]) + + return ( +
+
+ {type === 'tab' && ( + onCodeSwitch(i, item as ItemType)} + /> + )} + {type === 'request' && ( + setShowResponse(state)} + {...(item as RequestData)} + onChange={(i: number) => + onCodeSwitch(i, (item as RequestData).requestData) + } + /> + )} + {type === 'response' && ( + onCodeSwitch(i, item as ItemType)} + /> + )} +
+ + + +
+            
+              {codeSnippet}
             
+          
- ) +
+ {type === 'request' && hasResponseData() && showResponse && ( +
+ +
+ )} +
+ ) } + +export default CodeBlock diff --git a/components/CodeBlock/types.d.ts b/components/CodeBlock/types.d.ts new file mode 100644 index 0000000..ae7eb93 --- /dev/null +++ b/components/CodeBlock/types.d.ts @@ -0,0 +1,21 @@ +export type ItemType = { + name: string[]; + snippet: string[]; + lang: string[]; +} + +export type RequestType = ItemType; + +export type RequestData = { + method?: 'POST' | 'GET'; + requestData: RequestType; + responseData?: ItemType; + showResponse?: boolean; + toggleResponse?: (boolean) => void; + onChange?: (i: number) => void; +} + +export type DataProp = { + type: 'tab' | 'request' | 'response', + item: ItemType | RequestData +} \ No newline at end of file diff --git a/components/Connect/data.tsx b/components/Connect/data.tsx index 643c2b2..1a135c7 100644 --- a/components/Connect/data.tsx +++ b/components/Connect/data.tsx @@ -1,35 +1,44 @@ -import { CommunityIcon, NewsPaperIcon, SupportIcon } from "public/icons"; -import React from "react" +import { CommunityIcon, NewsPaperIcon, SupportIcon } from 'public/icons' +import React from 'react' export interface IChannel { - icon: React.ReactNode - title: string - options: { title: string; link: string }[] + icon: React.ReactNode + title: string + options: { title: string; link: string }[] } -export const channels:IChannel[] = [ - { - icon: , - title: 'News', - options: [ - {title: 'Developer Newsletter', link: ''}, - {title: 'Tech blog', link: ''}, - ] - }, - { - icon: , - title: 'Social', - options: [ - {title: 'Slack', link: ''}, - {title: 'Developer Twitter', link: ''}, - ] - }, - { - icon: , - title: 'Help', - options: [ - {title: 'Slack', link: ''}, - {title: 'FAQs', link: ''}, - ] - } -] \ No newline at end of file +export const channels: IChannel[] = [ + { + icon: , + title: 'News', + options: [ + { title: 'Blog', link: 'https://lazerpay.finance/blog/' }, + { title: 'Telegram channel', link: 'https://t.me/lazerpay' }, + { title: 'Lazerpay Github', link: 'https://github.com/LazerPay-Finance' }, + ], + }, + { + icon: , + title: 'Social', + options: [ + { title: 'Twitter', link: 'https://twitter.com/lazerpay' }, + { + title: 'Youtube', + link: 'https://www.youtube.com/channel/UC4vVYSFK--pbguoqsuuNowQ', + }, + { title: 'Instagram', link: 'https://www.instagram.com/lazerpay/' }, + { + title: 'Developer Slack', + link: 'https://join.slack.com/t/lazerpay/shared_invite/zt-1gw00chsy-ql5C2aQww6xidhAtpXZm9w', + }, + ], + }, + { + icon: , + title: 'Help', + options: [ + { title: 'Forums', link: 'https://forum.lazerpay.finance/' }, + { title: 'Support email', link: 'mailto:support@lazerpay.finance' }, + ], + }, +] diff --git a/components/Connect/index.tsx b/components/Connect/index.tsx index ff243af..21b6b18 100644 --- a/components/Connect/index.tsx +++ b/components/Connect/index.tsx @@ -1,24 +1,33 @@ -import LzLink from "components/UI/link"; -import { channels } from "./data"; +import LzLink from 'components/UI/link' +import { channels } from './data' export default function ConnectCommunity(): JSX.Element { - return ( -
- { - channels.map((c: any) => ( -
-
- {c.icon} -
-
-

{c.title}

-
- {c.options.map((o) => {o.title})} -
-
-
- )) - } + return ( +
+ {channels.map((c: any) => ( +
+
+ {c.icon} +
+
+

{c.title}

+
+ {c.options.map((o) => ( + + {o.title} + + ))} +
+
- ) -} \ No newline at end of file + ))} +
+ ) +} diff --git a/components/Footer/data.ts b/components/Footer/data.ts index 4f5001f..085995d 100644 --- a/components/Footer/data.ts +++ b/components/Footer/data.ts @@ -1,23 +1,23 @@ export const footerData = { Lazerpay: [ - { title: 'About', route: 'about' }, + { title: 'About', route: 'https://lazerpay.finance/about' }, { title: 'Products', route: 'products' }, - { title: 'Pricing', route: 'pricing' }, - { title: 'Careers', route: 'careers' }, + { title: 'Pricing', route: 'https://lazerpay.finance/pricing' }, + { title: 'Careers', route: 'https://lazerpay.finance/careers' }, ], Resources: [ - { title: 'Docs', route: 'about' }, - { title: 'API Reference', route: 'products' }, - { title: 'API Explorer', route: 'pricing' }, - { title: 'SDK Reference', route: 'careers' }, - { title: 'Sample Apps', route: 'careers' }, + { title: 'Docs', route: '/' }, + { title: 'API Reference', route: 'https://documenter.getpostman.com/view/20216295/2s7ZE7L42K' }, + // { title: 'API Explorer', route: 'pricing' }, + { title: 'SDK Reference', route: 'libraries/libraries' }, + // { title: 'Sample Apps', route: 'careers' }, ], Support: [ - { title: 'Developer Forum', route: 'about' }, - { title: 'Contact Support', route: 'products' }, - { title: 'Tech Blog', route: 'pricing' }, - { title: 'Slack Community', route: 'careers' }, - { title: 'Youtube', route: 'careers' }, - { title: 'Twitter', route: 'careers' }, + { title: 'Developer Forum', route: 'https://forum.lazerpay.finance/' }, + { title: 'Contact Support', route: 'mailto:support@lazerpay.finance' }, + { title: 'Tech Blog', route: 'https://lazerpay.finance/blog/' }, + { title: 'Slack Community', route: 'https://join.slack.com/t/lazerpay/shared_invite/zt-1gw00chsy-ql5C2aQww6xidhAtpXZm9w' }, + { title: 'Youtube', route: 'https://www.youtube.com/channel/UC4vVYSFK--pbguoqsuuNowQ' }, + { title: 'Twitter', route: 'https://twitter.com/lazerpay' }, ] }; \ No newline at end of file diff --git a/components/GetstartedCard/data.ts b/components/GetstartedCard/data.ts index 0b37f1b..d114c51 100644 --- a/components/GetstartedCard/data.ts +++ b/components/GetstartedCard/data.ts @@ -7,13 +7,13 @@ export interface CardWithImage { export const startIntegratingData: CardWithImage[] = [ { title: 'Accept Payments', - desc: 'Let your customers pay using our support payment system', - route: 'accept-payments', + desc: 'Let your customers pay using our payment system', + route: 'payments/accept-payments', }, { title: 'Verify payments', - desc: 'Automatically verify trasactions after payments using lazerpay verify API ', - route: 'verify-payments', + desc: 'Automatically verify trasactions after payments using Lazerpay verify API ', + route: 'payments/verify-payments', }, ] @@ -21,7 +21,7 @@ export const completeYourIntegrationData: CardWithImage[] = [ { title: 'Payments Link', desc: 'With payments Link you can share your unique payments link to anyone in the world.', - route: 'payments-link', + route: 'payments/payment-links', }, { title: 'Partial Payments', @@ -30,33 +30,33 @@ export const completeYourIntegrationData: CardWithImage[] = [ }, { title: 'Setup Webhooks', - desc: 'Listen to webhook even whenever certain action occurs.', - route: 'setup-webhooks', + desc: 'Listen to webhook events whenever certain action occurs.', + route: 'payments/webhooks', }, ] export const testAndGoData: CardWithImage[] = [ { title: 'Make Test Payments', - desc: "We are goin to describe how you can go about testing Lazerpay's integration", + desc: "We are going to describe how you can go about testing Lazerpay's integration", route: 'payments/make-test-payments', }, - { - title: 'Go Live', - desc: 'Learnn about the steps required to make your integration live, and start receiving crypto payments in minutes.', - route: 'go-live', - }, + // { + // title: 'Go Live', + // desc: 'Learnn about the steps required to make your integration live, and start receiving crypto payments in minutes.', + // route: 'go-live', + // }, ] export const startPaymentData: CardWithImage[] = [ { title: 'Crypto Transfer', desc: 'Withdraw and send crypto to an external wallet using our APIs.', - route: 'crypto-transfers', + route: 'transfers/crypto-transfers', }, { title: 'Bank Transfers', desc: 'Send stable coins directly from your wallet to your local bank account. ', - route: 'bank-transfers', + route: 'transfers/bank-transfers', }, ] diff --git a/components/Header/data.ts b/components/Header/data.ts index f129727..7b11ea0 100644 --- a/components/Header/data.ts +++ b/components/Header/data.ts @@ -1,5 +1,5 @@ export const headerLinks = [ - { title: 'Quick Start', route: '/quick-start' }, - { title: 'APIs', route: '/quick-start' }, - { title: 'Support', route: '/quick-start' }, + { title: 'Quick Start', route: '/docs/quick-start' }, + { title: 'APIs', route: 'https://documenter.getpostman.com/view/20216295/2s7ZE7L42K' }, + { title: 'Support', route: 'https://forum.lazerpay.finance/' }, ] diff --git a/components/Header/index.tsx b/components/Header/index.tsx index c03f4e7..39a2de8 100644 --- a/components/Header/index.tsx +++ b/components/Header/index.tsx @@ -10,17 +10,22 @@ interface IProps { } const Header = ({ toggleSidebar }: IProps) => { - const headerStyles = 'pb-3 md:py-3 flex items-top lg:items-center justify-between xl:pr-4 sticky top-0 z-10 ' return ( -
+
toggleSidebar((prev: boolean) => !prev)} className='text-lg' - tabIndex={0}> + tabIndex={0} + >
@@ -30,7 +35,7 @@ const Header = ({ toggleSidebar }: IProps) => {

Docs

-
+
@@ -42,7 +47,11 @@ const Header = ({ toggleSidebar }: IProps) => {
{/* TODO - create a standalone component search bar */} - +
+ {/* */}
    @@ -52,7 +61,9 @@ const Header = ({ toggleSidebar }: IProps) => { ))}
- Dashboard + + Dashboard +
diff --git a/components/LibraryItem/index.tsx b/components/LibraryItem/index.tsx new file mode 100644 index 0000000..274c188 --- /dev/null +++ b/components/LibraryItem/index.tsx @@ -0,0 +1,54 @@ +import Divider from 'components/Divider' +import LzLink from 'components/UI/link' +import ArrowRightIcon from 'public/icons/arrow-right-icon' + +export interface ItemProp { + type: string + title: string + desc: string + link: string + linkText?: string +} + +export interface LibraryItemProps { + items: ItemProp[] +} + +const Item = (props: ItemProp) => { + const { type, title, desc, link, linkText } = props + + return ( +
+
{type}
+

{title}

+

{desc}

+
+ + + {linkText || 'View library'} + +
+ +
+ ) +} + +const LibraryItem = (props: LibraryItemProps) => { + const { items } = props + return ( +
+ {items.map((item) => ( + + ))} +
+ ) +} + +export default LibraryItem diff --git a/components/LinkCard/index.tsx b/components/LinkCard/index.tsx new file mode 100644 index 0000000..caed825 --- /dev/null +++ b/components/LinkCard/index.tsx @@ -0,0 +1,38 @@ +import LzLink from 'components/UI/link' +import LinkIcon from 'public/icons/link-icon' +import ArrowRightIcon from 'public/icons/arrow-right-icon' +import cn from 'classnames' + +interface MyProps { + desc: string + title: string + route: string + icon?: boolean +} + +const LinkCard = (props: MyProps) => { + const { desc, title, route, icon } = props + return ( +
+ +
+ {icon && } +
+ {title} +
+

{desc}

+ + + +
+
+
+ ) +} + +export default LinkCard diff --git a/components/Loader/Loader.module.scss b/components/Loader/Loader.module.scss new file mode 100644 index 0000000..3097626 --- /dev/null +++ b/components/Loader/Loader.module.scss @@ -0,0 +1,26 @@ +.loader { + width: 12px; + height: 12px; + border-radius: 50%; + background-color: #125bc9; + box-shadow: 32px 0 #125bc9, -32px 0 #125bc9; + position: relative; + animation: flash 0.5s ease-out infinite alternate; +} + +@keyframes flash { + 0% { + background-color: #FFF2; + box-shadow: 32px 0 #FFF2, -32px 0 #125bc9; + } + + 50% { + background-color: #125bc9; + box-shadow: 32px 0 #FFF2, -32px 0 #FFF2; + } + + 100% { + background-color: #FFF2; + box-shadow: 32px 0 #125bc9, -32px 0 #FFF2; + } +} \ No newline at end of file diff --git a/components/Loader/index.tsx b/components/Loader/index.tsx new file mode 100644 index 0000000..e031ad8 --- /dev/null +++ b/components/Loader/index.tsx @@ -0,0 +1,4 @@ +import Styles from './Loader.module.scss' +const Loader = () => + +export default Loader diff --git a/components/NotFound/index.tsx b/components/NotFound/index.tsx new file mode 100644 index 0000000..d2059b8 --- /dev/null +++ b/components/NotFound/index.tsx @@ -0,0 +1,12 @@ +const NotFound = () => { + return ( +
+

Page Not Found

+

+ The page you are looking for does not exist. +

+
+ ) +} + +export default NotFound diff --git a/components/QuickLinks/data.ts b/components/QuickLinks/data.ts index 22a4095..f0406e4 100644 --- a/components/QuickLinks/data.ts +++ b/components/QuickLinks/data.ts @@ -9,14 +9,14 @@ export interface TabsItem { export const tabsData: TabsItem[] = [ { title: "Accept Payments", - route: "quick-start/payments", + route: "payments/accept-payments", desc: `Accepting payments on Lazerpay is as seamless as it gets. Simply integrate a payment link or button.`, image: '/images/payments.svg', label: 'Go to payments' }, { title: "Transfers", - route: "quick-start/transfers", + route: "transfers/get-started", desc: `Get almost instant payouts to your local bank account, or crypto wallet`, image: '/images/transfers.svg', label: 'Go to transfers' @@ -30,23 +30,23 @@ export const tabsData: TabsItem[] = [ }, { title: "Libraries", - route: "quick-start/libraries", - desc: `These are othe official and community Lazerpay Libraries, APIs and Plugins.`, + route: "libraries/get-started", + desc: `Find the official and community Lazerpay Libraries, APIs and Plugins here.`, image: '/images/libraries.svg', label: 'Go to libraries' }, - { - title: "Use Cases", - route: "use-cases/get-started", - desc: `Learn how we’re powering crypto payments for creators, software providers, stores and startups.`, - image: '/images/use-cases.svg', - label: 'Go to Use Cases' - }, - { - title: "Guides and Tutorials", - route: "quick-start/guides", - desc: `Step-by-step guide on how to get the best out of your Lazerpay integration and features.`, - image: '/images/guides.svg', - label: 'Go to guides' - }, + // { + // title: "Use Cases", + // route: "use-cases/get-started", + // desc: `Learn how we’re powering crypto payments for creators, software providers, stores and startups.`, + // image: '/images/use-cases.svg', + // label: 'Go to Use Cases' + // }, + // { + // title: "Guides and Tutorials", + // route: "quick-start/guides", + // desc: `Step-by-step guide on how to get the best out of your Lazerpay integration and features.`, + // image: '/images/guides.svg', + // label: 'Go to guides' + // }, ] \ No newline at end of file diff --git a/components/Reaction/index.tsx b/components/Reaction/index.tsx index 1cc9d38..08cc1ae 100644 --- a/components/Reaction/index.tsx +++ b/components/Reaction/index.tsx @@ -1,18 +1,43 @@ -import { LzButton } from 'components'; -import { ThumbsDownIcon, ThumbsUpIcon } from 'public/icons'; +import { LzButton } from 'components' +import { ThumbsDownIcon, ThumbsUpIcon } from 'public/icons' +import useSetReaction from 'lib/use-set-reaction' +import { LzLoader } from 'components' +const Reaction = (): JSX.Element => { + const { showReaction, saveReaction, loading } = useSetReaction() -const Reaction = ():JSX.Element => { + if (!showReaction) return null return ( -
-

Did you find this page useful?

+
+ {loading && ( +
+ +
+ )} +

+ Did you find this page useful? +

- }>Yes - }>No + } + onClick={() => saveReaction(true)} + > + Yes + + } + onClick={() => saveReaction(false)} + > + No +
- ); -}; + ) +} -export default Reaction; \ No newline at end of file +export default Reaction diff --git a/components/TOC/index.tsx b/components/TOC/index.tsx index 51cd218..9ea8fa4 100644 --- a/components/TOC/index.tsx +++ b/components/TOC/index.tsx @@ -1,5 +1,5 @@ -import classNames from "classnames" -import { useScrollSpy } from "../../lib/use-scrollspy" +import classNames from 'classnames' +import { useScrollSpy } from '../../lib/use-scrollspy' import Styles from './index.module.scss' type TOC = Array<{ @@ -13,21 +13,25 @@ export function TableOfContents({ data = [] }: { data: TOC }) { return (
-

On this page

-
) diff --git a/components/TextBlock/index.module.scss b/components/TextBlock/index.module.scss new file mode 100644 index 0000000..e69de29 diff --git a/components/TextBlock/index.tsx b/components/TextBlock/index.tsx new file mode 100644 index 0000000..3fbebcd --- /dev/null +++ b/components/TextBlock/index.tsx @@ -0,0 +1,15 @@ +import React, { FC, PropsWithChildren } from "react"; + +export type TextBlockProps = { + children?: React.ReactNode; +} + +const urlRegex = /[(http(s)?):\/\/(www\.)?a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/ig + +const TextBlock: FC> = (props) => { + const { children } = props; + + return (
{children}
) +} + +export default TextBlock; \ No newline at end of file diff --git a/components/UI/alert.tsx b/components/UI/alert.tsx index a7ca04a..41a4695 100644 --- a/components/UI/alert.tsx +++ b/components/UI/alert.tsx @@ -1,46 +1,55 @@ -import classNames from "classnames"; -import { AlertIcon, ErrorIcon, InfoIcon, SuccessIcon } from "public/icons"; +import classNames from 'classnames' +import { AlertIcon, ErrorIcon, InfoIcon, SuccessIcon } from 'public/icons' interface IProps { - content?: string | React.ReactNode, - status?: 'warning' | 'error' | 'success' | 'info', - children?: any, - title?: string, - className?: string + content?: string | React.ReactNode + status?: 'warning' | 'error' | 'success' | 'info' + children?: any + title?: string + className?: string } -const LzAlert = ({ content, children, status = "info", title, className }: IProps) => { - const variants = { - 'warning': { - classNames: 'border-war-800 bg-war-50', - icon: - }, - 'error': { - classNames: 'border-err-800 bg-err-50', - icon: - }, - 'success': { - classNames: 'border-suc-800 bg-suc-50', - icon: - }, - 'info': { - classNames: 'border-neu-800 bg-neu-50', - icon: - } - }; +const LzAlert = ({ + content, + children, + status = 'info', + title, + className, +}: IProps) => { + const variants = { + warning: { + classNames: 'border-war-800 bg-war-50', + icon: , + }, + error: { + classNames: 'border-err-800 bg-err-50', + icon: , + }, + success: { + classNames: 'border-suc-800 bg-suc-50', + icon: , + }, + info: { + classNames: 'border-neu-800 bg-neu-50', + icon: , + }, + } - return ( -
- - {variants[status]['icon']} - -

{title}

-
-
- ) + return ( +
+ + {variants[status]['icon']} + +

{title}

+
{children || content}
+
+ ) } -export default LzAlert; \ No newline at end of file +export default LzAlert diff --git a/components/UI/codeSelect/codeselect.module.scss b/components/UI/codeSelect/codeselect.module.scss new file mode 100644 index 0000000..b7c4f7e --- /dev/null +++ b/components/UI/codeSelect/codeselect.module.scss @@ -0,0 +1,17 @@ +.select { + box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05); + visibility: hidden; + top: 1.9rem; + opacity: 0; + transition: all .1s ease-out; +} + +.selectActive { + visibility: visible; + top: 1.3rem; + opacity: 1; +} + +.left { + right: 0 +} \ No newline at end of file diff --git a/components/UI/codeSelect/index.tsx b/components/UI/codeSelect/index.tsx new file mode 100644 index 0000000..282b01d --- /dev/null +++ b/components/UI/codeSelect/index.tsx @@ -0,0 +1,65 @@ +import { useState, MouseEvent } from 'react' +import cn from 'classnames' + +import { useCloseContext } from 'lib/use-close-context' +import ArrowDown from 'public/icons/arrow-down' +import Styles from './codeselect.module.scss' + +export type SelectProps = { + items: string[] + onChange: (i: number) => void + position?: 'left' | 'right' +} + +const CodeSelect = (props: SelectProps) => { + const { items, onChange, position } = props + const [selected, setSelected] = useState(0) + const { ref, setVisible, visible } = useCloseContext() + + const onSelected = (e: MouseEvent): void => { + e.preventDefault() + const { dataset } = e.target as HTMLButtonElement + setSelected(Number(dataset.value)) + onChange(Number(dataset.value)) + setVisible((prev) => !prev) + } + return ( +
+ +
    + {items.map((item, i) => ( +
  • + +
  • + ))} +
+
+ ) +} + +export default CodeSelect diff --git a/components/UI/link.tsx b/components/UI/link.tsx index 361cf63..4262c91 100644 --- a/components/UI/link.tsx +++ b/components/UI/link.tsx @@ -1,42 +1,58 @@ -import classNames from 'classnames'; -import Link from 'next/link'; -import { useRouter } from 'next/router'; -import React, { ReactEventHandler } from 'react'; +import classNames from 'classnames' +import Link from 'next/link' +import { useRouter } from 'next/router' +import React, { ReactEventHandler } from 'react' interface IProps { - onClick?: ReactEventHandler - to?: string; - passHref?: boolean; - anchor?: boolean; - children?: React.ReactNode; - className?: string -}; + onClick?: ReactEventHandler + to?: string + passHref?: boolean + anchor?: boolean + children?: React.ReactNode + className?: string +} -const LzLink = React.forwardRef(({ to = "#", passHref = false, anchor, children, className, ...rest }: IProps, ref: any) => { - const { pathname } = useRouter(); - const isActive = to.includes(pathname); - const isExternalLink = to.includes('http') ? { target: '_blank' } : {}; +const LzLink = React.forwardRef( + ( + { + to = '#', + passHref = false, + anchor, + children, + className, + ...rest + }: IProps, + ref: any, + ) => { + const { pathname } = useRouter() + const isActive = to.includes(pathname) + const isExternalLink = to.includes('http') ? { target: '_blank' } : {} return ( - - - {children} - {anchor && ( - - # - - )} - - + + + {children} + {anchor && ( + + # + + )} + + ) -}) + }, +) LzLink.displayName = 'LzLink' -export default LzLink; \ No newline at end of file +export default LzLink diff --git a/components/UI/table.tsx b/components/UI/table.tsx index 8e023ae..ec293f0 100644 --- a/components/UI/table.tsx +++ b/components/UI/table.tsx @@ -1,9 +1,10 @@ export interface ITable { - body: string[] - head: string[] + body: string[]; + head: string[]; + reverse?: boolean; } -const LzTable = ({ head, body }) => { +const LzTable = ({ head, body, reverse }) => { if (!head || !body) return null; return ( @@ -25,7 +26,7 @@ const LzTable = ({ head, body }) => { { body.map((row: string[], i: number) => ( - + {row.map((c: string) => ( void; +} + +const Toggle = (props: ToggleProps) => { + const { state, onChange } = props; + const [checked, setChecked] = useState(state || false); + const onToggle = (e: ChangeEvent) => { + const { checked: inputChecked } = e.target as HTMLInputElement; + setChecked(!inputChecked); + onChange(!inputChecked); + } + + return ( + + ) +} + +export default Toggle; \ No newline at end of file diff --git a/components/YoutubePlayer/index.tsx b/components/YoutubePlayer/index.tsx new file mode 100644 index 0000000..9512f73 --- /dev/null +++ b/components/YoutubePlayer/index.tsx @@ -0,0 +1,20 @@ +import Style from './youtube.module.scss' + +const YoutubePlayer = (props) => { + const { src, title } = props + return ( +
+ +
+ ) +} + +export default YoutubePlayer diff --git a/components/YoutubePlayer/youtube.module.scss b/components/YoutubePlayer/youtube.module.scss new file mode 100644 index 0000000..089b1c2 --- /dev/null +++ b/components/YoutubePlayer/youtube.module.scss @@ -0,0 +1,14 @@ +.iframeContainer { + position: relative; + width: 100%; + padding-bottom: 52.65%; + height: 0; + + iframe { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + } +} \ No newline at end of file diff --git a/components/index.ts b/components/index.ts index 4b3a461..9d47616 100644 --- a/components/index.ts +++ b/components/index.ts @@ -6,9 +6,9 @@ import LzLink from './UI/link' import LzAlert from './UI/alert' import LinkedCard from './GetstartedCard/Cards' import { PlainCard } from './GetstartedCard/Cards'; -import { ShopifyIcon } from './../public/icons/shopify-icon'; -import { WordPressIcon } from './../public/icons/wordPress-Icon'; -import { WooCommerceIcon } from './../public/icons/wooCommerce-icon'; +import LzToggle from './UI/toggle'; +import LzCodeSelect from './UI/codeSelect'; +import LzLoader from './Loader'; // Page Components import FooterWrapper from './Footer' @@ -18,6 +18,7 @@ import Reaction from './Reaction' import { TableOfContents } from './TOC' import QuickLinks from './QuickLinks' import CodeBlock from './CodeBlock' +import TextBlock from './TextBlock' import AcceptPayments from './AcceptPayments' import ExploreDemo from './ExploreDemo' import WhatsNew from './WhatsNew' @@ -29,16 +30,23 @@ import Ecommerce from './UseCases' import TransferWebHook from './TransWebhook' import TestPayments from './TestPayments' import LzTable from './UI/table' -import Webhooks from './Webhooks' +import LinkCard from './LinkCard' +import CardList, { LibraryGetStarted } from './CardList'; +import LibraryItem from './LibraryItem' +import NotFound from './NotFound' +import YoutubePlayer from './YoutubePlayer' export { LzTable, LzInput, LzAlert, + LzToggle, + LzCodeSelect, WhatsNew, ExploreDemo, AcceptPayments, CodeBlock, + TextBlock, QuickLinks, TableOfContents, Sidebar, @@ -57,5 +65,11 @@ export { TransferWebHook, PlainCard, Ecommerce, - Webhooks + LinkCard, + LibraryGetStarted, + LibraryItem, + LzLoader, + CardList, + NotFound, + YoutubePlayer } diff --git a/components/mdx-components.tsx b/components/mdx-components.tsx index eeb2454..eceb1d9 100644 --- a/components/mdx-components.tsx +++ b/components/mdx-components.tsx @@ -4,6 +4,7 @@ import LzLink from './UI/link' import QuickLinks from './QuickLinks' import Divider from './Divider' import CodeBlock from './CodeBlock' +import TextBlock from './TextBlock' import GetstartedCard, { CompleteIntegration, TestAndGoLive, @@ -21,7 +22,12 @@ import TransferWebHook from './TransWebhook' import TestPayments from './TestPayments' import Ecommerce from './UseCases' import LzTable from './UI/table' +import LinkCard from './LinkCard' +import CardList, { LibraryGetStarted } from './CardList' +import LibraryItem from './LibraryItem' import Webhooks from './Webhooks' +import Reaction from './Reaction' +import YoutubePlayer from './YoutubePlayer' /** Create a map of the HTML elements */ export const components: Record>> = { @@ -43,8 +49,11 @@ export const components: Record>> = { Divider({ children, ...props }) { return }, - CodeBlock(props) { - return + CodeBlock({ data, ...props }) { + return + }, + TextBlock(props) { + return }, Admonition(props) { return
@@ -55,6 +64,15 @@ export const components: Record>> = { GetstartedCard() { return }, + LibraryGetStarted() { + return + }, + CardList({ items, icon, ...props }) { + return + }, + LibraryItem({ items, ...props }) { + return + }, TransferCard() { return }, @@ -64,8 +82,8 @@ export const components: Record>> = { TestAndGoLive() { return }, - Pagination(IProps) { - return + Pagination({ children, props }) { + return }, BankPayouts() { return @@ -77,6 +95,9 @@ export const components: Record>> = { LinkedCard(MyProps) { return }, + LinkCard({ children, prop }) { + return + }, PlainCard(MyProps) { return }, @@ -87,10 +108,15 @@ export const components: Record>> = { Webhooks() { return }, - + Reaction() { + return + }, + YoutubePlayer(props) { + return + }, /** Below this line contains all reusable UI components */ - LzTable({ head, body }) { - return + LzTable({ head, body, reverse }) { + return }, TransferWebHook() { return @@ -112,7 +138,7 @@ export const components: Record>> = { return

}, h3(props) { - return

+ return

}, h4(props) { return

@@ -120,8 +146,25 @@ export const components: Record>> = { pre(props) { return
   },
+  ol(props) {
+    return (
+      
    + ) + }, + ul(props) { + return ( +
      + ) + }, li(props) { - return
    • + // TODO: FIX + return
    • }, inlineCode(props) { return diff --git a/components/pagination.tsx b/components/pagination.tsx index ef06db9..5bfb49d 100644 --- a/components/pagination.tsx +++ b/components/pagination.tsx @@ -1,42 +1,46 @@ +import LzLink from './UI/link' import { paginate } from 'lib/pagination-utils' import { useRouter } from 'next/router' import PaginateLeftIcon from 'public/icons/paginate-left-icon' import PaginateRightIcon from 'public/icons/paginate-right-icon' - -interface IProps { - nextName?: string - prevName?: string - children?: React.ReactNode, -} - export function usePagination() { - const { asPath } = useRouter() + const { asPath } = useRouter(); const { prev, next } = paginate({ framework: 'react', current: asPath }) return { prev, next, hasPrev: !!prev, hasNext: !!next } } -export function Pagination({ nextName, prevName}: IProps) { - const { prev, next } = usePagination() +export function Pagination() { + const { prev, next } = usePagination(); + const prevPath = prev?.path ? `/docs/${prev.path}` : "#"; + const nextPath = next?.path ? `/docs/${next.path}` : "#"; return (
      - -
      -

      PREVIOUS

      -

      {prevName ? prevName : "Quick start" }

      -
      + {prev && ( + <> + + + +
      +

      PREVIOUS

      +

      {prev?.label ? prev.label : "Quick start"}

      +
      + + )}
      -
      -

      NEXT

      -

      {nextName ? nextName : "Accept payments" }

      -
      - + {next && ( + <> +
      +

      NEXT

      +

      {next?.label ? next.label : "Accept payments"}

      +
      + + + + + )}
      ) diff --git a/content/docs/customers/index.mdx b/content/docs/customers/index.mdx new file mode 100644 index 0000000..ec9dbce --- /dev/null +++ b/content/docs/customers/index.mdx @@ -0,0 +1,62 @@ +--- +title: Transactions +description: Transactions page +--- + +# Customers + +Keep track of all your customers with this API endpoint. You can use it to programmatically fetch and list all the customers linked to your Lazerpay account. + +## All Customers + +List all the transactions associated with your Lazerpay account. + +
      + + + +
      + +## Get transaction by transaction ID + +Fetch a specific transaction using its transaction ID. + +Path', '', ''], + [':transaction_id*', 'String', 'Supply a transaction ID'], +]} /> + +
      + \ No newline at end of file diff --git a/content/docs/libraries/get-started.mdx b/content/docs/libraries/get-started.mdx new file mode 100644 index 0000000..141faa5 --- /dev/null +++ b/content/docs/libraries/get-started.mdx @@ -0,0 +1,16 @@ +--- +title: Libraries - Getting Started +description: Getting Started Libraries page +--- + +# Libraries + +This is the page for the official and community Lazerpay mobile libraries, APIs and Plugins. + + + +## Get started + +Tools for accepting crypto payment on your app + + \ No newline at end of file diff --git a/content/docs/libraries/libraries.mdx b/content/docs/libraries/libraries.mdx new file mode 100644 index 0000000..afe5d43 --- /dev/null +++ b/content/docs/libraries/libraries.mdx @@ -0,0 +1,30 @@ +--- +title: Libraries - Libraries +description: Libraries Libraries page +--- + +# Libraries +Find documentation libraries for all Lazerpay products. + + +## Official libraries + + + +## Community libraries + + diff --git a/content/docs/libraries/plugins.mdx b/content/docs/libraries/plugins.mdx new file mode 100644 index 0000000..b06034e --- /dev/null +++ b/content/docs/libraries/plugins.mdx @@ -0,0 +1,21 @@ +--- +title: Plugins - Libraries +description: Plugins Libraries page +--- + +# Plugins +Official platform softwares for accepting crypto payments. + + +## Shopify + + + +## Wordpress + + diff --git a/content/docs/payments/accept-payments.mdx b/content/docs/payments/accept-payments.mdx index a34e60d..e374f7b 100644 --- a/content/docs/payments/accept-payments.mdx +++ b/content/docs/payments/accept-payments.mdx @@ -3,17 +3,129 @@ title: Accept Payments description: payment introduction page --- -# Payments: Demo table component +# Accept Payments -This is to show the table component Demo - - + {''} + + +## 2. Collect user Details +To receive payments you will need to pass some parameters which include some functions and optional customer information. They include: + +Cardinal
      Commerce", "We handle 3DS with no extra cost"], - ["Payment", "Completed on your checkout page", "Completed on a dashboard.lazerpay.finance redirect page"], - ["Local Payment", "Not supported", "Partially supported"], - ]} -/> \ No newline at end of file + ["name", "Customers Name", "Optional", "String"], + ["email", "Customer email", "Optional", "String"], + ["amount", "Customers amount to pay (in USD, AED, GBP, EUR, NGN)", "Required", "String | Number"], + ["reference", "Unique case sensitive transaction reference. If you do not pass this parameter, Lazerpay will generate a unique reference for you", "Optional", "String | Number"], + ["acceptPartialPayment", "If you want accept partial payment from customers, By default it's false", "Optional", "Boolean"], + ["key", 'Lazerpay key. Get you public key from your Lazerpay dashboard. Testnet public keys begin with "pk_test_" and mainnet keys begin with "pk_live_".', "Required", "String"], + ["currency", "The currency mount is denominated in. Can be USD, GBP, EUR, AED or NGN", "Required", "String"], + ["onClose", "The function called when the payment modal closes", "Optional", "Function"], + ["onSuccess", "The function called after the payment is confirmed", "Optional", "Function"], + ["onError", "The function that is called if an error occurs during payment confirmation", "Optional", "Function"], + ]} +/> + +When you add the inline checkout script, you immediately have access to the LazerCheckout function. Pass the information you get in step 2 to the function in an object inside the payWithLazerpay function + + +The customer information can be retrieved from your database if you already have it stored, or from a form like in the example below: + + +In this sample, notice how: + +1. The Lazerpay inline javascript is included using a script tag. This is how you import Lazerpay into your code. +2. The script and email here can be optional. The PopUp will provide those fields to the customers. +3. The Pay With Lazerpay button has been tied to an onClick function called Pay With Lazerpay. This is the action that causes the Lazerpay popup to load. + + + +## Initialize Payment API + +The initialize payment endpoint allows you to initiate payment directly to Lazerpay by passing in the payment details: + +Header', '', ''], + ['x-api-key*', 'String', 'YOUR_PUBLIC_KEY'], + ['Body', '', ''], + ['reference', 'String', 'YOUR_REFERENCE'], + ['customer_name*', 'String', "Your Customer's name"], + ['customer_email*', 'String', "Your Customer's email"], + ['coin*', 'String', 'Stablecoins you want your customers to pay you in'], + ['currency*', 'String', 'Currency should be in the currency you accept on your store, or application'], + ['amount*', 'String | Number', 'The amoumt you want to charge the customer in the currency specified above'], + ['accept_partial_payment', 'Boolean', 'This parameter is set to "false" by default. When you want to accept partial payments and ensure customers complete the required amount they are supposed to pay, it should be set to true'], +]} /> + +
      + + + +## Important Note +1. The coin field must either be “BUSD”, “DAI”, “USDT”, or “USDC”. +2. It's ideal to generate a unique reference from your system for every transaction to avoid duplicate attempts. +3. The accept_partial_payment field is used to enforce payment completion by your customers. A scenario is when a customer is trying to pay for a service worth a fixed amount of $100 USD. When accept_partial_payment is set to true, the customer must pay the exact amount before the funds will be sent to you. Read more about Partial Payments here. +4. The amount field should be in your fiat currency. The currencies we support are USD, AED, GBP, EUR and NGN. Please reach out to support@lazerpay.finance if you would want us to support a currency. +5. The amount during initialization is converted to the coin equivalent of the currency specified. + +Never call the Lazerpay API directly from your frontend to avoid exposing your secret key on the frontend. All requests to the Lazerpay API should be initiated from your server, and your frontend gets the response from your server. +
      +## Lazerpay’s Node JS SDK +The SDK allows you to initialise a payment transaction and to confirm payment. It's an NPM package so you can use it in a node environment. +Here's a sample code on how to use the NodeJS SDK: + + + +When a payment is successful, Lazerpay sends a DEPOSIT_TRANSACTION webhook event to webhook URL that you provide. It is highly recommended that you use webhooks to confirm the payment status before delivering value to your customers. diff --git a/content/docs/payments/get-started.mdx b/content/docs/payments/get-started.mdx index bbb91fd..020e54e 100644 --- a/content/docs/payments/get-started.mdx +++ b/content/docs/payments/get-started.mdx @@ -6,10 +6,9 @@ description: payment introduction page # Payments: Get started -Lazerpay payments can be processed accross multiple channels, including online, -in app. The lazerpay platform include server side API. +Lazerpay can process payments accross multiple channels with several mobile libraries and API. - + ## Start integrating @@ -17,7 +16,7 @@ Build your integration and recieve cryto payments - + ## Complete your integration @@ -25,15 +24,10 @@ Build your integration and recieve cryto payments - + ## Test and go live Test your integration and get ready to accept boardless cryto payments - - - - - diff --git a/content/docs/payments/make-test-payments.mdx b/content/docs/payments/make-test-payments.mdx index 2b51889..c330d1b 100644 --- a/content/docs/payments/make-test-payments.mdx +++ b/content/docs/payments/make-test-payments.mdx @@ -8,10 +8,21 @@ description: Test Payments page We are going to describe how you can go about testing Lazerpay integration. + - +## How to get Test Stable-coins - +- Go to the Binance testnet faucet. +- Navigate to the API Keys and Webhooks tab. +- Specify your webhook url and click on Update. + +![Swap Stablecoins](/images/test_payment.png) + +
      + +## Check the video below for detailed step-by-step instructions: - - \ No newline at end of file + \ No newline at end of file diff --git a/content/docs/payments/partial-payments.mdx b/content/docs/payments/partial-payments.mdx index 4495e41..0d3db3b 100644 --- a/content/docs/payments/partial-payments.mdx +++ b/content/docs/payments/partial-payments.mdx @@ -13,13 +13,9 @@ Accept partial payments on your platform. ## Introduction -With this feature, if you attempt to charge someone USD 100 but they only pay USD 90, the -transaction will be put on hold and tagged incomplete . until the person completes the -payment. With partial debits, we will not hold the amount_paid instead we will forward it to you -(the business) and send you a webhook for the transaction althought it’ll still have a status of - incomplete +With this feature, if you attempt to charge someone USD 100 but they only pay USD 90, the transaction will be put on hold and tagged incomplete . until the person completes the payment. With partial debits, we will not hold the amount_paid instead we will forward it to you (the business) and send you a webhook for the transaction althought it’ll still have a status of incomplete - + ## How Does it Work? @@ -31,7 +27,7 @@ You can use the partial payment feature through our accept payment api or throug content=' When using the partial payment feature, you need to pass the parameter "accept_partial_payment" : true'/> - + ## Verifying Transactions When verifying transactions (or implementing webhooks) that involve Partial Payments, there are @@ -43,7 +39,3 @@ intend to charge. status="info" className="mt-8 mb-8 " content='The fiat equivalent for the types of amounts are called fiatAmount and amountPaidFiat'/> - - - - \ No newline at end of file diff --git a/content/docs/payments/payment-links.mdx b/content/docs/payments/payment-links.mdx new file mode 100644 index 0000000..198882d --- /dev/null +++ b/content/docs/payments/payment-links.mdx @@ -0,0 +1,243 @@ +--- +title: Payments Link +description: Payment Link page +--- + +# Payments Link + +With payment links, you can share your unique payment link to anyone in the world. + + +## How do Payment Links Work? + +With Payment Links, you can create a payment page and share a link to it with your customers. Creating Payment links from the dashboard requires no coding and you can share the link as many times as you want on social media, in emails, or any other channel. + +You can also create payment links using our APIs or our Libraries. + +We have two types of payment link creation +- Standard payment link +- Donation payment link +
      + +## Standard Payment link + +Standard payment links are shareable links which you can use to receive digital payments from your customers worldwide + +![Swap Stablecoins](/images/standard-payment.png) + +
      + +### Create Standard payment link +Create a new standard payment link with the following endpoint + +Body', '', ''], + ['title*', 'String', 'ex: "Payment for Merchandise With Cash"'], + ['description*', 'String', 'ex: "Pay for some nice guccie bags"'], + ['options*', 'Object', 'ex: "options": { "collect_phone": true, "allow_promo": true, "collect_address": true },'], + ['action*', 'Object', 'ex: "action": { "redirect": true, "redirect_url": "https://local.me", "show_confirmation_page": false, "success_message": "thank you budd!" },'], + ['cart*', 'Array', 'ex: "cart": []'], + ['charge*', 'Array', 'ex: "charge": { "amount": 84000, "currency": "NGN" }'], + ]} +/> + + + +The array of price ids in the payload are gotten from existing products. + +
      + +### Update an existing standard payment link +Update an existing standard payment link with the following endpoint + +Body', '', ''], + ['title*', 'String', 'ex: "Payment for Merchandise With Cash"'], + ['description*', 'String', 'ex: "Pay for some nice guccie bags"'], + ['options*', 'Object', 'ex: "options": { "collect_phone": true, "allow_promo": true, "collect_address": true },'], + ['action*', 'Object', 'ex: "action": { "redirect": true, "redirect_url": "https://local.me", "show_confirmation_page": false, "success_message": "thank you budd!" },'], + ['cart*', 'Array', 'ex: "cart": []'], + ['charge*', 'Array', 'ex: "charge": { "amount": 84000, "currency": "NGN" }'], + ]} +/> + + + + + +## Donation Payment link + +Donation payment links can be created for people to support a cause that they care about + +![Swap Stablecoins](/images/donation-payment.png) + +
      + +### Create Donation payment link +Create a new donation payment link with the following endpoint + +Body', '', ''], + ['title*', 'String', 'ex: "Payment for Merchandise With Cash"'], + ['is_active*', 'boolean', 'true or false'], + ['description*', 'String', 'ex : "Donate here"'], + ['options*', 'Object', 'ex: "options": { "collect_phone": true, "allow_promo": true, "collect_address": true },'], + ['action*', 'Object', 'ex: "action": { "redirect": false, "redirect_url": "https://local.com/confirm", "show_confirmation_page": false, "success_message": "thank you budd!" },'], + ['social_links', 'Object', '"social_links": { "facebook":"fb.me/uche", "instagram": "noelukwa", "twitter" :"noelukwa" },'], + ['website_link', 'String', 'ex: https://uche.com'], + ['cover_photo', 'String | URL', 'ex: https://random-cover-photo.jpeg'], + ]} +/> + + + +
      + +### Update Donation payment link +Update an existing donation payment link with the following endpoint + +Body', '', ''], + ['title*', 'String', 'ex: "Payment for Merchandise With Cash"'], + ['is_active*', 'boolean', 'true or false'], + ['description*', 'String', 'ex : "Donate here"'], + ['options*', 'Object', 'ex: "options": { "collect_phone": true, "allow_promo": true, "collect_address": true },'], + ['action*', 'Object', 'ex: "action": { "redirect": false, "redirect_url": "https://local.com/confirm", "show_confirmation_page": false, "success_message": "thank you budd!" },'], + ['social_links', 'Object', '"social_links": { "facebook":"fb.me/uche", "instagram": "noelukwa", "twitter" :"noelukwa" },'], + ['website_link', 'String', 'ex: https://uche.com'], + ['cover_photo', 'String | URL', 'ex: https://random-cover-photo.jpeg'], + ['id*', 'String', 'ex: 362e16ce-226b-4e58-92f9-XXXX'], + ]} +/> + + + + + +## Fetch All Payment Links API +Get all the payment links using the API. + +Header', '', ''], + ['Authorization*', 'String', 'Bearer YOUR_SECRET_KEY'], + ]} +/> + + + + + +## Fetch Payment Link API +Using this endpoint, one can fetch the details of a particular payment link. + +Path', '', ''], + ['id_or_reference*', 'String', 'Bearer id_or_reference'], + ['Header', '', ''], + ['Authorization*', 'String', 'Bearer YOUR_SECRET_KEY'], + ]} +/> + + + + + +## Official JS SDK +With the SDK, You can programmatically create payment links and access all the payment link methods available in the API. Find the guide here. + diff --git a/content/docs/payments/verify-payments.mdx b/content/docs/payments/verify-payments.mdx new file mode 100644 index 0000000..9e5b6b7 --- /dev/null +++ b/content/docs/payments/verify-payments.mdx @@ -0,0 +1,71 @@ +--- +title: Verify Payments +description: Verify Payments page +--- + +# Verify Payments + +Transactions are being verified using the Verify Payments endpoint from your server using your transaction reference or with the address property whose value is the payment address returned from the initialise payment function. + +## Verify Payment API + +To verify transactions using the Lazerpay endpoint, you will make a get request to verify transaction endpoint from your server using your transaction reference or with the address property. + +Here’s a code sample for verifying transactions. + +Path', '', ''], + ['address_or_reference', 'String', 'The transaction Address or reference you want to fetch'], + ['Header', '', ''], + ['*', 'String', 'YOUR_PUBLIC_KEY'], + ]} + /> + + + +#### Important Note from the verification response +1. The actualAmount key is the amount that you intended to charge the customer in crypto. +2. The amountPaid key is the crypto amount that is being paid to the merchant. It is usually in the coins that we support.. +3. The amountPaidFirst is the fiat value of the crypto amount beinf paid to the merchant. +4. The fiatAmount is the fiat value of the amount that you intended to charge the customer. This is usually in the merchant’s local currency. + +The amountReceivedFiat and amountReceived values is the amountPaidFiat plus Lazerpay fees and the AmountPaid plus Lazerpay fees respectively + +
      + +## From Official JS SDK +With the JS SDK, you have access to the confirmPayment object which is used to verify any payment in the Lazerpay platform. + + + +
      +If you offer digital value like airtime, wallet top-up, digital credit, etc, always confirm that you have not already processed the value for that transaction to avoid double fulfillments, especially, if you also use webhooks. diff --git a/content/docs/payments/webhooks.mdx b/content/docs/payments/webhooks.mdx index 74c5ee7..5c03b66 100644 --- a/content/docs/payments/webhooks.mdx +++ b/content/docs/payments/webhooks.mdx @@ -1,13 +1,13 @@ --- title: Webhooks -description: +description: Webhooks page --- # Webhooks Listen to webhook events whenever certain actions occurs. - + ## What are Webhooks? @@ -15,79 +15,58 @@ Webhooks are a way for you to subscribe to events that occur when an event invol A webhook URL is an endpoint on your server where you can receive notifications about such events. When an event occurs, we'll make a POST request to that endpoint, with a JSON body containing the details about the event, including the type of event and the data associated with it. - +Rather than continuously polling the server to check if the state has changed, webhooks provide information to you as it becomes available, which is a lot more efficient and beneficial for developers. - Here are some sample webhook paylods for deposit transactions. +Here are some sample webhook paylods for deposit transactions. - - - + + ## Enabling Webhooks - -You can specify your webhook URL on your dashboard where we would send POST requests -whenever an event occurs. +You can specify your webhook URL on your dashboard where we would send POST requests whenever an event occurs. Here’s how to set up a webhook on your Lazerpay account: +1. Login to your dashboard and click on Settings. +2. Navigate to the API Keys and Webhooks tab. +3. Specify your webhook url and click on Update. - - - - - - - - - ## Validating Webhook Signature +![Dashboard API keys and Webhooks tab](/images/keys_and_webhooks.png) - Every webhook event payload will contain a hashed authentication signature in the header which is computed by generating a hash from concatenating your API key and request body, using the HMAC SHA256 hash algorithm. +When testing, you can get an instant webhook URL by visiting webhook.site. This will allow you to inspect the received payload without having to write any code or set up a server. + -In order to verify this signature came from Lazerpay, you simply have to generate the HMAC SHA256 hash and compare it with the signature received. +## Validating Webhook Signature - +Every webhook event payload will contain a hashed authentication signature in the header which is computed by generating a hash from concatenating your API key and request body, using the HMAC SHA256 hash algorithm. - +In order to verify this signature came from Lazerpay, you simply have to generate the HMAC SHA256 hash and compare it with the signature received. - ## Responding to Wehbooks Request - - You must respond with a 200 ok status code. Any other response code outside of the 2xx - range, we will consider it will considered as a failure, including 3xx codes. We don’t - care about the response body or headers - - - - - - - ## Supported Wehbooks Types - - Here are the webhook type request we support. Well add more to this list as we keep adding - webhook supports for different API operations in the future - - incomplete or complete `, -], -]} + + - - - +## Responding to Webhooks Request +You must respond with a 200 OK status code. Any other response code outside of the 2xx range, we will consider it will be considered as a failure, including 3xx codes. We don’t care about the response body or headers. +
      +If we don't get a 200 OK status code, we'll retry the webhook every one minute for the next 24 hours. + +## Supported Webhooks Types +Here are the webhooks request types we support. We'll add more to this list as we keep adding webhook supports for different API operations in the future. +template
      or complete'] +]}/> diff --git a/content/docs/products/index.mdx b/content/docs/products/index.mdx new file mode 100644 index 0000000..c9c2c2b --- /dev/null +++ b/content/docs/products/index.mdx @@ -0,0 +1,273 @@ +--- +title: Products +description: Products page +--- + +# Products + +To make the payment link creation process more robust, merchants can now display their goods or services as Products without having a website. + +Products can be created and seen on the dashboard more like a store inventory. They can be hidden when no longer available or for sale. There are no limitations as to the number of products you add on the products page as the pagination feature would help product data spread across different pages automatically. + +## Create Product + +Body', '', ''], + ['name*', 'String', 'ex : "book"'], + ['description*', 'String', 'ex: Atomic Habits'], + ['cover_photo', 'String | URL', 'ex: "https://my-fake-cover-image.jpeg"'], + ['prices*', 'dict', '"prices": [ { "currency": "USD", "amount": 80000 } ]'] +]} /> + + + +
      + +![Swap Stablecoins](/images/create-product.png) + +You can add a Payment link and associate it with your Product using the Payments Link API and passing an array of product price ids as payload + +![Swap Stablecoins](/images/link-information.png) + +Once Payment link is associated with the Product you can use the link or QR code to collect payments along with other information such as shipping address and redirect users to your website after a successful payment + +![Swap Stablecoins](/images/qr-preview.png) + +
      + +## Find Products + +Path', '', ''], + ['network*', 'String', ''] +]} /> + + + +
      + +## Get Product + +Path', '', ''], + ['id*', 'String', 'Product ID'] +]} /> + + + +
      + +## Update Product + +Body', '', ''], + ['name', 'String', ''], + ['description', 'String', ''], + ['cover_photo', 'String', ''], + ['active', 'String', ''] +]} /> + + + +
      + +## Get Prices + +Path', '', ''], + ['take*', 'String | Number', '3'], + ['page*', 'String | Number', '1'], +]} /> + + + +
      + +## Get links by price + +Path', '', ''], + ['price_id*', 'String | Number', ''], +]} /> + + + +
      + +## Add Price + +Body', '', ''], + ['amount*', 'Float', 'ex : { "amount" : 500000, "currency": "ngn" }'], + ['currency*', 'Float', 'ex : { "amount" : 500000, "currency": "ngn" }'], +]} /> + + + +
      + +## Delete Price + +Path', '', ''], + ['price_id*', 'String', 'price id of the product'], +]} /> + + + +
      + +## Delete Product + +Path', '', ''], + ['id*', 'String', 'id of the product'], +]} /> + + + +
      \ No newline at end of file diff --git a/content/docs/quick-start/authentication.mdx b/content/docs/quick-start/authentication.mdx index 6236744..7838b81 100644 --- a/content/docs/quick-start/authentication.mdx +++ b/content/docs/quick-start/authentication.mdx @@ -37,12 +37,3 @@ Authorization headers should be in the following format: content=' Do not set VERIFY_PEER to FALSE . Ensure your server verifies the SSL connection to Lazerpay...'/> - - - - - - - - - diff --git a/content/docs/quick-start/index.mdx b/content/docs/quick-start/index.mdx index a65b93f..c46ebdb 100644 --- a/content/docs/quick-start/index.mdx +++ b/content/docs/quick-start/index.mdx @@ -7,34 +7,26 @@ description: Quick start page Welcome to the Lazerpay Developer Documentation where you’ll learn to build delightful payment experiences. Integrate Lazerpay into your products and start collecting crypto payments in 5 minutes. - + ## Build your payments integration - + ## Accept payments Accepting payments on Lazerpay is as seamless as it gets. Here’s how: - + ## Explore demos -Consectetur adipiscing elit. Non nam nulla tellus est vivamus aliquam risus. Ante facilisis risus semper faucibus. Non nam nulla tellus est vivamus aliquam risus. - +To get started use our official SDKs available on our github and look out on our blog and Youtube for interactive demos + - - -## What's new -Consectetur adipiscing elit. Non nam nulla tellus est vivamus aliquam risus. Ante facilisis risus semper faucibus.
      -Consectetur adipiscing elit. Non nam nulla tellus est. - - - + ## Connect with the community -Consectetur adipiscing elit. Non nam nulla tellus est vivamus aliquam risus. Ante facilisis risus semper faucibus. Aliquam risus. Ante facilisis risus semper faucibus +Connect with the Lazerpay community members on following channels : - diff --git a/content/docs/swap/get-started.mdx b/content/docs/swap/get-started.mdx new file mode 100644 index 0000000..7ab07c6 --- /dev/null +++ b/content/docs/swap/get-started.mdx @@ -0,0 +1,41 @@ +--- +title: Get Started +description: Swap introduction page +--- + +# Swaps + +The Swaps API allows you to programmatically swaps funds in your wallet between different coins. + +### Supported Cryptocurrencies + +- USDT +- USDC +- BUSD +- DAI + + +To send money on Lazerpay, you need API keys to authenticate your transfers. You can find your keys on the Lazerpay Dashboard under Settings → API Keys & Webhooks +
      + +## Get started + +Swap Stablecoins in your lazerpay account using our APIs + + diff --git a/content/docs/swap/stablecoin-swap.mdx b/content/docs/swap/stablecoin-swap.mdx new file mode 100644 index 0000000..0c60484 --- /dev/null +++ b/content/docs/swap/stablecoin-swap.mdx @@ -0,0 +1,61 @@ +--- +title: Stablecoin Swap +description: Stablecoin Swap page +--- + +# Stablecoin Swap + +Swap Stablecoins in your lazerpay account using our APIs + +### Introduction + +You can make Stablecoins swaps from one coin to another directly from the Lazerpay dashboard or using our Swaps API endpoint. + +
      + +![Swap Stablecoins](/images/swap_stablecoins.png) + +
      + +## Crypto Swap API + +Header', '', ''], + ['Authorization*', 'String', 'Bearer YOUR_SECRET_KEY'], + ['Body', '', ''], + ['reference', 'String | Number', 'Unique case sensitive transaction reference. If you do not pass this parameter, Lazerpay will generate a unique reference for you.'], + ['amount*', 'String | Number', 'The amount you want to send out '], + ['from_coin*', 'String', 'Crypto you want to swap from'], + ['to_coin*', 'String', 'Crypto you want to swap to'], + ['metadata', 'Object', 'Stringified JSON object of custom data. eg {type: "Crypto swap"}'], + ['blockchain*', 'String', "The blockchain network you are sending to"] +]} /> + + +
      + +### Important Note + +1. The blockchain field must be "Binance Smart Chain". +2. The from_coin field must either be "BUSD", "DAI", "USDT", or "USDC". +3. The to_coin field must either be "BUSD", "DAI", "USDT", or "USDC". +4. The amount field should be in your fiat currency. The currencies we support are USD, AED, GBP, EUR and NGN. Please reach out to support@lazerpay.finance if you would want us to support a currency. +5. Also to_coin and from_coin cannot be the same. + +we only support the Binance smart chain for swaps. we will add more networks in the future. diff --git a/content/docs/swap/swap-amount.mdx b/content/docs/swap/swap-amount.mdx new file mode 100644 index 0000000..cb7e320 --- /dev/null +++ b/content/docs/swap/swap-amount.mdx @@ -0,0 +1,53 @@ +--- +title: Swap Amount +description: Swap amount page +--- + +# Swap Crypto + +Get the amount you will receive on swap even before initiating the swap + +
      +## Crypto Swap API + +Header', '', ''], + ['Authorization*', 'String', 'Bearer YOUR_SECRET_KEY'], + ['Body', '', ''], + ['amount*', 'String | Number', 'The amount you want to send out '], + ['from_coin*', 'String', 'Crypto you want to swap from'], + ['to_coin*', 'String', 'Crypto you want to swap to'], + ['blockchain*', 'String', "The blockchain network you are sending to"] +]} /> + + +
      + +![Swap Stablecoins](/images/swap_stablecoins.png) +
      + +### Important Note + +1. The blockchain field must be "Binance Smart Chain". +2. The from_coin field must either be "BUSD", "DAI", "USDT", or "USDC". +3. The to_coin field must either be "BUSD", "DAI", "USDT", or "USDC". +4. The amount field should be in your fiat currency. The currencies we support are USD, AED, GBP, EUR and NGN. Please reach out to support@lazerpay.finance if you would want us to support a currency. +5. Also to_coin and from_coin cannot be the same. + +we only support the Binance smart chain for swaps. we will add more networks in the future. diff --git a/content/docs/swap/webhooks.mdx b/content/docs/swap/webhooks.mdx new file mode 100644 index 0000000..bea5ad7 --- /dev/null +++ b/content/docs/swap/webhooks.mdx @@ -0,0 +1,70 @@ +--- +title: Swap Webhooks +description: Swap webhooks page +--- + +# Webhooks + +Listen to webhook events whenever certain actions occurs +
      + +## What are webhooks? + +Webhooks are a way for you to subscribe to events that occur when an event involving your business occurs. This guide will walk through what webhooks are and how you can use them in order to get started with integrating them into your application. + +A webhook URL is an endpoint on your server where you can receive notifications about such events. When an event occurs, we'll make a POST request to that endpoint, with a JSON body containing the details about the event, including the type of event and the data associated with it. + +Rather than continuously polling the server to check if the state has changed, webhooks provide information to you as it becomes available, which is a lot more efficient and beneficial for developers. + +Here are some sample webhook payloads for deposit transactions: + + + +## Enabling webhooks + +You can specify your webhook URL on your dashboard where we would send POST requests to whenever an event occurs. + +Here's how to set up a webhook on your Lazerpay account: + +- Login to your dashboard and click on the Settings +- Navigate to the API Keys and Webhooks tab +- specify your webhook url and click on Update + +![Swap Stablecoins](/images/swap_stablecoins.png) +
      + +When testing, you can get an instant webhook URL by visiting webhook.site. This will allow you to inspect the received payload without having to write any code or set up a server. +
      +## Validating webhooks + +Every webhook event payload will contain a hashed authentication signature in the header which is computed by generating a hash from concatenating your API key and request body, using the HMAC SHA256 hash algorithm. + +In order to verify this signature came from Lazerpay, you simply have to generate the HMAC SHA256 hash and compare it with the signature received. + + + +## Responding to webhook request + +You must respond with a 200 OK status code. Any other response codes outside of the 2xx range, we will consider it will be considered as a failure, including 3xx codes. We don't care about the response body or headers. + +If we don't get a 200 OK status code, we'll retry the webhook every one minute for the next 24 hours. +
      +## Supporting Webhook Types + +Here are the webhooks request types we support. We'll add more to this list as we keep adding webhook supports for different API operations in the future. + +confirmed or failed'], +]} /> \ No newline at end of file diff --git a/content/docs/transactions/index.mdx b/content/docs/transactions/index.mdx new file mode 100644 index 0000000..c270a82 --- /dev/null +++ b/content/docs/transactions/index.mdx @@ -0,0 +1,62 @@ +--- +title: Transactions +description: Transactions page +--- + +# Transactions + +Transactions are vital for businesses. Hence we provided this API endpoint which you can use to programmatically fetch and list all the transactions associated with your Lazerpay account. + +## All Transactions + +List all the transactions associated with your Lazerpay account. + +
      + + + +
      + +## Get transaction by transaction ID + +Fetch a specific transaction using its transaction ID. + +Path', '', ''], + [':transaction_id*', 'String', 'Supply a transaction ID'], +]} /> + +
      + \ No newline at end of file diff --git a/content/docs/transfers/bank-transfers.mdx b/content/docs/transfers/bank-transfers.mdx index bb60d0a..04e44e8 100644 --- a/content/docs/transfers/bank-transfers.mdx +++ b/content/docs/transfers/bank-transfers.mdx @@ -1,6 +1,124 @@ --- -title: Bank Payouts -description: Bank Payouts page +title: Bank Transfers +description: Bank transfers introduction page --- - \ No newline at end of file +# Bank transfers + +Transfer directly to bank account using our payouts APIs + + + +In other to make bank transfers, you can use our transfers API endpoint or our Node JS SDK. + +## Create Bank Payout + +Add a new bank account to recieve payouts + +Header", "", "" ], + ["Autorization*", "String", "Bearer YOUR_SECRET_KEY" ], + ["Body", "", "" ], + ["bank_name*", "String", "Name of the bank, you can use Get Banks API to list all the supported banks" ], + ["bank_code*", "String", "Bank code" ], + ["account_name*", "String", "Account holder name of the account where you want payout" ], + ["account_number*", "String | Number", "Account holder number of the account where you want payout" ], + ["currency*", "String", "Currency of Payout, use get supported currencies API to list supported currency" ], + ["country*", "String", "Country where bank is located, use Get Supported Countries API to list all the supported nations" ], + ["default", "Boolean", "boolean" ], + ]} + /> + + + +## Get all Bank Payouts + +Retrieve all the bank payouts associated with your account as Payout IDs + + + +## Delete Bank Payout + +Delete one or multiple Bank Payouts by passing Payout Ids as string array to payout end-point + +Header", "", "" ], + ["ids*", "String | Array", 'example : { "ids": ["b406677c-c028-475f-b029-0df0d39c9321"] }' ], + ]} + /> + + + +## Update Bank Payout + +Update an existing bank payout associated with your account + + + +## Get Supported Payout Countries + +Get list of already supported countries that supports bank payouts and respective currencies + + + +## Get Supported Payout Currencies + +Get a list of all the supported currencies for bank payouts + + + +## Get Banks + +Get a list of supported banks in a country + +Path", "", "" ], + ["ids*", "String", 'Supported Countries: nigeria, ghana, kenya' ], + ]} + /> + + + +## Get Payout Exchange Rate + +Get current Exchange rates + +Path", "", "" ], + ["coins*", "String", 'supported coin = USDT, DAI, USDC, BUSD' ], + ["currency*", "String", 'a supported currency, ex : NGN' ], + ]} + /> + + + + +## Initiate Bank Payout + +Initiate a bank payout + +Body", "", "" ], + ["bank_payout_id*", "String", "bank payout id" ], + ["coin*", "String", "ex: USDT" ], + ["amount*", "float", "ex: 0.1" ], + ["metadata", "String", "string" ] + ]} + /> + + \ No newline at end of file diff --git a/content/docs/transfers/crypto-transfers.mdx b/content/docs/transfers/crypto-transfers.mdx new file mode 100644 index 0000000..a0ab86a --- /dev/null +++ b/content/docs/transfers/crypto-transfers.mdx @@ -0,0 +1,45 @@ +--- +title: Crypto Transfers +description: Crypto transfers introduction page +--- + +# Crypto transfers + +Send crypto to an external wallet using our APIs + + + +In other to make crypto transfers, you can use our transfers API endpoint or our Node JS SDK. + +## Crypto Transfer API + +Header", "", "" ], + ["Autorization*", "String", "Bearer YOUR_SECRET_KEY" ], + ["Body", "", "" ], + ["amount*", "String | Number", "The amount you want to send out" ], + ["recipient*", "String", "Wallet address of the recipient" ], + ["coin*", "String", "Crypto you want to transfer" ], + ["blockchain*", "String", "The blockchain network you are sending to" ], + ]} + /> + + + +## Important things to Note +1. The blockchain field must be "Binance Smart Chain". +2. The coin field must either be "BUSD", "DAI", "USDT", or "USDC". + +We only support the Binance smart chain for withdrawals. We will add more networks in the future. + + + +## From Official JS SDK + +With the JS SDK, you can transfer the crypto in your Lazerpay balance to an external address. +See sample code below: + + diff --git a/content/docs/transfers/get-started.mdx b/content/docs/transfers/get-started.mdx index 3273040..8f7d9dd 100644 --- a/content/docs/transfers/get-started.mdx +++ b/content/docs/transfers/get-started.mdx @@ -6,11 +6,9 @@ description: transfers introduction page # Transfers -The transfers API allows you to programmatically make fast, global payouts to your -customers, vendors, and suppliers using traditional methods like bank wires, or make -native crypto transfers +The transfers API allows you to programmatically make fast, global payouts to your customers, vendors, and suppliers using traditional methods like bank wires, or make native crypto transfers - + ## Get started @@ -18,5 +16,4 @@ Easily send money out of your account - diff --git a/content/docs/transfers/transfers-webhooks.mdx b/content/docs/transfers/transfers-webhooks.mdx new file mode 100644 index 0000000..14cb650 --- /dev/null +++ b/content/docs/transfers/transfers-webhooks.mdx @@ -0,0 +1,69 @@ +--- +title: Webhooks +description: payment introduction page +--- + +# Webhooks + +Listen to webhook events whenever certain actions occurs. + + + +## What are Webhooks? + +Webhooks are a way for you to subscribe to events that occur when an event involving your business occurs. This guide will walk through what webhooks are and how you can use them in order to get started with integrating them into your application. + +A webhook URL is an endpoint on your server where you can receive notifications about such events. When an event occurs, we'll make a POST request to that endpoint, with a JSON body containing the details about the event, including the type of event and the data associated with it. + +Rather than continuously polling the server to check if the state has changed, webhooks provide information to you as it becomes available, which is a lot more efficient and beneficial for developers. + +Here are some sample webhook paylods for deposit transactions. + + + + + + +## Enabling Webhooks + +You can specify your webhook URL on your dashboard where we would send POST requests whenever an event occurs. + +Here’s how to set up a webhook on your Lazerpay account: + +1. Login to your dashboard and click on Settings. +2. Navigate to the API Keys and Webhooks tab. +3. Specify your webhook url and click on Update. + +When testing, you can get an instant webhook URL by visiting webhook.site. This will allow you to inspect the received payload without having to write any code or set up a server. + + + +## Validating Webhook Signature + +Every webhook event payload will contain a hashed authentication signature in the header which is computed by generating a hash from concatenating your API key and request body, using the HMAC SHA256 hash algorithm. + +In order to verify this signature came from Lazerpay, you simply have to generate the HMAC SHA256 hash and compare it with the signature received. + + + + + +## Responding to webhooks request + +You must respond with a 200 OK status code. Any other response code outside of the 2xx range, we will consider it will be considered as a failure, including 3xx codes. We don't care about the response body or headers. + +If we don't get a 200 OK status code, we'll retry the webhook every one minute for the next 24 hours. + + + + +## Supported Webhooks Types + +Here are the webhooks request types we support. We'll add more to this list as we keep adding webhook supports for different API operations in the future. + +pending or confirmed"], + ]} +/> \ No newline at end of file diff --git a/content/docs/transfers/webhooks.mdx b/content/docs/transfers/webhooks.mdx deleted file mode 100644 index 19491f4..0000000 --- a/content/docs/transfers/webhooks.mdx +++ /dev/null @@ -1,88 +0,0 @@ ---- -title: Partial Payments -description: partail payments page ---- - - -# Webhooks - -Listen to webhook event whenever certain action occurs. - - - -## What are Webhooks? - -Webhooks are a way for you to subscribe to events that occur when an event involving your -business occurs. This guide will walk through what webhooks are and how you can use them in - order to get started with integrating them into your application. - -A webhook URL is an endpoint on your server where you can receive notifications about such - events. When an event occurs, we'll make a POST request to that endpoint, with a JSON body - containing the details about the event, including the type of event and the data associated with it. - - - - - -Here are some sample webhook paylods for deposit transactions - - - - - -## Enabling WebHooks - - - - -## Validating WebHook Signature - -Every webhook event payload will contain a hashed authentication signature in the header which -is computed by generating a hash from concatenating your API key and request body, -using the HMAC SHA256 hash algorithm. - -In order to verify this signature came from Lazerpay, you simply have to generate the HMAC -SHA256 hash and compare it with the signature received. - - - - - -## Responding to WebHooks Request - -You must respond with a 200 ok status code. Any other response code outside of the 2xx -range, will be considered as a failure, including 3xx codes. We don't -care about the response body or header - - - - - - -## Supported Webhook Types -Here are the webhook request type that we support. We will add more as we keep adding -webhook support for differnt API operations in the future. - -pending or confirmed` -], -]} -/> - - - - - - diff --git a/content/docs/use-cases/ecommerce.mdx b/content/docs/use-cases/ecommerce.mdx index 02a667b..2e4c56b 100644 --- a/content/docs/use-cases/ecommerce.mdx +++ b/content/docs/use-cases/ecommerce.mdx @@ -15,8 +15,4 @@ Sed magna nulla pellentesque semper enim. - - - - - + \ No newline at end of file diff --git a/content/docs/use-cases/get-started.mdx b/content/docs/use-cases/get-started.mdx index 5ffcec4..808edff 100644 --- a/content/docs/use-cases/get-started.mdx +++ b/content/docs/use-cases/get-started.mdx @@ -116,5 +116,3 @@ route={"#"} />

- - \ No newline at end of file diff --git a/data/snippets.ts b/data/snippets.ts index 195f7a4..4f1830f 100644 --- a/data/snippets.ts +++ b/data/snippets.ts @@ -1,121 +1,2299 @@ export const snippets = { - api: `export default function App({ Component, pageProps }) { - return ( - <> - - - - ) - }`, - webHookPayload: `{ - "id": "183f0a97-9de8-4cdc-b130-e8dd5f06caf4", - "reference": "3H1WTK8k8PC78p6TWEbKptT", - "senderAddress": "0x8aFDD7Ee323E98adcB59445AE49118673950Ff19", - "recipientAddress": "0x0B4d358D349809037003F96A3593ff9015E89efA", - "actualAmount": 100, - "amountPaid": 100, - "amountReceived": 100, - "coin": "USDT", - "hash": "0xa3ef6266d29c096eb824112fcb32a90d42276bb1c94f88790f3d47a80992a9d8, - "blockNumber": 19767423, - "type": "withdrawal", - "status": "confirmed", - "network": "mainnet", - "blockchain": "Binance Smart Chain", - "status": "confirmed", - "network": "mainnet", - "blockchain": "Binance Smart Chain", - "metadata": {} , - "createdAt": "2022-05-30T20:22:54.674Z", - "updatedAt": "2022-05-30T20:22:54.674Z", - "feeInCrypto": 0, - "webhookType": "CRYPTO_TRANSFER" -}`, - webHookPayload2: `var crypto = require('crypto'); + api: + `export default function App({ Component, pageProps }) { + return ( + <> + + + + ) + }`, + customerInfoHTML: + `
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
`, + customerInfoJS: + ` +`, + customerInfoPostCURL: + ` curl --location --request POST 'https://api.lazerpay.engineering/api/v1/transaction/initialize' \ + + --header 'x-api-key: YOUR_PUBLIC_KEY' \ + + --data-raw '{ + "customer_name": "Abdulfatai Suleiman", + "customer_email": "static@gmail.com", + "currency": "USD", + "coin": "USDT", + "amount": "10", + accept_partial_payment:"true" + }’`, + customerInfoPostJs: + `const options = { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'x-api-key': YOUR_PUBLIC_KEY + }, + body: JSON.stringify({ + "customer_name": "Abdulfatai Suleiman", + "customer_email": "static@gmail.com", + "currency": "USD", + "coin": "USDT", + "amount": "10", + accept_partial_payment:"true" + }) +} +fetch('https://api.lazerpay.engineering/api/v1/transaction/initialize', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + customerInfoReq201: + `{ + "message": "Transaction initialized successfully", + "status": "success", + "data": { + "reference": "wfqweweqrtwerwrtwer45354545", + "businessName": "Lazerpay Finance", + "businessEmail": "abdulfataisuleiman67@gmail.com", + "businessLogo": "https://res.cloudinary.com/lazer/image/upload/v1637512933/logo-default_ufyz0x.svg", + "customerName": "Abdulfatai Suleiman", + "customerEmail": "staticdev20046@gmail.com", + "address": "0xcA20e971400F81F97fEc5416A963e8FA7F81aaE3", + "coin": "BUSD", + "cryptoAmount": 50.5, + "currency": "USD", + "fiatAmount": 50, + "feeInCrypto": 0.5, + "network": "testnet", + "acceptPartialPayment": true + } + "statusCode": 201 +}`, + customerInfoReq401: + `{ + "message": "Transaction failed", + "status": "failed", + "statusCode": 401 +}`, + nodeSDKSample: + `const LazerPay = require('lazerpay-node-sdk'); +const lazerpay = new LazerPay(LAZER_PUBLIC_KEY, LAZER_SECRET_KEY); + +const payment_tx = async () => { + try { + const transaction_payload = { + reference: 'W6b8hV55l0435t3545435', // Replace with a reference you generated + customer_name: 'iamnotstatic.eth', + customer_email: 'abdulfataisuleiman67@gmail.com', + coin: 'USDC', + currency: 'USD', + fiatAmount: '100', + acceptPartialPayment: true // By default it's false + }; + const response = await lazerpay.Payment.initializePayment(transaction_payload); + console.log(response); + } catch (error) { + console.log(error); + } +}`, + nodeSDKSampleResponse: + `{ + "reference": "wfqweweqrtwerwrtwer45354545", + "businessName": "Lazerpay Finance", + "businessEmail": "abdulfataisuleiman67@gmail.com", + "businessLogo": "https://res.cloudinary.com/lazer/image/upload/v1637512933/logo-default_ufyz0x.svg", + "customerName": "Abdulfatai Suleiman", + "customerEmail": "staticdev20046@gmail.com", + "address": "0xcA20e971400F81F97fEc5416A963e8FA7F81aaE3", + "coin": "BUSD", + "cryptoAmount": 50.5, + "currency": "USD", + "fiatAmount": 50, + "feeInCrypto": 0.5, + "fiatRate": 0.9988, + "cryptoRate": 1.001, + "network": "testnet", + "acceptPartialPayment": true +}`, + verifyPaymentGetCURL: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/transaction/verify/:address_or_reference' \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ +`, + verifyPaymentGetJs: + `const options = { + method: 'GET', + headers: { + 'x-api-key': YOUR_PUBLIC_KEY + }, +} +fetch('https://api.lazerpay.engineering/api/v1/transaction/verify/:address_or_reference', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + verifyPaymentGetResponse200: + `{ + "status": "success", + "statusCode": 200, + "message": "Verification successful", + "data": { + "id": "92924b81-11fd-418f-bc4f-3ddab7e79e6b", + "reference": "nGfVSuX3IK", + "senderAddress": "0x451dEFC27B45808078e875556AF06bCFdC697BA4", + "recipientAddress": "0xCfe4e688c47Af0689224da9B9bAB51B4dA38D11c", + "actualAmount": 0.51, + "amountPaid": 0.51, + "amountPaidFiat": 299.7984, + "fiatAmount": 300, + "amountReceived": 0.52, + "amountReceivedFiat": 305.6768, + "coin": "BUSD", + "currency": "NGN", + "hash": "0xc80d9fa8ba4b13c685ad12ffdeb2a6f803f7c3832f51cc0376e5ff9a74c6fd93", + "blockNumber": 16684797, + "type": "received", + "acceptPartialPayment": true, + "status": "confirmed", + "network": "mainnet", + "blockchain": "Binance Smart Chain", + "customer": { + "id": "1c4d885e-4058-45f0-8d74-ff79fe439e75", + "customerName": "Abdulfatai Suleiman", + "customerEmail": "abdulfataisuleiman67@gmail.com", + "customerPhone": null + } + "paymentLink": {}, + "paymentButton": {}, + "feeInCrypto": 0.01 +}`, + verifyPaymentGetResponse404: + `{ + "message": "Transaction not found", + "status": "error" + "statusCode": 404, +}`, + verifyPaymentNodeSDK: + `const LazerPay = require('lazerpay-node-sdk'); +const lazerpay = new LazerPay(LAZER_PUBLIC_KEY, LAZER_SECRET_KEY); +const confirm_tx = async () => { + const confirm_tx = async () => { + try { + const payload = { + identifier: 'address generated or the reference generated by you from initializing payment', + }; + const response = await lazerpay.Payment.confirmPayment(payload); + console.log(response); + } catch (error) { + console.log(error); + } + } +}; +`, + createPaymentLinkCURL: + `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/payment-links' \ + +--header 'Authorization: Bearer YOUR_SECRET_KEY' \ + +--data-raw '{ + "title": "Model Rocket Design and Construction", + description": "This is for Model Rocket Design and Construction Book", + "amount": 100, + "type": "standard", + "logo": "https://media.istockphoto.com/photos/dubai-skyline-view-from-the-marasi-marina-in-city-business-bay-area-picture-id1309800132", + "currency": "USD", + "redirect_url": "https://example.com" +}’`, + createPaymentLinkJs: + `const options = { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'Authorization': Bearer YOUR_SECRET_KEY + }, + body: JSON.stringify({ + "title": "Model Rocket Design and Construction", + "description": "This is for Model Rocket Design and Construction Book", + "amount": 100, + "type": "standard", + "logo": "https://media.istockphoto.com/photos/dubai-skyline-view-from-the-marasi-marina-in-city-business-bay-area-picture-id1309800132", + "currency": "USD", + "redirect_url": "https://example.com" + }) +} +fetch('https://api.lazerpay.engineering/api/v1/payment-links', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + createPaymentLinkResponse201: + `{ + "message": "Payment link created", + "data": { + "id": "5237aa97-56d2-45fc-923e-1265c227f268", + "reference": "msdl", + "title": "model rocket design and construction", + "description": "This is for Model Rocket Design and Construction Book wqrerertret werewre", + "amount": "100", + "currency": "USD", + "redirectUrl": "https://example.com", + "logo": "https://media.istockphoto.com/photos/dubai-skyline-view-from-the-marasi-marina-in-city-business-bay-area-picture-id1309800132", + "type": "standard", + "network": "mainnet", + "status": "active", + "paymentUrl": "https://lazerpay.finance/pay/model-rocket-design-and-construction-msdl", + "createdAt": "2022-04-15T17:04:20.492Z", + "updatedAt": "2022-04-15T17:04:20.492Z", + }, + "statusCode": 201, + "status": "success" +}`, + createPaymentLinkResponse401: + `{ + "statusCode": 401, + "message": "Unsupported request, Please read our API documentation", + "status": "error" +}`, + fetchAllPaymentLinkCURL: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/payment-links’ \ + +--header 'Authorization: Bearer YOUR_SECRET_KEY'`, + fetchAllPaymentLinkJs: + `const options = { + method: 'GET', + headers: { + 'x-api-key': Bearer YOUR_SECRET_KEY + } +} +fetch('https://api.lazerpay.engineering/api/v1/payment-links', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + fetchAllPaymentLinkResponse200: + `{ + "status": "success", + "statusCode": 200, + "data": [ + { + "id": "5237aa97-56d2-45fc-923e-1265c227f268", + "reference": "msdl", + "title": "model rocket design and construction", + "amount": "100", + "currency": "USD", + "redirectUrl": "https://example.com", + "logo": "https://media.istockphoto.com/photos/dubai-skyline-view-from-the-marasi-marina-in-city-business-bay-area-picture-id1309800132", + "type": "standard", + "network": "mainnet", + "status": "active", + "paymentUrl": "https://lazerpay.finance/pay/model-rocket-design-and-construction-msdl", + "createdAt": "2022-04-15T17:04:20.492Z", + "updatedAt": "2022-04-15T17:04:20.492Z", + } + ], + "count": 1, + "currentPage": 1, + "nextPage": null, + "prevPage": null, + "lastPage": 1 +}`, + fetchPaymentLinkCURL: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/payment-links' \ + +--header 'Authorization': 'Bearer YOUR_SECRET_KEY' + 'id_or_reference': 'Bearer ID_OR_REFERENCE'`, + fetchPaymentLinkJs: + `const options = { + method: 'GET', + headers: { + 'x-api- key': Bearer YOUR_SECRET_KEY, + 'id_or_reference': Bearer ID_OR_REFERENCE + } +} +fetch('https://api.lazerpay.engineering/api/v1/payment-links', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + fetchPaymentLinkResponse200: + `{ + "message": "Payment link retrieved", + "data": { + "id": "5237aa97-56d2-45fc-923e-1265c227f268", + "reference": "msdl", + "title": "model rocket design and construction", + "amount": "100", + "currency": "USD", + "redirectUrl": "https://example.com", + "logo": "https://media.istockphoto.com/photos/dubai-skyline-view-from-the-marasi-marina-in-city-business-bay-area-picture-id1309800132", + "type": "standard", + "network": "mainnet", + "status": "active", + "paymentUrl": "https://lazerpay.finance/pay/model-rocket-design-and-construction-msdl", + "createdAt": "2022-04-15T17:04:20.492Z", + "updatedAt": "2022-04-15T17:04:20.492Z", + }, + "statusCode": 200, + "status": "success" +}`, + updatePaymentLinkCURL: + `curl --location --request PUT 'https://api.lazerpay.engineering/api/v1/transaction/initialize' \ + +--header 'x-api- key': Bearer YOUR_SECRET_KEY +--data-raw '{ + "status": "inactive" +}'`, + updatePaymentLinkJs: + `const options = { + method: 'PUT', + headers: { + 'x-api- key': Bearer YOUR_SECRET_KEY + }, + body: JSON.stringify({ + "status": "inactive" + }) +} +fetch('https://api.lazerpay.engineering/api/v1/transaction/initialize', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + updatePaymentLinkResponse200: + `{ + "message": "Payment link updated", + "data": { + "id": "5237aa97-56d2-45fc-923e-1265c227f268", + "reference": "msdl", + "title": "model rocket design and construction", + "amount": "100", + "currency": "USD", + "redirectUrl": "https://example.com", + "logo": "https://media.istockphoto.com/photos/dubai-skyline-view-from-the-marasi-marina-in-city-business-bay-area-picture-id1309800132", + "type": "standard", + "network": "mainnet", + "status": "inactive", + "paymentUrl": "https://lazerpay.finance/pay/model-rocket-design-and-construction-msdl", + "createdAt": "2022-04-15T17:04:20.492Z", + "updatedAt": "2022-04-15T17:04:20.492Z", + }, + "statusCode": 200, + "status": "success" + }`, + webhookPayload: + `{ + "id": "378b53b2-28fd-4cbd-8fe1-6786d251b7d4", + "reference": "MBnOcItpOaP0wkBWzx", + "senderAddress": "0x451dEFC27B45808078e875556AF06bCFdC697BA4", + "recipientAddress": "0x062FA9157C498C8Ca4E6AF204c132EDE2500e260", + "actualAmount": 0.51, + "amountPaid": 0.5, + "amountPaidFiat": 292.385, + "fiatAmount": 300, + "amountReceived": 0.52, + "amountReceivedFiat": 304.0804, + "coin": "BUSD", + "currency": "NGN", + "hash": "0xe929d55dde3717987191674616a0d3bbcf4b63080434b71fde41ec86aeab5fdd", + "blockNumber": 16509617, + "type": "received", + "acceptPartialPayment": true, + "status": "confirmed", + "network": "mainnet", + "blockchain": "Binance Smart Chain", + "paymentLink": {}, + "paymentButton": {}, + "metadata": {}, + "customer": { + "id": "1c4d885e-4058-45f0-8d74-ff79fe439e75", + "name": "Abdulfatai Suleiman", + "email": "abdulfataisuleiman67@gmail.com", + "phone": null, + "shippingAddress": null + }, + "merchantAddress": "0xFdd5352384162C3342aD018AF61d77538Bdb1257", + "feeInCrypto": 0.01, + "fiatRate": 0.9998, + "cryptoRate": 1, + "createdAt": "2022-03-30 13:00:42.614077", + "updatedAt": "2022-03-30 13:03:05.175609", + "webhookType": "DEPOSIT_TRANSACTION" +}`, + webhookValidateSignature: + `var crypto = require('crypto'); "var secret = process.env.SECRET_KEY; // Using Express app.post("/my/webhook/url", function(req, res) { + //validate event + var hash = crypto.createHmac('sha256', secret).update(JSON.stringify(req.body), 'utf8').digest('hex'); - //validate event - var hash = crypto.createHmac('sha256', secret).update(JSON.stringify(req.body), 'utf8').digest('hex'); + if (hash == req.headers['x-lazerpay-signature']) { + // Retrieve the request's body + var event = req.body; + // Do something with event + } + res.send(200); +}); +}`, + cryptoTransferPostCurl: + `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/transfer'\ - if (hash == req.headers['x-lazerpay-signature']) { - // Retrieve the request's body - var event = req.body; - var event = req.body; - } - res.send(200); - }); -`, - cryptoTransferSample3: `const Lazerpay = require('lazerpay-node-sdk'); +--header 'x-api-key: YOUR_SECRET_KEY' \ + +--data-raw '{ + "amount": "1", + "recipent": "0x0B4d358D349809037003F96A3593ff9015E89efA", + "coin": "USDT", + "blockchain": "Binance Smart Chain", +}’`, + cryptoTransferPostJs: + `const options = { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'Authorization': Bearer YOUR_SECRET_KEY + }, + body: JSON.stringify({ + "amount": "1", + "recipent": "0x0B4d358D349809037003F96A3593ff9015E89efA", + "coin": "USDT", + "blockchain": "Binance Smart Chain", + }) +} +fetch('https://api.lazerpay.engineering/api/v1/transfer', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + cryptoTransferRequest400: + `{ + "message": "Insufficient funds, check your balance and try again", + "statusCode": 400, + "status": "error" +}`, + cryptoTransferRequest200: + `{ + "message": "Crypto transfer initiated successfully", + "status": "success", + "statusCode": 200 + +}`, + crytoTransferSnippetJS: + `const Lazerpay = require('lazerpay-node-sdk'); const lazerpay = new Lazerpay(LAZER_PUBLIC_KEY, LAZER_SECRET_KEY); const crypto_payout_tx = async () => { - const transaction_payload = { - amount: 1, - recipient: '0x0B4d358D349809037003F96A3593ff9015E89efA', // address must be a bep20 address - coin: 'BUSD', - blockchain:’Binance Smart Chain’ - }; - try { - const response = await lazer.Payout.transferCrypto(transaction_payload); - console.log(response.error); - } catch (e) { - } catch (e) { - console.log(e); - } - }; -`, - - webHookPayload3: ` { - "id": "378b53b2-28fd-4cbd-8fe1-6786d251b7d4", - "reference": "MBnOcItpOaP0wkBWzx",, - "senderAddress": "0x451dEFC27B45808078e875556AF06bCFdC697BA4", - "recipientAddress": "0x062FA9157C498C8Ca4E6AF204c132EDE2500e260", - "actualAmount": 0.51, - "amountPaid": 0.5, - "amountPaidFiat": 292.385, - "fiatAmount": 300, - "amountReceived": 0.52, - "amountReceivedFiat": 304.0804, - "coin": "BUSD", - "currency": "NGN", - "hash": "0xe929d55dde3717987191674616a0d3bbcf4b63080434b71fde41ec86aeab5fdd", - "blockNumber": 16509617, - "type": "received", - "acceptPartialPayment": true, - "status": "confirmed", - "network": "mainnet", - "blockchain": "Binance Smart Chain", - "paymentLink": {}, - "paymentButton": {}, - "customer": { - "id": "1c4d885e-4058-45f0-8d74-ff79fe439e75", - "customerName": "Abdulfatai Suleiman", - "customerEmail": "abdulfataisuleiman67@gmail.com", - "customerPhone”:null - }, - "merchantAddress": "0xFdd5352384162C3342aD018AF61d77538Bdb1257", - "feeInCrypto": 0.01, - "webhookType": "DEPOSIT_TRANSACTION" -} -`, - webhookpayload4: `var crypto = require('crypto'); -"var secret = process.env.SECRET_KEY; + const crypto_payout_tx = async () => { + amount: 1, + recipient: '0x0B4d358D349809037003F96A3593ff9015E89efA', // address must be a bep20 address + coin: 'BUSD', + blockchain:’Binance Smart Chain’ + }; + try { + const response = await lazer.Payout.transferCrypto(transaction_payload); + console.log(response.error); + } catch (e) { + console.log(e); + } +};`, + depositWebhookJS: ` + { + "id": "183f0a97-9de8-4cdc-b130-e8dd5f06caf4", + "reference": "3H1WTK8k8PC78p6TWEbKptT", + "senderAddress": "0x8aFDD7Ee323E98adcB59445AE49118673950Ff19", + "recipientAddress": "0x0B4d358D349809037003F96A3593ff9015E89efA", + "actualAmount": 100, + "amountPaid": 100, + "amountReceived": 100, + "coin": "USDT", + "hash": "0xa3ef6266d29c096eb824112fcb32a90d42276bb1c94f88790f3d47a80992a9d8", + "blockNumber": 19767423, + "type": "withdrawal", + "status": "confirmed", + "network": "mainnet", + "blockchain": "Binance Smart Chain", + "metadata": {} , + "createdAt": "2022-05-30T20:22:54.674Z", + "updatedAt": "2022-05-30T20:22:54.674Z", + "feeInCrypto": 0, + "webhookType": "CRYPTO_TRANSFER" + } + `, validateWebhookJS: + `{ + var crypto = require('crypto'); + var secret = process.env.SECRET_KEY; + // Using Express + app.post("/my/webhook/url", function(req, res) { + //validate event + var hash = crypto.createHmac('sha256', secret).update(JSON.stringify(req.body), 'utf8').digest('hex'); + if (hash == req.headers['x-lazerpay-signature']) { + // Retrieve the request's body + var event = req.body; + // Do something with event + } + res.send(200); + }); +} +`, + getStartedAcceptPaymentPostCURL: + `curl https://api.lazerpay.com/transaction/initialize + -H "Authorization: Bearer YOUR_SECRET_KEY" + -H "Content-Type: application/json" + -X POST`, + createBankPayoutCURL: `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/bank/payouts'\ + + --header 'x-api-key: YOUR_SECRET_KEY' \ + + --data-raw '{ + "bank_name": "FIRST BANK PLC", + "bank_code": "11", + "account_name": "Abdulfatai Suleiman", + "account_number": "3125343111", + "currency": "NGN", + "country": "nigeria", + "state": "abuja", + "default": true + }’`, + createBankPayoutJs: + `const options = { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'x-api-key': Bearer YOUR_SECRET_KEY + }, + body: JSON.stringify({ + "bank_name": "FIRST BANK PLC", + "bank_code": "11", + "account_name": "Abdulfatai Suleiman", + "account_number": "3125343111", + "currency": "NGN", + "country": "nigeria", + "state": "abuja", + "default": true + }) +} +fetch('https://api.lazerpay.engineering/api/v1/bank/payouts', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + createBankPayout200: `{ + "status": "success", + "message": "Bank Payout created successfully", + "data": { + "bankName": "XXXX BANK LTD.", + "accountName": "XXX inc", + "accountNumber": "XXXXXX", + "accountType": "personal", + "routingNumber": "XXXXX", + "currency": "USD", + "country": "united state of america", + "state": "california", + "city": "san francisco, ca", + "address": "338 spear street", + "postalCode": "XXXXXX", + "network": "mainnet", + "default": true, + "deleted": false, + "deletedAt": null, + "street": null, + "id": "b008f1ea-ed3b-4187-b269-XXXXXXXX", + "status": "approved", + "createdAt": "2022-09-02T14:54:12.984Z", + "updatedAt": "2022-09-02T14:54:12.984Z" + }, + "statusCode": 201 + }`, + createBankPayout404: `{ + // Response + }`, + getAllBankPayoutsGetCURL: + ` curl --location --request GET 'https://api.lazerpay.engineering/api/v1/bank/payouts \ + + --header 'x-api-key: YOUR_PUBLIC_KEY' \ + `, + getAllBankPayoutsGetJs: + `const options = { + method: 'GET', + headers: { + 'x-api-key': Bearer YOUR_SECRET_KEY + } +} +fetch('https://api.lazerpay.engineering/api/v1/bank/payouts', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + getAllBankPayouts200: + ` { + "message": "Bank Payouts retrieved successfully", + "status": "success", + "statusCode": 200, + "data": [ + { + "id": "b406677c-c028-475f-b029-0df0d39c9321", + "bankName": "kuda bank", + "bankCode": "090267", + "accountName": "suleiman abdulfatai", + "accountNumber": "2001670835", + "accountType": null, + "routingNumber": null, + "currency": "NGN", + "country": "nigeria", + "state": null, + "city": null, + "address": null, + "street": null, + "postalCode": null, + "network": "testnet", + "status": "approved", + "default": true, + "deleted": false, + "createdAt": "2022-08-31T20:55:01.801Z", + "updatedAt": "2022-08-31T20:55:01.801Z", + "deletedAt": null + } + ], + "count": 1, + "currentPage": 1, + "nextPage": null, + "prevPage": null, + "lastPage": 1 + }`, + deleteBankPayoutCURL: + `curl --location --request DELETE 'https://api.lazerpay.engineering/api/v1/bank/payouts \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ +`, + deleteBankPayoutJs: + `const options = { + method: 'DELETE', + headers: { + 'ids': ["b406677c-c028-475f-b029-0df0d39c9321"], + 'x-api-key': Bearer YOUR_SECRET_KEY + } +} +fetch('https://api.lazerpay.engineering/api/v1/bank/payouts', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + deleteBankPayout200: + ` { + "status": "success", + "message": "Bank Payout deleted successfully", + "statusCode": 200 + }`, + deleteBankPayout401: + ` { + // Response + }`, + updateBankPayoutCURL: + `curl --location --request PATCH 'https://api.lazerpay.engineering/api/v1/bank/payouts/'\ + +--header 'x-api-key: YOUR_SECRET_KEY' \ + +--data-raw '{ + "default": true +}’`, + updateBankPayoutJS: + `const options = { + method: 'PATCH', + headers: { + 'x-api-key': Bearer YOUR_SECRET_KEY + }, + body: JSON.stringify({ + "default": true + }) +} +fetch('https://api.lazerpay.engineering/api/v1/bank/payouts/', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + updateBankPayout200: `{ + "status": "success", + "message": "Bank Payout updated successfully", + "data": { + "id": "2e7fa635-b495-4788-a4ac-XXXXXX", + "bankName": "kuda bank", + "bankCode": "XXXX", + "accountName": "XXXX XXXX", + "accountNumber": "XXXXX", + "accountType": null, + "routingNumber": null, + "currency": "NGN", + "country": "nigeria", + "state": null, + "city": null, + "address": null, + "street": null, + "postalCode": null, + "network": "mainnet", + "status": "approved", + "default": true, + "deleted": false, + "createdAt": "2022-08-29T17:59:43.449Z", + "updatedAt": "2022-08-31T21:21:54.900Z", + "deletedAt": null + }, + "statusCode": 200 + }`, + getSupportCountryPayoutCURL: `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/bank/payouts/countries'\ + +--header 'x-api-key: YOUR_SECRET_KEY' \ + `, + getSupportCountryPayoutJs: + `const options = { + method: 'GET', + headers: { + 'x-api-key': Bearer YOUR_SECRET_KEY + } +} +fetch('https://api.lazerpay.engineering/api/v1/bank/payouts/countries', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + getSupportCountryPayout200: `{ + "message": "Bank Payout Countries retrieved successfully", + "data": [ + { + "id": "477a477c-30e7-485a-9cc3-5ae54f4e492d", + "name": "Nigeria", + "code": "NG", + "logoUrl": "https://res.cloudinary.com/lazer/image/upload/v1655832428/Countries%20Logo/ngn-logo_tazf8g.svg", + "network": "testnet", + "status": "active", + "createdAt": "2022-08-24T18:40:29.213Z", + "updatedAt": "2022-08-24T18:40:29.213Z", + "currencies": [ + { + "id": "2581c366-5a31-4250-9fee-ee078c8712e2", + "name": "Nigierian Naira", + "code": "NGN", + "symbol": "₦", + "logoUrl": "https://res.cloudinary.com/lazer/image/upload/v1655832428/Countries%20Logo/ngn-logo_tazf8g.svg", + "network": "testnet", + "status": "active", + "createdAt": "2022-08-24T18:40:29.282Z", + "updatedAt": "2022-08-24T18:40:29.282Z" + } + ] + }, + ... + ], + "statusCode": 200, + "status": "success" +}`, + getSupportCurrenciesPayoutCURL: `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/bank/payouts/currencies'\ + +--header 'x-api-key: YOUR_SECRET_KEY' \ + `, + getSupportCurrenciesPayoutJs: + `const options = { + method: 'GET', + headers: { + 'x-api-key': Bearer YOUR_SECRET_KEY + } +} +fetch('https://api.lazerpay.engineering/api/v1/bank/payouts/currencies', options) +.then((response) => response.json()) +.then((result) => console.log('Success', result))`, + getSupportCurrenciesPayout200: `{ + "message": "Bank Payout Currencies retrieved successfully", + "data": [ + { + "id": "2581c366-5a31-4250-9fee-ee078c8712e2", + "name": "Nigierian Naira", + "code": "NGN", + "symbol": "₦", + "logoUrl": "https://res.cloudinary.com/lazer/image/upload/v1655832428/Countries%20Logo/ngn-logo_tazf8g.svg", + "network": "testnet", + "status": "active", + "createdAt": "2022-08-24T18:40:29.282Z", + "updatedAt": "2022-08-24T18:40:29.282Z" + }, + ... + ], + "statusCode": 200, + "status": "success" +}`, + getBanksCURL: `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/bank?country=Nigeria'\ + +--header 'x-api-key: YOUR_SECRET_KEY' \` +}`, + getBanksJs: + `const options = { + method: 'GET', + headers: { + 'x-api-key': Bearer YOUR_SECRET_KEY + } +} +fetch('https://api.lazerpay.engineering/api/v1/bank?country=Nigeria', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + getBanks200: `{ + "status": "success", + "message": "Banks retrieved successfully", + "data": [ + { + "code": "044", + "name": "Access Bank" + }, + { + "code": "023", + "name": "Citi Bank" + }, + { + "code": "050", + "name": "EcoBank PLC" + }, + ... + ], + "statusCode": 200 +}`, + getPayoutExchangeRateCURL: `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/bank/payouts/rate?coin=DAI¤cy={supported_currency}'\ + +--header 'x-api-key: YOUR_SECRET_KEY' \` +`, + getPayoutExchangeRateJs: + `const options = { + method: 'GET', + headers: { + 'x-api-key': Bearer YOUR_SECRET_KEY + } +} +fetch('https://api.lazerpay.engineering/api/v1/bank/payouts/rate?coin=DAI¤cy={supported_currency}', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + getPayoutExchangeRate200: `{ + "message": "Bank payout exchange rate retrieved", + "status": "success", + "data": { + "coin": "DAI", + "currency": "NGN", + "rate": 690.07 + }, + "statusCode": 200 +}`, + initiateBankPayoutCURL: `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/bank/payouts/initiate'\ + +--header 'x-api-key: YOUR_SECRET_KEY' \ + +--data-raw '{ + "bank_payout_id": "3ad00043-f408-4da8-85e1-cbc28fbe0060", + "coin": "USDT", + "amount": 1 +}’ +`, + initiateBankPayoutJs: + `const options = { + method: 'POST', + headers: { + 'x-api-key': Bearer YOUR_SECRET_KEY + }, + body: JSON.stringify({ + "bank_payout_id": "3ad00043-f408-4da8-85e1-cbc28fbe0060", + "coin": "USDT", + "amount": 1 + }) +} +fetch('https://api.lazerpay.engineering/api/v1/bank/payouts/initiate', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + initiateBankPayout200: `{ + "message": "Bank Payout initiated successfully", + "status": "success", + "statusCode": 200 +}`, + swapPostCURL: + `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/transaction/initialize' \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ + +--data-raw '{ + "from_coin": "USDT", + "to_coin": "BUSD", + "amount": 0.01, + "blockchain": "Binance Smart Chain" +}’`, + swapPostJs: + `const options = { + method: 'POST', + headers: { + 'x-api-key': Bearer YOUR_PUBLIC_KEY + }, + body: JSON.stringify({ + "from_coin": "USDT", + "to_coin": "BUSD", + "amount": 0.01, + "blockchain": "Binance Smart Chain" + }) +} +fetch('https://api.lazerpay.engineering/api/v1/transaction/initialize', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result)) +`, + swap200: + `{ + "message": "Crypto swap initiated successfully", + "status": "success", + "statusCode": 200 +} +`, + swap400: + `{ + "message": "Insufficient funds, check your balance and try again", + "statusCode": 400, + "status": "error" +}`, + swapAmountPostCURL: + `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/swap/amount-out' \ + +--header 'Authorization: YOUR_SECRET_KEY' \ + +--data-raw '{ + "from_coin": "USDT", + "to_coin": "BUSD", + "amount": 0.01, + "blockchain": "Binance Smart Chain" +}’`, + swapAmountPostJs: + `const options = { + method: 'POST', + headers: { + 'Authorization': Bearer YOUR_SECRET_KEY + }, + body: JSON.stringify({ + "from_coin": "USDT", + "to_coin": "BUSD", + "amount": 0.01, + "blockchain": "Binance Smart Chain" + }) + } + fetch('https://api.lazerpay.engineering/api/v1/swap/amount-out', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result)) + `, + swapAmountPost201: + `{ + "message": "Crypto swap amount out retrieved successfully", + "status": "success", + "statusCode": 200, + "data": { + "fromCoin": "USDT", + "toCoin": "BUSD", + "amount": 99.68468056751414 + } +}`, + swapAmountPost400: + `{ + "message": "Insufficient funds, check your balance and try again", + "statusCode": 400, + "status": "error" +}`, + swapWebhookJson: + `{ + "id": "63a51487-a570-45d5-b4ea-d6a9be46d77a", + "reference": "XebhrfHeO5nhkxGgkb2ag7CB1zI6", + "senderAddress": "0x8aFDD7Ee323E98adcB59445AE49118673950Ff19", + "recipientAddress": "0x8aFDD7Ee323E98adcB59445AE49118673950Ff19", + "actualAmount": 100, + "amountPaid": 99.98, + "hash": "0xd8f4d9badc12cfe0f82adf631eee8fd973a9fa801e4918510275c6e9b641b3dc", + "blockNumber": 19767429, + "type": "swap", + "status": "confirmed", + "network": "mainnet", + "blockchain": "Binance Smart Chain", + "metadata": {}, + "fromCoin": "USDT", + "toCoin": "BUSD", + "createdAt": "2022-05-30T20:23:12.979Z", + "updatedAt": "2022-05-30T20:23:12.979Z", + "feeInCrypto": 0, + "webhookType": "CRYPTO_SWAP" +}`, + swapWebhookSample: + `var crypto = require('crypto'); +var secret = process.env.SECRET_KEY; // Using Express app.post("/my/webhook/url", function(req, res) { + //validate event + var hash = crypto.createHmac('sha256', secret).update(JSON.stringify(req.body), 'utf8').digest('hex'); + if (hash == req.headers['x-lazerpay-signature']) { + // Retrieve the request's body + var event = req.body; + // Do something with event + } + res.send(200); +});`, + stableCoinSwapPostCURL: + `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/transaction/initialize' \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ + +--data-raw '{ + "from_coin": "USDT", + "to_coin": "BUSD", + "amount": 0.01, + "blockchain": "Binance Smart Chain" +}’`, + stableCoinSwapPostJs: + `const options = { + method: 'POST', + headers: { + 'x-api-key': Bearer YOUR_PUBLIC_KEY + }, + body: JSON.stringify({ + "from_coin": "USDT", + "to_coin": "BUSD", + "amount": 0.01, + "blockchain": "Binance Smart Chain" + }) +}; +fetch('https://api.lazerpay.engineering/api/v1/transaction/initialize', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result)) +`, + stableCoinSwapPost201: + `{ + "message": "Crypto swap amount initiated successfully", + "status": "success", + "statusCode": 200, + "data": { + "fromCoin": "USDT", + "toCoin": "BUSD", + "amount": 99.68468056751414 + } +}`, + stableCoinSwapPost400: + `{ + "message": "Insufficient funds, check your balance and try again", + "statusCode": 400, + "status": "error" +}`, + allTransactionsPostCurl: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/transactions' \ - //validate event - var hash = crypto.createHmac('sha256', secret).update(JSON.stringify(req.body), 'utf8').digest('hex'); +--Authorization 'x-api-key: YOUR_PUBLIC_KEY' \ - if (hash == req.headers['x-lazerpay-signature']) { - // Retrieve the request's body - var event = req.body; - // Do something with event - } - res.send(200); - }); + 'Content-Type': 'application/JSON' \ + `, + allTransactionsPostJs: + `const options = { + method: 'GET', + headers: { + 'Authorization': Bearer YOUR_SECRET_KEY + } +}; +fetch('https://api.lazerpay.engineering/api/v1/transaction/initialize', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result)) +`, + allTransactions200: + `{ + "message": "Transactions retrieved successfully", + "status": "success", + "statusCode": 200, + "data": [ + { + "id": "93754962-XXX-46a2-9858-XXX", + "walletId": "XXX-35a2-421f-XXX-d23149572fd7", + "externalId": null, + "reference": "Vuzr458xTg", + "shippingAddress": null, + "senderAddress": null, + "recipientAddress": "0x79A0cd9390XXXXX1D0651005128d4884094c", + "actualAmount": 10, + "amountPaid": 0, + "amountPaidFiat": 0, + "fiatAmount": 10, + "amountReceived": 0, + "amountReceivedFiat": 0, + "fee": 0.1, + "coin": "BUSD", + "currency": "USD", + "hash": null, + "blockNumber": null, + "type": "received", + "acceptPartialPayment": false, + "status": "pending", + "network": "testnet", + "paymentChannel": "crypto_transfer", + "blockchain": "Binance Smart Chain", + "fiatRate": 1, + "cryptoRate": 1, + "metadata": {}, + "fromCoin": null, + "toCoin": null, + "createdAt": "2022-09-05T22:09:57.119Z", + "updatedAt": "2022-09-05T22:09:57.119Z", + "customer": { + "id": "XXXX-71cc-45e3-8562-XXXX", + "walletId": "33cbb77a-XXX-421f-XXX-d23149572fd7", + "name": "Abdulfatai Suleiman", + "email": "abdulfataisuleiman67@gmail.com", + "shippingAddress": null, + "phone": null, + "network": "testnet", + "createdAt": "2022-09-05T22:09:57.119Z", + "updatedAt": "2022-09-05T22:09:57.119Z" + }, + "bankPayout": null + } + ] +}`, + allTransactions400: + `{ + // Response +}`, + getTransactionPostCurl: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/transactions/:transaction_id' \ + +--Authorization 'x-api-key: YOUR_PUBLIC_KEY' \ + + 'Content-Type': 'application/JSON' \ + `, + getTransactionPostJs: + `const options = { + method: 'GET', + headers: { + 'Authorization': Bearer YOUR_SECRET_KEY + } +}; +fetch('https://api.lazerpay.engineering/api/v1/transaction/:transaction_id', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result)) +`, + getTransaction200: + `{ + "message": "Transactions retrieved successfully", + "status": "success", + "statusCode": 200, + "data": { + "id": "93754962-XXX-46a2-9858-XXX", + "walletId": "XXX-35a2-421f-XXX-d23149572fd7", + "externalId": null, + "reference": "Vuzr458xTg", + "shippingAddress": null, + "senderAddress": null, + "recipientAddress": "0x79A0cd9390XXXXX1D0651005128d4884094c", + "actualAmount": 10, + "amountPaid": 0, + "amountPaidFiat": 0, + "fiatAmount": 10, + "amountReceived": 0, + "amountReceivedFiat": 0, + "fee": 0.1, + "coin": "BUSD", + "currency": "USD", + "hash": null, + "blockNumber": null, + "type": "received", + "acceptPartialPayment": false, + "status": "pending", + "network": "testnet", + "paymentChannel": "crypto_transfer", + "blockchain": "Binance Smart Chain", + "fiatRate": 1, + "cryptoRate": 1, + "metadata": {}, + "fromCoin": null, + "toCoin": null, + "createdAt": "2022-09-05T22:09:57.119Z", + "updatedAt": "2022-09-05T22:09:57.119Z", + "customer": { + "id": "XXXX-71cc-45e3-8562-XXXX", + "walletId": "33cbb77a-XXX-421f-XXX-d23149572fd7", + "name": "Abdulfatai Suleiman", + "email": "abdulfataisuleiman67@gmail.com", + "shippingAddress": null, + "phone": null, + "network": "testnet", + "createdAt": "2022-09-05T22:09:57.119Z", + "updatedAt": "2022-09-05T22:09:57.119Z" + }, + "bankPayout": null + } +}`, + getTransaction400: + `{ + // Response +}`, + allCustomersPostCurl: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/customers' \ + +--Authorization 'x-api-key: YOUR_PUBLIC_KEY' \ + + 'Content-Type': 'application/JSON' \ + `, + allCustomersPostJs: + `const options = { + method: 'GET', + headers: { + 'Authorization': Bearer YOUR_SECRET_KEY + } +}; +fetch('https://api.lazerpay.engineering/api/v1/transaction/customers', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result)) +`, + allCustomers200: + `{ + "message": "Customers retrieved successfully", + "status": "success", + "statusCode": 200, + "data": [ + { + "id": "bc48cc84-71cc-XXX-8562-XXXXX", + "walletId": "33cbb77a-35a2-421f-a733-XXXXX", + "name": "Abdulfatai Suleiman", + "email": "abdulfataisuleiman@XXXX.com", + "shippingAddress": null, + "phone": null, + "network": "testnet", + "createdAt": "2022-09-05T22:09:57.119Z", + "updatedAt": "2022-09-05T22:09:57.119Z", + "transactions": [ + { + "id": "XXXXXX-731e-46a2-XXXX-3495b35d99a6", + "walletId": "XXXXXX-35a2-421f-XXXX-d23149572fd7", + "reference": "Vuzr458xTg", + "senderAddress": null, + "recipientAddress": "0x79A0cd9390384XXXXXXXXX5128d4884094c", + "actualAmount": 10, + "amountPaid": 0, + "amountPaidFiat": 0, + "fiatAmount": 10, + "amountReceived": 0, + "amountReceivedFiat": 0, + "fee": 0.1, + "coin": "BUSD", + "currency": "USD", + "hash": null, + "blockNumber": null, + "type": "received", + "acceptPartialPayment": false, + "status": "pending", + "network": "testnet", + "paymentChannel": "crypto_transfer", + "blockchain": "Binance Smart Chain", + "fiatRate": 1, + "cryptoRate": 1, + "metadata": {}, + "fromCoin": null, + "toCoin": null, + "createdAt": "2022-09-05T22:09:57.119Z", + "updatedAt": "2022-09-05T22:09:57.119Z" + } + ] + } + ], + "count": 1, + "currentPage": 1, + "nextPage": null, + "prevPage": null, + "lastPage": 1 +}`, + allCustomers400: + `{ + // Response +}`, + getCustomerPostCurl: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/customers/:customer_id' \ + +--Authorization 'x-api-key: YOUR_SECRET_KEY' \ + +'Content-Type': 'application/JSON' \ + `, + getCustomerPostJs: + `const options = { + method: 'GET', + headers: { + 'Authorization': Bearer YOUR_SECRET_KEY + } +}; +fetch('https://api.lazerpay.engineering/api/v1/customers/:customer_id', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result)) +`, + getCustomer200: + `{ + "message": "Customers retrieved successfully", + "data": [ + "id": "bc48cc84-71cc-XXX-8562-XXXXX", + "walletId": "33cbb77a-35a2-421f-a733-XXXXX", + "name": "Abdulfatai Suleiman", + "email": "abdulfataisuleiman@XXXX.com", + "shippingAddress": null, + "phone": null, + "network": "testnet", + "createdAt": "2022-09-05T22:09:57.119Z", + "updatedAt": "2022-09-05T22:09:57.119Z", + "transactions": [ + { + "id": "XXXXXX-731e-46a2-XXXX-3495b35d99a6", + "walletId": "XXXXXX-35a2-421f-XXXX-d23149572fd7", + "reference": "Vuzr458xTg", + "senderAddress": null, + "recipientAddress": "0x79A0cd9390384XXXXXXXXX5128d4884094c", + "actualAmount": 10, + "amountPaid": 0, + "amountPaidFiat": 0, + "fiatAmount": 10, + "amountReceived": 0, + "amountReceivedFiat": 0, + "fee": 0.1, + "coin": "BUSD", + "currency": "USD", + "hash": null, + "blockNumber": null, + "type": "received", + "acceptPartialPayment": false, + "status": "pending", + "network": "testnet", + "paymentChannel": "crypto_transfer", + "blockchain": "Binance Smart Chain", + "fiatRate": 1, + "cryptoRate": 1, + "metadata": {}, + "fromCoin": null, + "toCoin": null, + "createdAt": "2022-09-05T22:09:57.119Z", + "updatedAt": "2022-09-05T22:09:57.119Z" + } + ] + }, + "status": "success", + "statusCode": 200 +}`, + getCustomer400: + `{ + // Response +}`, + createProductCurl: + `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/products' \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ + +--data-raw '{ + "name": "book", + "description": "Atomic Habits", + "amount": "https://my-fake-cover-image.jpeg", + "blockchain": [ { "currency": "USD", "amount": 80000 } ] +}’`, + createProductJs: + `const options = { + method: 'POST', + headers: { + 'Authorization': 'Bearer YOUR_SECRET_KEY', + 'Content-Type': 'application/json' + }, + body: JSON.stringify({ + "name": "book", + "description": "Atomic Habits", + "amount": "https://my-fake-cover-image.jpeg", + "blockchain": [ { "currency": "USD", "amount": 80000 } ] + }) +}; +fetch('https://api.lazerpay.engineering/api/v1/products', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + createProduct201: + `{ + "message": "Product created successfully", + "data": { + "name": "not fake product", + "description": "not fake description", + "businessId": "3dc8842d-fbdc-41a8-ad61-c023afc3a391", + "network": "testnet", + "prices": [ + { + "id": "f024a92c-ff80-40fe-8cc2-e12e8aa1087d", + "amount": 80000, + "currency": { + "name": "United States Dollar", + "symbol": "USD" + }, + "pricingType": "standard" + } + ], + "image": { + "url": "https://my-fake-cover-image.jpeg", + "createdAt": "2022-09-05T15:14:36.721Z" + }, + "id": "3a78a41a-305b-4061-aea5-8f0f1994fd00", + "createdAt": "2022-09-05T15:14:36.721Z", + "updatedAt": "2022-09-05T15:14:36.721Z", + "active": true + }, + "statusCode": 201, + "status": "success" +}`, + createProduct400: + `{ + "statusCode": 400, + "message": [ + "name must be a string", + "name should not be empty", + "description must be a string", + "description should not be empty" + ], + "error": "Bad Request" +}`, + findProductsCurl: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/products?network={}{{network}}' \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ + + 'Content-Type': 'application/json' +`, + findProductsJs: + `const options = { + method: 'GET', + headers: { + 'Authorization': 'Bearer YOUR_SECRET_KEY', + 'Content-Type': 'application/json' + } +}; +fetch('https://api.lazerpay.engineering/api/v1/products?network={}{{network}}', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + findProducts200: + `{ + "status": "success", + "statusCode": 200, + "data": [ + { + "id": "3a78a41a-305b-4061-aea5-XXXX", + "name": "Book", + "createdAt": "2022-09-05T15:14:36.721Z", + "updatedAt": "2022-09-05T15:14:36.721Z", + "description": "Atomic Habits", + "active": true, + "businessId": "3dc8842d-XX-XXX-ad61-c023afc3a391", + "network": "testnet", + "prices": [ + { + "id": "XX-ff80-40fe-XX-e12e8aa1087d", + "amount": "80000", + "currency": { + "name": "United States Dollar", + "symbol": "USD" + } + } + ], + "image": { + "url": "https://my-fake-cover-image.jpeg", + "publicId": "default", + "folder": "products" + } + } + ], + "count": 1, + "currentPage": 1, + "nextPage": null, + "prevPage": null, + "lastPage": 1 +}`, + findProducts400: + `{ + // Response +}`, + getProductCurl: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/products/:id' \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ + + 'Content-Type': 'application/json' +`, + getProductJs: + `const options = { + method: 'GET', + headers: { + 'Authorization': 'Bearer YOUR_SECRET_KEY', + 'Content-Type': 'application/json' + } +}; +fetch('https://api.lazerpay.engineering/api/v1/products/:id', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + getProduct200: + `{ + "message": "Product fetched successfully", + "data": { + "id": "978ba584-839a-4af2-a673-4bc3b814b54a", + "name": "Guccie Purse", + "createdAt": "2022-07-25T04:56:07.810Z", + "updatedAt": "2022-07-25T04:56:07.810Z", + "description": "Bag of Guccie Stuff With sun", + "active": true, + "userId": "51afc3cd-cbb3-43ac-a404-db2897915ecc", + "businessId": "e4b23ecf-9d10-4b4f-9582-20700cf00d1b", + "network": "testnet", + "prices": [ + { + "id": "ec99bcce-7a57-47c2-adc6-b284db779841", + "createdAt": "2022-07-25T04:56:07.810Z", + "amount": "8.00", + "pricingType": "standard", + "currency": { + "id": "dedb6fb9-bc74-4a72-a8ce-f6fcc6435de0", + "name": "United States Dollar", + "symbol": "USD", + "logo": null, + "status": "active", + "createdAt": "2022-07-22T09:05:15.164Z", + "updatedAt": "2022-07-22T09:05:15.164Z" + }, + "paymentLinks": [] + } + ], + "image": { + "id": "b74d0cd5-f972-454f-9d4d-a29a9255098c", + "url": "https://res.cloudinary.com/lazer/image/upload/v1654710452/product_img_yfgeb6.png", + "publicId": "default", + "createdAt": "2022-07-25T04:56:07.810Z", + "folder": "products" + } + }, + "statusCode": 200, + "status": "success" +}`, + getProduct400: + `{ + // Response +}`, + updateProductCurl: + `curl --location --request PUT 'https://api.lazerpay.engineering/api/v1/products/:id' \ + +--header 'Authorization: Bearer YOUR_SECRET_KEY' \ + + 'Content-Type': 'application/json' + +--data-raw '{ + "name": "fake product name", + "description": "fake description", + "cover_photo": "https://my-fake-cover-image-update.jpeg", + "active": false +}’`, + updateProductJs: + `const options = { + method: 'POST', + headers: { + 'Authorization': 'Bearer YOUR_SECRET_KEY', + 'Content-Type': 'application/json' + } + body: JSON.stringify({ + "name": "fake product name", + "description": "fake description", + "cover_photo": "https://my-fake-cover-image-update.jpeg", + "active": false + }) +}; +fetch('https://api.lazerpay.engineering/api/v1/products/:id', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + updateProduct200: + `{ + "message": "Product fetched successfully", + "data": { + "id": "978ba584-839a-4af2-a673-4bc3b814b54a", + "name": "Chlorine Bubble Gum", + "createdAt": "2022-07-25T04:56:07.810Z", + "updatedAt": "2022-07-25T05:01:28.949Z", + "description": "Tons Of Gums", + "active": false, + "userId": "51afc3cd-cbb3-43ac-a404-db2897915ecc", + "businessId": "e4b23ecf-9d10-4b4f-9582-20700cf00d1b", + "network": "testnet", + "prices": [ + { + "id": "ec99bcce-7a57-47c2-adc6-b284db779841", + "createdAt": "2022-07-25T04:56:07.810Z", + "amount": "8.00", + "pricingType": "standard", + "currency": { + "id": "dedb6fb9-bc74-4a72-a8ce-f6fcc6435de0", + "name": "United States Dollar", + "symbol": "USD", + "logo": null, + "status": "active", + "createdAt": "2022-07-22T09:05:15.164Z", + "updatedAt": "2022-07-22T09:05:15.164Z" + }, + "paymentLinks": [] + } + ], + "image": { + "id": "b74d0cd5-f972-454f-9d4d-a29a9255098c", + "url": "https://res.cloudinary.com/lazer/image/upload/v1654710452/product_img_yfgeb6.png", + "publicId": "default", + "createdAt": "2022-07-25T04:56:07.810Z", + "folder": "products" + } + }, + "statusCode": 200, + "status": "success" +}`, + updateProduct400: + `{ + "statusCode": 400, + "message": [ + "description must be a string", + "description should not be empty" + ], + "error": "Bad Request" +}`, + getPricesCurl: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/products/:product_id/prices?take=3&page=1' \ +--header 'x-api-key: YOUR_PUBLIC_KEY' \ + + 'Content-Type': 'application/json' `, + getPricesJs: + `const options = { + method: 'GET', + headers: { + 'Authorization': 'Bearer YOUR_SECRET_KEY', + 'Content-Type': 'application/json' + } }; +fetch('https://api.lazerpay.engineering/api/v1/products/:product_id/prices?take=3&page=1', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + getPrices200: + `{ + "status": "success", + "statusCode": 200, + "data": [ + { + "id": "69d58386-0b29-449d-9401-57ab11ff7c5d", + "createdAt": "2022-06-25T17:06:23.531Z", + "amount": "20.00", + "pricingType": "standard", + "currency": { + "name": "United Emirates Dirham", + "symbol": "AED" + }, + "paymentLinks": [ + { + "id": "a31b321a-d9cf-4377-bffa-79ffafc3387a", + "createdAt": "2022-06-27T08:20:32.705Z", + "title": "red silver shit", + "slug": "BZa3Suc4", + "isActive": true + }, + { + "id": "331162c3-d9cf-4026-9d22-887b8de5f635", + "createdAt": "2022-07-06T17:25:37.875Z", + "title": "chlorine candy II", + "slug": "J6pkthAE", + "isActive": true + }, + { + "id": "a29af358-a811-44cd-aab8-8638090434a9", + "createdAt": "2022-07-08T18:50:11.315Z", + "title": "chlorine candy II", + "slug": "G_L9l4Z8", + "isActive": true + }, + { + "id": "98ce3ecb-742b-4ded-8420-fee4223cb0a7", + "createdAt": "2022-07-08T18:50:19.247Z", + "title": "chlorine candy II", + "slug": "MDKKrLAC", + "isActive": true + } + ] + } + ], + "count": 1, + "currentPage": 1, + "nextPage": null, + "prevPage": null, + "lastPage": 1 +}`, + getPrices400: + `{ + // Response +}`, + getLinksByPriceCurl: + `curl --location --request GET 'https://api.lazerpay.engineering/api/v1/products/:price_id' \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ + + 'Content-Type': 'application/json' +`, + getLinksByPriceJs: + `const options = { + method: 'GET', + headers: { + 'Authorization': 'Bearer YOUR_SECRET_KEY', + 'Content-Type': 'application/json' + } +}; +fetch('https://api.lazerpay.engineering/api/v1/products/:price_id', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + getLinksByPrice200: + `{ + "data": [ + { + "id": "XXX-XX-4bf7-af7f-2cceefcc12bb", + "createdAt": "2022-06-26T17:30:43.729Z", + "title": "Candy II", + "slug": "0B7tKYKB", + "isActive": true + }, + { + "id": "11f0ad05-acd9-XX-99a8-XXXX", + "createdAt": "2022-06-28T08:34:32.041Z", + "title": "chlorine candy II", + "slug": "mEeqzLI3", + "isActive": true + } + ], + "status": "success", + "statusCode": 200, + "message": "Price links fetched successfully" +}`, + getLinksByPrice400: + `{ + // Response +}`, + addPriceCurl: + `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/products/:id/pricing' \ + +--header 'Authorization: Bearer YOUR_SECRET_KEY' \ + + 'Content-Type': 'application/json' + +--data-raw '{ + "amount" : 500000, + "currency": "ngn" +}’`, + addPriceJs: + `const options = { + method: 'POST', + headers: { + 'Authorization': 'Bearer YOUR_SECRET_KEY', + 'Content-Type': 'application/json' + } + body: JSON.stringify({ + "amount" : 500000, + "currency": "ngn" + }) +}; +fetch('https://api.lazerpay.engineering/api/v1/products/:id/pricing', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + addPrice201: + `{ + "message": "Price added successfully", + "statusCode": 201, + "status": "success", + "data": { + "amount": 5000, + "id": "96688e79-a7b5-4e72-bb67-82bbbfeb6708", + "createdAt": "2022-07-25T05:23:41.707Z", + "pricingType": "standard", + "currency": { + "name": "United Emirates Dirham", + "symbol": "AED" + } + } +}`, + addPrice400: + `{ + // Response +}`, + deletePriceCurl: + `curl --location --request DELETE 'https://api.lazerpay.engineering/api/v1/products/:price_id' \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ + + 'Content-Type': 'application/json' +`, + deletePriceJs: + `const options = { + method: 'DELETE', + headers: { + 'Authorization': 'Bearer YOUR_SECRET_KEY', + 'Content-Type': 'application/json' + } +}; +fetch('https://api.lazerpay.engineering/api/v1/products/:price_id', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + deletePrice200: + `{ + "message": "Price deleted successfully", + "statusCode": 200, + "status": "success" +}`, + deletePrice400: + `{ + // Response +}`, + deleteProductCurl: + `curl --location --request DELETE 'https://api.lazerpay.engineering/api/v1/products/:id' \ + +--header 'x-api-key: YOUR_PUBLIC_KEY' \ + + 'Content-Type': 'application/json' +`, + deleteProductJs: + `const options = { + method: 'DELETE', + headers: { + 'Authorization': 'Bearer YOUR_SECRET_KEY', + 'Content-Type': 'application/json' + } +}; +fetch('https://api.lazerpay.engineering/api/v1/products/:id', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + deleteProduct200: + `{ + "message": "Product deleted successfully", + "data": "9117c54c-56d6-4ba1-92d3-a92f051c38c1", + "statusCode": 200, + "status": "success" +}`, + deleteProduct400: + `{ + // Response +}`, + createStandardPaymentCurl: + `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/payment_links' \ + +--data-raw '{ + "title" : "Payment for Merchandise", + "description": "School bags", + "options" :{ + "collect_phone": true, + "allow_promo": true, + "collect_address":true + }, + "action": { + "redirect": true, + "redirect_url": "https://local.com", + "show_confirmation_page": false, + "success_message": "thank you budd!" + }, + "cart": [ + { + "price_id": "4f6a2f7f-3400-4f47-8973-fa8bb2f5d483", + "quantity": 10, + "quantity_adjustable": false + } + ] +}`, + createStandardPaymentJs: + `const options = { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + } + body: JSON.stringify({ + "title" : "Payment for Merchandise", + "description": "School bags", + "options" :{ + "collect_phone": true, + "allow_promo": true, + "collect_address":true + }, + "action": { + "redirect": true, + "redirect_url": "https://local.com", + "show_confirmation_page": false, + "success_message": "thank you budd!" + }, + "cart": [ + { + "price_id": "4f6a2f7f-3400-4f47-8973-fa8bb2f5d483", + "quantity": 10, + "quantity_adjustable": false + } + ] + }) +}; +fetch('https://api.lazerpay.engineering/api/v1/payment_links', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + createStandardPayment201Cart: + `{ + "data": { + "charge": {}, + "cart": { + "id": "fb77e4c7-f99f-4eb1-823a-ac63b6022dd4", + "createdAt": "2022-09-05T15:45:40.111Z", + "updatedAt": "2022-09-05T15:45:40.111Z", + "items": [ + { + "id": 4, + "quantity": 20, + "quantityAdjustable": false, + "price": { + "currency": "NGN", + "amount": "500000", + "id": "d2f6f438-e866-4588-970e-d0e093b4c4ac" + }, + "product": { + "id": "3a78a41a-305b-4061-aea5-8f0f1994fd00", + "name": "fake product shit mehhhn", + "description": "fake description", + "image": "https://my-fake-cover-image-update.jpeg" + } + } + ] + }, + "type": "standard", + "isActive": true, + "network": "testnet", + "slug": "BFxwoXCs", + "id": "cf5e68a5-8125-42ec-bbf1-660fc52d0de3", + "title": "Payment for Merchandise With Cash", + "description": "Pay for some nice guccie bags", + "businessId": "3dc8842d-fbdc-41a8-ad61-c023afc3a391", + "options": { + "collectAddress": true, + "collectPhone": true, + "allowPromotion": true + }, + "action": { + "successMessage": "thank you budd!", + "redirectUrl": "https://local.me", + "redirect": true, + "showConfirmationPage": false + }, + "url": "https://lazerpay.finance/pay/BFxwoXCs", + "createdAt": "2022-09-05T15:45:40.111Z", + "updatedAt": "2022-09-05T15:45:40.111Z" + }, + "message": "Payment link created successfully", + "status": "success", + "statusCode": 201 +}`, + createStandardPayment201Charge: + `{ + "data": { + "charge": { + "amount": "84000", + "currency": "NGN" + }, + "cart": {}, + "type": "standard", + "isActive": true, + "network": "testnet", + "slug": "EhnESXox", + "id": "ac57979f-7494-467a-95d5-ff01e17b856d", + "title": "Payment for Merchandise With Cash", + "description": "Pay for some nice guccie bags", + "businessId": "3dc8842d-fbdc-41a8-ad61-c023afc3a391", + "options": { + "collectAddress": true, + "collectPhone": true, + "allowPromotion": true + }, + "action": { + "successMessage": "thank you budd!", + "redirectUrl": "https://local.me", + "redirect": true, + "showConfirmationPage": false + }, + "url": "https://lazerpay.finance/pay/EhnESXox", + "createdAt": "2022-09-05T15:51:10.018Z", + "updatedAt": "2022-09-05T15:51:10.018Z" + }, + "message": "Payment link created successfully", + "status": "success", + "statusCode": 201 +}`, + updateStandardPaymentCurl: + `curl --location --request PUT 'https://api.lazerpay.engineering/api/v1/payment_links' \ + +--data-raw '{ + "title": "red silver shit with charge", + "is_active": true, + "description": "really really good payment stuff", + "options": { + "collect_phone": true, + "allow_promo": true, + "collect_address": true + }, + "action": { + "redirect": false, + "redirect_url": "https://local.com/confirm", + "show_confirmation_page": false, + "success_message": "thank you budd!" + }, + "charge":{ + "amount":150, + "currency": "USD" + }, + "id": "9228de95-b080-4fe7-aefe-483123a2fc88" +}`, + updateStandardPaymentJs: + `const options = { + method: 'PUT', + headers: { + 'Content-Type': 'application/json' + } + body: JSON.stringify({ + "title": "red silver shit with charge", + "is_active": true, + "description": "really really good payment stuff", + "options": { + "collect_phone": true, + "allow_promo": true, + "collect_address": true + }, + "action": { + "redirect": false, + "redirect_url": "https://local.com/confirm", + "show_confirmation_page": false, + "success_message": "thank you budd!" + }, + "charge":{ + "amount":150, + "currency": "USD" + }, + "id": "9228de95-b080-4fe7-aefe-483123a2fc88" + }) +}; +fetch('https://api.lazerpay.engineering/api/v1/payment_links', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + updateStandardPayment200Cart: + `{ + "title" : "red silver shit", + "description": "i said my silvers and shit ohh", + "options" : { + "collect_phone":true, + "allow_promo": true, + "collect_address":true + }, + "action": { + "redirect": true, + "redirect_url": "https://local.com/confirm", + "confirmation_page": true, + "success_message": "thank you budd!" + }, + "cart": + [ + { + "item_id": 154, + "price_id": "510e0cc5-25af-4b78-9c6c-acdd27f6afcc", + "quantity": 70, + "quantity_adjustable": true + } + ], + "business_id": "56b4d15d-955b-4186-b2fa-b967dc003926", + "network": "{{network}}", + "id": "eca28731-f634-4bac-8d72-127d6c9a9555" +}`, + updateStandardPayment200Charge: + `{ + "data": { + "linkType": "standard", + "isActive": false, + "network": "testnet", + "slug": "KiSguJ-8", + "id": "93c0164c-3a36-42ab-bd82-b5c1e67811a7", + "title": "red silver shit", + "description": "really really good payment", + "businessId": "d94a5c08-151c-410f-8c75-c1f637253599", + "options": { + "id": "4be5ca58-ca98-4a61-ae57-a5d4e1b152b0", + "collectPhone": false, + "allowPromo": false, + "collectAddress": true, + "createdAt": "2022-07-17T16:28:01.348Z", + "updatedAt": "2022-07-18T05:48:12.802Z" + }, + "action": { + "successMessage": "thank you budd!", + "redirectUrl": "https://local.com/confirm", + "redirect": false, + "confirmationPage": false + }, + "charge": { + "amount": "1000000.00", + "currency": "USD" + }, + "cart": {}, + "createdAt": "2022-07-17T16:28:01.348Z", + "updatedAt": "2022-07-18T05:48:12.802Z" + }, + "status": "success", + "statusCode": 200 +}`, + createDonationPaymentCurl: + `curl --location --request POST 'https://api.lazerpay.engineering/api/v1/payment_links/donation' \ + +--form 'title="Save Rhinos"' +--form 'description="Help Save Rhinos"' +--form 'action[redirect]="false"' +--form 'action[redirect_url]="https://rhinos.com"' +--form 'action[success_message]="true"' +--form 'action[show_confirmation_page]="true"' +--form 'options[collect_phone]="true"' +--form 'social_links[facebook]="fb.me/uchenoel"' +--form 'social_links[twitter]="noelukwa"' +--form 'social_links[instagram]="noelukwa"' +--form 'cover_photo=@"/Users/waywardgod/Downloads/kids.jpeg"' +--form 'business_id="d94a5c08-151c-410f-8c75-c1f637253599"' +--form 'website_url="https://noel.com"'`, + createDonationPaymentJs: + `const options = { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + } + body: JSON.stringify({ + "title" : "Save Rhinos", + "description": "Help Save Rhinos", + "options" :{ + "collect_phone": true, + "allow_promo": true, + "collect_address":true + }, + "action": { + "redirect": false, + "redirect_url": "https://rhinos.com", + "show_confirmation_page": false, + "success_message": "thank you budd!" + }, + "social_links": { + "facebook": "fb.me/uchenoel", + "twitter": "noelukwa", + "instagram": "noelukwa", + }, + + }) +}; +fetch('https://api.lazerpay.engineering/api/v1/payment_links', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + createDonationPayment201: + `{ + "data": { + "isActive": true, + "id": "362e16ce-226b-4e58-92f9-3563b0aa04c0", + "title": "red silver shit with cart", + "description": "really really good payment stuff", + "createdAt": "2022-09-05T15:59:00.799Z", + "updatedAt": "2022-09-05T15:59:00.799Z", + "type": "donation", + "network": "testnet", + "action": { + "showConfirmationPage": false, + "redirectUrl": "https://local.com/confirm", + "redirect": false, + "successMessage": "thank you budd!" + }, + "slug": "zPHupwbJpsk3", + "socialLinks": { + "facebook": "fb.me/uche", + "twitter": "noelukwa", + "instagram": "noelukwa" + }, + "businessId": "3dc8842d-fbdc-41a8-ad61-c023afc3a391", + "options": { + "collectPhone": true + }, + "url": "https://lazerpay.finance/pay/zPHupwbJpsk3", + "websiteUrl": "https://uche.com", + "image": "https://random-cover-photo.jpeg", + "sessions": [] + }, + "message": "Payment link created successfully", + "status": "success", + "statusCode": 201 +}`, + updateDonationPaymentCurl: + `curl --location --request PUT 'https://api.lazerpay.engineering/api/v1/payment_links/donation' \ + +--form 'title="Save Rhinos"' +--form 'description="Help Save Rhinos"' +--form 'action[redirect]="false"' +--form 'action[redirect_url]="https://rhinos.com"' +--form 'action[success_message]="true"' +--form 'action[show_confirmation_page]="true"' +--form 'options[collect_phone]="true"' +--form 'social_links[facebook]="fb.me/uchenoel"' +--form 'social_links[twitter]="noelukwa"' +--form 'social_links[instagram]="noelukwa"' +--form 'cover_photo=@"/Users/waywardgod/Downloads/kids.jpeg"' +--form 'business_id="d94a5c08-151c-410f-8c75-c1f637253599"' +--form 'website_url="https://noel.com"' +--form 'id="362e16ce-226b-4e58-92f9-XXXX"'`, + updateDonationPaymentJs: + `const options = { + method: 'PUT', + headers: { + 'Content-Type': 'application/json' + } + body: JSON.stringify({ + "title" : "Save Rhinos", + "description": "Help Save Rhinos", + "options" :{ + "collect_phone": true, + "allow_promo": true, + "collect_address":true + }, + "action": { + "redirect": false, + "redirect_url": "https://rhinos.com", + "show_confirmation_page": false, + "success_message": "thank you budd!" + }, + "social_links": { + "facebook": "fb.me/uchenoel", + "twitter": "noelukwa", + "instagram": "noelukwa", + }, + "id": "362e16ce-226b-4e58-92f9-XXXX" + }) +}; +fetch('https://api.lazerpay.engineering/api/v1/payment_links', options) + .then((response) => response.json()) + .then((result) => console.log('Success', result))`, + updateDonationPayment200: + `{ + "data": { + "isActive": true, + "id": "362e16ce-226b-4e58-92f9-3563b0aa04c0", + "title": "red silver shit with cart", + "description": "really really good payment stuff", + "createdAt": "2022-09-05T15:59:00.799Z", + "updatedAt": "2022-09-05T16:01:43.139Z", + "type": "donation", + "network": "testnet", + "action": { + "showConfirmationPage": false, + "redirectUrl": "https://local.com/confirm", + "redirect": false, + "successMessage": "thank you budd!" + }, + "slug": "zPHupwbJpsk3", + "socialLinks": { + "facebook": "fb.me/uche", + "twitter": "noelukwa", + "instagram": "noelukwa" + }, + "businessId": "3dc8842d-fbdc-41a8-ad61-c023afc3a391", + "options": { + "collectPhone": true + }, + "url": "https://lazerpay.finance/pay/zPHupwbJpsk3", + "websiteUrl": "https://uche.com", + "image": "https://random-cover-photo.jpeg", + "sessions": [] + }, + "status": "success", + "statusCode": 200 +}` +} diff --git a/layouts/docs.tsx b/layouts/docs.tsx index 49408e0..345bb3c 100644 --- a/layouts/docs.tsx +++ b/layouts/docs.tsx @@ -1,13 +1,22 @@ -import React, { useEffect, useState } from "react" -import { path } from 'ramda'; -import classNames from "classnames" +import React, { useEffect, useState } from 'react' +import { path } from 'ramda' +import classNames from 'classnames' import { MDXProvider } from '@mdx-js/react' -import { motion } from "framer-motion" -import { DocumentTypes } from "contentlayer/generated" -import { Divider, FooterWrapper, Header, LzContainer, Sidebar, Reaction, TableOfContents } from "components" -import Styles from './Layout.module.scss'; -import { components } from "components/mdx-components"; -import { useMediaQuery } from "lib/use-mediaQuery"; +import { motion } from 'framer-motion' +import { DocumentTypes } from 'contentlayer/generated' +import { + Divider, + FooterWrapper, + Header, + LzContainer, + Sidebar, + Reaction, + TableOfContents, +} from 'components' +import { Pagination } from 'components/pagination' +import Styles from './Layout.module.scss' +import { components } from 'components/mdx-components' +import { useMediaQuery } from 'lib/use-mediaQuery' type DocsLayoutProps = { children: React.ReactNode @@ -16,54 +25,74 @@ type DocsLayoutProps = { export default function DocsLayout({ children, doc }: DocsLayoutProps) { const isMobile = useMediaQuery('(max-width: 768px)') - const [sideBarIsOpen, setSideBarIsOpen] = useState(false); - const toggleSidebar = () => setSideBarIsOpen((prev: boolean) => !prev); + const [sideBarIsOpen, setSideBarIsOpen] = useState(false) + const toggleSidebar = () => setSideBarIsOpen((prev: boolean) => !prev) - const hideToc = !path(['frontmatter', 'toc', 'length'], doc); + const hideToc = !path(['frontmatter', 'toc', 'length'], doc) /** Restore layout on screens larger than tablet - 768px */ useEffect(() => { - if (!isMobile) setSideBarIsOpen(null); - }, [isMobile]); + if (!isMobile) setSideBarIsOpen(null) + }, [isMobile]) return ( -
+
+ transition={{ duration: 0.4 }} + className='relative min-h-screen transform lg:w-4/5 lg:float-right' + >
+ className='fixed z-20 invisible w-full h-screen transition duration-200' + /> -
+ className='w-full mt-6 md:pt-4 lg:pt-14' + > +
{children} -
+
+ +
+ +
- { - !hideToc && ( -
- -
- ) - } -
+ {!hideToc && ( +
+ +
+ )} +
diff --git a/lib/pagination-utils.ts b/lib/pagination-utils.ts index dce04c5..72c1dc4 100644 --- a/lib/pagination-utils.ts +++ b/lib/pagination-utils.ts @@ -1,25 +1,39 @@ -import sidebar from "sidebar.config" +import sidebar from "sidebar.config"; + +export type PaginationType = { + label: string; + url: string; + path: string; +} export function getPaginationData() { - const result: { label: string; url: string }[] = [] + const result: PaginationType[] = [] for (const group of sidebar) { - if (group.type !== "category") continue - const childrens = group.children.map(({ label, id }) => ({ - label: label, - url: id, - })) - result.push(...childrens) + if (group.type !== "category") { + result.push({ label: group.label, url: group.id, path: group.id }) + } else { + const childrens = group.children.map(({ label, id }) => ({ + label: label, + url: id, + path: `${group.id}/${id}` + })) + result.push(...childrens) + } } - return result + return result; } type PaginationData = { framework: string; current: string } export function paginate({ current }: PaginationData) { - const data = getPaginationData() - const index = data.map((child) => child.url).indexOf(current) - if (index === -1) return { prev: undefined, next: undefined } - const prev = index > 0 ? data[index - 1] : undefined - const next = index < data.length - 1 ? data[index + 1] : undefined - return { prev, next } + const data: PaginationType[] = getPaginationData(); + let currentPage: string = ""; + data.forEach((child: PaginationType) => { + if (current.includes(child.path)) currentPage = child.path; + }) + const index: number = data.map((child: PaginationType) => child.path).indexOf(currentPage); + if (index === -1) return { prev: undefined, next: undefined }; + const prev: PaginationType | undefined = index > 0 ? data[index - 1] : undefined; + const next: PaginationType | undefined = index < data.length - 1 ? data[index + 1] : undefined; + return { prev, next }; } diff --git a/lib/use-close-context.ts b/lib/use-close-context.ts new file mode 100644 index 0000000..963ada8 --- /dev/null +++ b/lib/use-close-context.ts @@ -0,0 +1,25 @@ +import { useRef, useState, useEffect } from "react"; + +export const useCloseContext = (initialValue = false) => { + const ref = useRef(null); + const [visible, setVisible] = useState(initialValue); + + const handleClickOutside = (e: any) => { + if (ref.current && !ref.current.contains(e.target)) setVisible(false); + }; + + const handleKeyPress = (e: any) => { + if (e.key === "Escape") setVisible(false); + }; + + useEffect(() => { + document.addEventListener("click", handleClickOutside, true); + document.addEventListener("keydown", handleKeyPress, true); + return () => { + document.removeEventListener("click", handleClickOutside, true); + document.removeEventListener("keydown", handleKeyPress, true); + }; + }, [ref]); + + return { visible, setVisible, ref }; +}; \ No newline at end of file diff --git a/lib/use-set-reaction.ts b/lib/use-set-reaction.ts new file mode 100644 index 0000000..5403f82 --- /dev/null +++ b/lib/use-set-reaction.ts @@ -0,0 +1,69 @@ +import { useEffect, useState } from 'react'; +import { useRouter } from 'next/router'; +import axios from 'axios'; +import { toast, } from 'react-toastify'; + +const REACTION_PAGES = 'lz-reacted-pages'; + +const useSetReaction = () => { + const [showReaction, setShowReaction] = useState(false); + const [loading, setLoading] = useState(false); + const { asPath } = useRouter(); + + const getReactionList = (): any | null => { + let result = document.cookie.match(new RegExp(REACTION_PAGES + '=([^;]+)')); + result && (result = JSON.parse(result[1])); + return result; + }; + const setReactionList = (data: any): void => { + const cookie = `${REACTION_PAGES}=${JSON.stringify(data)}; path=/;` + document.cookie = cookie; + }; + + const saveReaction = async (value: boolean) => { + try { + setLoading(true); + const response = await sendReactionRequest(value); + toast.success(response); + const reactionPages: Array | null = getReactionList(); + + if (!reactionPages) { + setReactionList([asPath]); + } else { + if (!reactionPages.includes(asPath)) { + reactionPages.push(asPath) + setReactionList(reactionPages); + } + } + setShowReaction(false) + } catch (error) { + toast.error('Something went wrong!') + } finally { + setLoading(false) + } + } + + const sendReactionRequest = async (value: boolean) => { + const response = await axios.post(`https://api.lazerpay.engineering/api/v1/documentation/feedback`, { + "page": asPath.slice(6), + "is_helpful": value + }); + if (response?.status === 200) { + return response?.data?.message || "Your feedback has been sent successfully"; + } + return "Your feedback has been sent successfully"; + } + + useEffect(() => { + let reactionPages: Array | null = getReactionList(); + if (!reactionPages || !reactionPages.includes(asPath)) { + setShowReaction(true) + } else { + setShowReaction(false) + } + }, [asPath]); + + return { showReaction, saveReaction, loading } +} + +export default useSetReaction; \ No newline at end of file diff --git a/package.json b/package.json index 65d78d4..4bb865f 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "@mdx-js/react": "^2.1.1", "@types/ramda": "^0.28.14", "autoprefixer": "^10.4.7", + "axios": "^0.27.2", "babel-plugin-superjson-next": "^0.4.3", "classnames": "^2.3.1", "contentlayer": "^0.2.3", @@ -31,9 +32,11 @@ "prismjs": "^1.28.0", "ramda": "^0.28.0", "react": "17.0.2", + "react-copy-to-clipboard": "^5.1.0", "react-dom": "17.0.2", "react-hook-form": "^7.33.1", "react-icons": "^4.3.1", + "react-toastify": "^9.0.8", "sass": "^1.51.0", "sugar": "^2.0.6", "superjson": "^1.9.1", diff --git a/pages/_app.tsx b/pages/_app.tsx index 6c9bf77..847fc09 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,13 +1,22 @@ -import { DefaultSeo } from "next-seo" -import "../styles/prism.scss" -import "../styles/globals.scss" -import siteConfig from "site.config" +import { DefaultSeo } from 'next-seo' +import { ToastContainer } from 'react-toastify' +import '../styles/prism.scss' +import '../styles/globals.scss' +import 'react-toastify/dist/ReactToastify.css' +import siteConfig from 'site.config' export default function App({ Component, pageProps }) { return ( <> + ) } diff --git a/pages/_document.tsx b/pages/_document.tsx index 75639ce..036b66c 100644 --- a/pages/_document.tsx +++ b/pages/_document.tsx @@ -1,34 +1,34 @@ -import { Html, Head, Main, NextScript } from "next/document" +import { Html, Head, Main, NextScript } from 'next/document' export default function Document() { return ( - + - + - - + +
diff --git a/pages/docs/[...slug].tsx b/pages/docs/[...slug].tsx index 1f627ea..1bf324a 100644 --- a/pages/docs/[...slug].tsx +++ b/pages/docs/[...slug].tsx @@ -1,13 +1,14 @@ -import { NextSeo } from "next-seo" -import { useMDX } from "components/mdx-components" -import { Docs } from "contentlayer/generated" -import DocsLayout from "layouts/docs" -import { getDoc } from "lib/contentlayer-utils" -import { GetServerSideProps } from "next" -import { Fragment } from "react" +import { NextSeo } from 'next-seo' +import { useMDX } from 'components/mdx-components' +import { Docs } from 'contentlayer/generated' +import DocsLayout from 'layouts/docs' +import { getDoc } from 'lib/contentlayer-utils' +import { GetServerSideProps } from 'next' +import { Fragment } from 'react' +import { NotFound } from 'components' export default function OverviewPage({ doc }: { doc: Docs }) { - const Component = useMDX(doc?.body?.code) + const Component = useMDX(doc?.body?.code) || return ( @@ -16,12 +17,14 @@ export default function OverviewPage({ doc }: { doc: Docs }) { ) } -export const getServerSideProps: GetServerSideProps<{ doc: Docs }> = async (ctx) => { - const { slug } = ctx.params; +export const getServerSideProps: GetServerSideProps<{ doc: Docs }> = async ( + ctx, +) => { + const { slug } = ctx.params /** Currently, we have two layer deep nesting, this should be sufficient for our need at the moment */ return { props: { - doc: getDoc(slug[0], slug[1]) || null - } + doc: getDoc(slug[0], slug[1]) || null, + }, } } diff --git a/public/fonts/.DS_Store b/public/fonts/.DS_Store index f88aaa7..d0a1643 100644 Binary files a/public/fonts/.DS_Store and b/public/fonts/.DS_Store differ diff --git a/public/fonts/source-code/SourceCodePro-Black.woff b/public/fonts/source-code/SourceCodePro-Black.woff new file mode 100644 index 0000000..3619500 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-Black.woff differ diff --git a/public/fonts/source-code/SourceCodePro-BlackItalic.woff b/public/fonts/source-code/SourceCodePro-BlackItalic.woff new file mode 100644 index 0000000..bad625c Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-BlackItalic.woff differ diff --git a/public/fonts/source-code/SourceCodePro-Bold.woff b/public/fonts/source-code/SourceCodePro-Bold.woff new file mode 100644 index 0000000..2da0d81 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-Bold.woff differ diff --git a/public/fonts/source-code/SourceCodePro-BoldItalic.woff b/public/fonts/source-code/SourceCodePro-BoldItalic.woff new file mode 100644 index 0000000..876126c Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-BoldItalic.woff differ diff --git a/public/fonts/source-code/SourceCodePro-ExtraBold.woff b/public/fonts/source-code/SourceCodePro-ExtraBold.woff new file mode 100644 index 0000000..6d650f5 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-ExtraBold.woff differ diff --git a/public/fonts/source-code/SourceCodePro-ExtraBoldItalic.woff b/public/fonts/source-code/SourceCodePro-ExtraBoldItalic.woff new file mode 100644 index 0000000..d34c709 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-ExtraBoldItalic.woff differ diff --git a/public/fonts/source-code/SourceCodePro-ExtraLight.woff b/public/fonts/source-code/SourceCodePro-ExtraLight.woff new file mode 100644 index 0000000..751e203 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-ExtraLight.woff differ diff --git a/public/fonts/source-code/SourceCodePro-ExtraLightItalic.woff b/public/fonts/source-code/SourceCodePro-ExtraLightItalic.woff new file mode 100644 index 0000000..a5503fe Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-ExtraLightItalic.woff differ diff --git a/public/fonts/source-code/SourceCodePro-Italic.woff b/public/fonts/source-code/SourceCodePro-Italic.woff new file mode 100644 index 0000000..fa86a69 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-Italic.woff differ diff --git a/public/fonts/source-code/SourceCodePro-Light.woff b/public/fonts/source-code/SourceCodePro-Light.woff new file mode 100644 index 0000000..3f04e18 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-Light.woff differ diff --git a/public/fonts/source-code/SourceCodePro-LightItalic.woff b/public/fonts/source-code/SourceCodePro-LightItalic.woff new file mode 100644 index 0000000..6582ad2 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-LightItalic.woff differ diff --git a/public/fonts/source-code/SourceCodePro-Medium.woff b/public/fonts/source-code/SourceCodePro-Medium.woff new file mode 100644 index 0000000..bc55024 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-Medium.woff differ diff --git a/public/fonts/source-code/SourceCodePro-MediumItalic.woff b/public/fonts/source-code/SourceCodePro-MediumItalic.woff new file mode 100644 index 0000000..98fc621 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-MediumItalic.woff differ diff --git a/public/fonts/source-code/SourceCodePro-Regular.woff b/public/fonts/source-code/SourceCodePro-Regular.woff new file mode 100644 index 0000000..d205d71 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-Regular.woff differ diff --git a/public/fonts/source-code/SourceCodePro-SemiBold.woff b/public/fonts/source-code/SourceCodePro-SemiBold.woff new file mode 100644 index 0000000..3211880 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-SemiBold.woff differ diff --git a/public/fonts/source-code/SourceCodePro-SemiBoldItalic.woff b/public/fonts/source-code/SourceCodePro-SemiBoldItalic.woff new file mode 100644 index 0000000..5398212 Binary files /dev/null and b/public/fonts/source-code/SourceCodePro-SemiBoldItalic.woff differ diff --git a/public/fonts/source-code/SourceCodePro-Black.ttf b/public/fonts/source-code/old/SourceCodePro-Black.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-Black.ttf rename to public/fonts/source-code/old/SourceCodePro-Black.ttf diff --git a/public/fonts/source-code/SourceCodePro-BlackItalic.ttf b/public/fonts/source-code/old/SourceCodePro-BlackItalic.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-BlackItalic.ttf rename to public/fonts/source-code/old/SourceCodePro-BlackItalic.ttf diff --git a/public/fonts/source-code/SourceCodePro-Bold.ttf b/public/fonts/source-code/old/SourceCodePro-Bold.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-Bold.ttf rename to public/fonts/source-code/old/SourceCodePro-Bold.ttf diff --git a/public/fonts/source-code/SourceCodePro-BoldItalic.ttf b/public/fonts/source-code/old/SourceCodePro-BoldItalic.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-BoldItalic.ttf rename to public/fonts/source-code/old/SourceCodePro-BoldItalic.ttf diff --git a/public/fonts/source-code/SourceCodePro-ExtraBold.ttf b/public/fonts/source-code/old/SourceCodePro-ExtraBold.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-ExtraBold.ttf rename to public/fonts/source-code/old/SourceCodePro-ExtraBold.ttf diff --git a/public/fonts/source-code/SourceCodePro-ExtraBoldItalic.ttf b/public/fonts/source-code/old/SourceCodePro-ExtraBoldItalic.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-ExtraBoldItalic.ttf rename to public/fonts/source-code/old/SourceCodePro-ExtraBoldItalic.ttf diff --git a/public/fonts/source-code/SourceCodePro-ExtraLight.ttf b/public/fonts/source-code/old/SourceCodePro-ExtraLight.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-ExtraLight.ttf rename to public/fonts/source-code/old/SourceCodePro-ExtraLight.ttf diff --git a/public/fonts/source-code/SourceCodePro-ExtraLightItalic.ttf b/public/fonts/source-code/old/SourceCodePro-ExtraLightItalic.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-ExtraLightItalic.ttf rename to public/fonts/source-code/old/SourceCodePro-ExtraLightItalic.ttf diff --git a/public/fonts/source-code/SourceCodePro-Italic.ttf b/public/fonts/source-code/old/SourceCodePro-Italic.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-Italic.ttf rename to public/fonts/source-code/old/SourceCodePro-Italic.ttf diff --git a/public/fonts/source-code/SourceCodePro-Light.ttf b/public/fonts/source-code/old/SourceCodePro-Light.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-Light.ttf rename to public/fonts/source-code/old/SourceCodePro-Light.ttf diff --git a/public/fonts/source-code/SourceCodePro-LightItalic.ttf b/public/fonts/source-code/old/SourceCodePro-LightItalic.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-LightItalic.ttf rename to public/fonts/source-code/old/SourceCodePro-LightItalic.ttf diff --git a/public/fonts/source-code/SourceCodePro-Medium.ttf b/public/fonts/source-code/old/SourceCodePro-Medium.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-Medium.ttf rename to public/fonts/source-code/old/SourceCodePro-Medium.ttf diff --git a/public/fonts/source-code/SourceCodePro-MediumItalic.ttf b/public/fonts/source-code/old/SourceCodePro-MediumItalic.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-MediumItalic.ttf rename to public/fonts/source-code/old/SourceCodePro-MediumItalic.ttf diff --git a/public/fonts/source-code/SourceCodePro-Regular.ttf b/public/fonts/source-code/old/SourceCodePro-Regular.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-Regular.ttf rename to public/fonts/source-code/old/SourceCodePro-Regular.ttf diff --git a/public/fonts/source-code/SourceCodePro-SemiBold.ttf b/public/fonts/source-code/old/SourceCodePro-SemiBold.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-SemiBold.ttf rename to public/fonts/source-code/old/SourceCodePro-SemiBold.ttf diff --git a/public/fonts/source-code/SourceCodePro-SemiBoldItalic.ttf b/public/fonts/source-code/old/SourceCodePro-SemiBoldItalic.ttf similarity index 100% rename from public/fonts/source-code/SourceCodePro-SemiBoldItalic.ttf rename to public/fonts/source-code/old/SourceCodePro-SemiBoldItalic.ttf diff --git a/public/icons/arrow-down.tsx b/public/icons/arrow-down.tsx new file mode 100644 index 0000000..24205c7 --- /dev/null +++ b/public/icons/arrow-down.tsx @@ -0,0 +1,8 @@ +const ArrowDown = () => ( + + + + +) + +export default ArrowDown \ No newline at end of file diff --git a/public/icons/arrow-right-icon.tsx b/public/icons/arrow-right-icon.tsx index 61a88e6..1eb9725 100644 --- a/public/icons/arrow-right-icon.tsx +++ b/public/icons/arrow-right-icon.tsx @@ -1,4 +1,4 @@ -const ArrowRightIcon = () => { +const ArrowRightIcon = (props) => { return ( { viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg' + {...props} > ) diff --git a/public/icons/customers-icon.tsx b/public/icons/customers-icon.tsx new file mode 100644 index 0000000..9ae221c --- /dev/null +++ b/public/icons/customers-icon.tsx @@ -0,0 +1,32 @@ +export default function CustomersIcon() { + return ( + + + + + + + + ) +} diff --git a/public/icons/error-icon.tsx b/public/icons/error-icon.tsx index e176d93..0aaeeac 100644 --- a/public/icons/error-icon.tsx +++ b/public/icons/error-icon.tsx @@ -3,7 +3,7 @@ export default function ErrorIcon() { - + diff --git a/public/icons/index.ts b/public/icons/index.ts index ab1b3ce..f87819e 100644 --- a/public/icons/index.ts +++ b/public/icons/index.ts @@ -1,5 +1,6 @@ import DashboardScreenshot from 'public/icons/dashboardScreenshot'; import AlertIcon from './alert-icon'; +import ArrowDown from './arrow-down'; import CommunityIcon from './community-icon'; import ErrorIcon from './error-icon'; import GuidesIcon from './guides-icon'; @@ -19,13 +20,18 @@ import ThumbsUpIcon from './thumbs-up-icon'; import TransferIcon from './transfers-icon'; import UseCasesIcon from './use-cases-icon'; import HandsWithPenny from 'public/icons/handsWithPenny'; +import SwapIcon from './swap-icon'; import { ShopifyIcon } from './shopify-icon'; import { WordPressIcon } from './wordPress-Icon'; import { WooCommerceIcon } from './wooCommerce-icon'; +import ProductsIcon from './products-icon'; +import TransactionsIcon from './transactions-icon'; +import CustomersIcon from './customers-icon'; export { InfoIcon, AlertIcon, + ArrowDown, SuccessIcon, ErrorIcon, SearchIcon, @@ -47,5 +53,9 @@ export { WooCommerceIcon, ShopifyIcon, HandsWithPenny, - DashboardScreenshot + DashboardScreenshot, + SwapIcon, + ProductsIcon, + TransactionsIcon, + CustomersIcon }; \ No newline at end of file diff --git a/public/icons/products-icon.tsx b/public/icons/products-icon.tsx new file mode 100644 index 0000000..900b414 --- /dev/null +++ b/public/icons/products-icon.tsx @@ -0,0 +1,44 @@ +export default function ProductsIcon() { + return ( + + + + + + + + + + + ) +} diff --git a/public/icons/swap-icon.tsx b/public/icons/swap-icon.tsx new file mode 100644 index 0000000..9588ab8 --- /dev/null +++ b/public/icons/swap-icon.tsx @@ -0,0 +1,35 @@ +export default function SwapIcon() { + return ( + + + + + + + + + + + + + + ) +} diff --git a/public/icons/transactions-icon.tsx b/public/icons/transactions-icon.tsx new file mode 100644 index 0000000..2f4c508 --- /dev/null +++ b/public/icons/transactions-icon.tsx @@ -0,0 +1,50 @@ +export default function TransactionsIcon() { + return ( + + + + + + + + + + + + + ) +} diff --git a/public/icons/wooCommerce-icon.tsx b/public/icons/wooCommerce-icon.tsx index c90eb96..5e061a3 100644 --- a/public/icons/wooCommerce-icon.tsx +++ b/public/icons/wooCommerce-icon.tsx @@ -2,40 +2,18 @@ import React from 'react' export const WooCommerceIcon = () => { return ( -
- - - - - - - - - - - - +
+ + + + + + + + + + +
) } diff --git a/public/images/create-product.png b/public/images/create-product.png new file mode 100644 index 0000000..e2e0e2c Binary files /dev/null and b/public/images/create-product.png differ diff --git a/public/images/donation-payment.png b/public/images/donation-payment.png new file mode 100644 index 0000000..9bcc703 Binary files /dev/null and b/public/images/donation-payment.png differ diff --git a/public/images/keys_and_webhooks.png b/public/images/keys_and_webhooks.png new file mode 100644 index 0000000..d47e11f Binary files /dev/null and b/public/images/keys_and_webhooks.png differ diff --git a/public/images/link-information.png b/public/images/link-information.png new file mode 100644 index 0000000..2daf3aa Binary files /dev/null and b/public/images/link-information.png differ diff --git a/public/images/qr-preview.png b/public/images/qr-preview.png new file mode 100644 index 0000000..a03635a Binary files /dev/null and b/public/images/qr-preview.png differ diff --git a/public/images/standard-payment.png b/public/images/standard-payment.png new file mode 100644 index 0000000..a21171f Binary files /dev/null and b/public/images/standard-payment.png differ diff --git a/public/images/swap_stablecoins.png b/public/images/swap_stablecoins.png new file mode 100644 index 0000000..cee95be Binary files /dev/null and b/public/images/swap_stablecoins.png differ diff --git a/public/images/test_payment.png b/public/images/test_payment.png new file mode 100644 index 0000000..659228d Binary files /dev/null and b/public/images/test_payment.png differ diff --git a/sidebar.config.tsx b/sidebar.config.tsx index cf7ef53..90ca072 100644 --- a/sidebar.config.tsx +++ b/sidebar.config.tsx @@ -4,6 +4,11 @@ import { PaymentsIcon, TransferIcon, UseCasesIcon, + LibrariesIcon, + SwapIcon, + ProductsIcon, + TransactionsIcon, + CustomersIcon, } from 'public/icons' import React, { ElementType } from 'react' @@ -11,7 +16,7 @@ export interface SidebarItem { type: string icon?: ElementType | React.ReactNode id: string - redirect?: string, + redirect?: string label: string children?: SidebarItem[] } @@ -21,54 +26,98 @@ const sidebar: SidebarItem[] = [ type: 'docs', label: 'Quick Start', icon: , - id: "quick-start" + id: 'quick-start', }, { - type: 'docs', + type: 'category', label: 'Payments', icon: , - id: "payments", - redirect: "payments/get-started", + id: 'payments', + redirect: 'payments/get-started', children: [ - { type: "docs", label: "Get started", id: "get-started" }, - { type: "docs", label: "Accepts payments", id: "accept-payments" }, - { type: "docs", label: "Verify payments", id: "verify-payments" }, - { type: "docs", label: "Webhooks", id: "webhooks" }, - { type: "docs", label: "Payment links", id: "payment-links" }, - { type: "docs", label: "Partial payments", id: "partial-payments" }, - { type: "docs", label: "Test payments", id: "make-test-payments" }, + { type: 'docs', label: 'Get started', id: 'get-started' }, + { type: 'docs', label: 'Accepts payments', id: 'accept-payments' }, + { type: 'docs', label: 'Verify payments', id: 'verify-payments' }, + { type: 'docs', label: 'Webhooks', id: 'webhooks' }, + { type: 'docs', label: 'Payment links', id: 'payment-links' }, + { type: 'docs', label: 'Partial payments', id: 'partial-payments' }, + { type: 'docs', label: 'Test payments', id: 'make-test-payments' }, ], }, { - type: 'docs', + type: 'category', label: 'Transfers', icon: , - id: "transfers", + id: 'transfers', + redirect: 'transfers/get-started', children: [ - { type: "docs", label: "Get started", id: "get-started" }, - { type: "docs", label: "Crypto Transfer", id: "crypto-transfers" }, - { type: "docs", label: "Bank Transfer", id: "bank-transfers" }, - { type: "docs", label: "Webhooks", id: "webhooks" }, + { type: 'docs', label: 'Get started', id: 'get-started' }, + { type: 'docs', label: 'Crypto Transfer', id: 'crypto-transfers' }, + { type: 'docs', label: 'Bank Transfer', id: 'bank-transfers' }, + { type: 'docs', label: 'Webhooks', id: 'transfers-webhooks' }, ], }, { - type: 'docs', - label: 'Use Cases', - icon: , - id: "use-cases", - redirect: 'use-cases/get-started', + type: 'category', + label: 'Swap', + icon: , + id: 'swap', + redirect: 'swap/get-started', children: [ { type: 'docs', label: 'Get started', id: 'get-started' }, - { type: 'docs', label: 'Ecommerce', id: 'ecommerce' }, + { type: 'docs', label: 'Preview swap amount', id: 'swap-amount' }, + { type: 'docs', label: 'Stablecoin swap', id: 'stablecoin-swap' }, + { type: 'docs', label: 'Webhooks', id: 'webhooks' }, ], }, { type: 'docs', - label: 'Guides and Tutorials', - icon: , - id: "guides", - children: [], - } + label: 'Transactions', + icon: , + id: 'transactions', + }, + { + type: 'docs', + label: 'Customers', + icon: , + id: 'customers', + }, + { + type: 'docs', + label: 'Products', + icon: , + id: 'products', + }, + { + type: 'category', + label: 'Libraries', + icon: , + id: 'libraries', + redirect: 'libraries/get-started', + children: [ + { type: 'docs', label: 'Get started', id: 'get-started' }, + { type: 'docs', label: 'Libraries', id: 'libraries' }, + { type: 'docs', label: 'Plugins', id: 'plugins' }, + ], + }, + // { + // type: 'category', + // label: 'Use Cases', + // icon: , + // id: 'use-cases', + // redirect: 'use-cases/get-started', + // children: [ + // { type: 'docs', label: 'Get started', id: 'get-started' }, + // { type: 'docs', label: 'Ecommerce', id: 'ecommerce' }, + // ], + // }, + // { + // type: 'docs', + // label: 'Guides and Tutorials', + // icon: , + // id: 'guides', + // children: [], + // }, ] export default sidebar diff --git a/styles/font.scss b/styles/font.scss index 5b2f128..2d7a885 100644 --- a/styles/font.scss +++ b/styles/font.scss @@ -112,7 +112,7 @@ font-style: normal; font-weight: 400; font-stretch: normal; - src: url("/fonts/source-code/SourceCodePro-Regular.ttf") format("ttf"); + src: url("/fonts/source-code/SourceCodePro-Regular.woff") format("woff"); } @font-face { @@ -120,6 +120,6 @@ font-style: normal; font-weight: 600; font-stretch: normal; - src: url("/fonts/source-code/SourceCodePro-SemiBold.ttf") format("ttf"); + src: url("/fonts/source-code/SourceCodePro-SemiBold.woff") format("woff"); } } \ No newline at end of file diff --git a/styles/globals.scss b/styles/globals.scss index 40edbea..96fe7dd 100644 --- a/styles/globals.scss +++ b/styles/globals.scss @@ -50,12 +50,131 @@ html { } } +// PRISM OVERRIDES +.language-html, +.code.language-json { + & * { + color: #F8FAFC !important; + } +} + +.code.default.language-js { + color: #F8FAFC; +} + + +.language-js { + + .token.string-property.property, + .token.literal-property.property { + color: #E1386A; + } + + .token.punctuation { + color: #F8FAFC; + } + + .token.keyword { + color: #97CD33; + } +} + +.language-json.code--red.response { + .token.punctuation { + @apply text-neu-900; + } + + .token.property, + .token.operator, + .token.string, + .token.number, + .token.boolean, + .token.null { + color: #E1386A; + } +} + +.language-json.code--default.response { + & * { + color: #0F172A !important; + } +} + + +.language-curl.code.default { + color: #97CD33; + + .token.url { + color: #97CD33; + } + + .token.method { + color: #F92572; + } + + .token.curl, + .token.option, + .token.punctuation { + @apply text-neu-50; + } +} + +code[class*="language-"].default, +pre[class*="language-"].default { + @apply bg-neu-700 font-code; +} + +code[class*="language-"].response, +pre[class*="language-"].response { + @apply bg-neu-50 font-code; +} + code { font-size: inherit; - padding: 5px 8px; + padding: 2px 8px; white-space: nowrap; color: theme('colors.pri.500'); font-family: theme('fontFamily.code'); border-radius: theme('borderRadius.8'); - background-color: theme('colors.neu.50'); -} \ No newline at end of file + background-color: theme('colors.neu.100'); + line-height: 21px; +} + +.code { + font-size: unset; + padding: unset; + white-space: unset; + color: unset; + border-radius: unset; + background-color: unset; + line-height: unset; +} + +.list-custom { + position: relative; + list-style: none; + + &::marker { + content: counter(list-item)"\a0\a0\a0" + } + + &::before { + position: absolute; + content: ""; + top: 0; + left: -23px; + width: 16px; + height: 23px; + z-index: -1; + background: #F1F5F9; + border-radius: 8px; + } +} + +tbody code { + background-color: theme('colors.neu.100'); +} + +// .code--red { +// color: #E1386A !important; +// } \ No newline at end of file diff --git a/styles/prism.scss b/styles/prism.scss index 02ba489..3b8abb3 100644 --- a/styles/prism.scss +++ b/styles/prism.scss @@ -4,8 +4,6 @@ code[class*="language-"], pre[class*="language-"] { - @apply bg-neu-700 font-code; - border-radius: 0 0 8px 8px; color: hsl(230, 8%, 24%); direction: ltr; text-align: left; @@ -75,7 +73,7 @@ pre[class*="language-"].line-numbers>code { /* Token colors */ .token { - color: hsl(210, 40%, 96%) !important; + // color: hsl(210, 40%, 96%) !important; } .token.property, diff --git a/yarn.lock b/yarn.lock index 9b7892b..ba5812a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4,48 +4,34 @@ "@babel/helper-module-imports@^7.13.12": version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz" integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== dependencies: "@babel/types" "^7.16.7" "@babel/helper-validator-identifier@^7.16.7": version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz" integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== "@babel/runtime-corejs3@^7.10.2": version "7.16.3" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.16.3.tgz#1e25de4fa994c57c18e5fdda6cc810dac70f5590" + resolved "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.16.3.tgz" integrity sha512-IAdDC7T0+wEB4y2gbIL0uOXEYpiZEeuFUTVbdGq+UwCcF35T/tS8KrmMomEwEc5wBbyfH3PJVpTSUqrhPDXFcQ== dependencies: core-js-pure "^3.19.0" regenerator-runtime "^0.13.4" -"@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3": - version "7.16.3" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.3.tgz#b86f0db02a04187a3c17caa77de69840165d42d5" - integrity sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.12.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.7.6": - version "7.17.9" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.9.tgz#d19fbf802d01a8cb6cf053a64e472d42c434ba72" - integrity sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.15.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.6.tgz#6a1ef59f838debd670421f8c7f2cbb8da9751580" - integrity sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ== +"@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.15.4", "@babel/runtime@^7.16.3", "@babel/runtime@^7.7.6": + version "7.19.0" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz" + integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA== dependencies: regenerator-runtime "^0.13.4" "@babel/types@^7.13.17", "@babel/types@^7.16.7": version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.0.tgz#ef523ea349722849cb4bf806e9342ede4d071553" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.18.0.tgz" integrity sha512-vhAmLPAiC8j9K2GnsnLPCIH5wCrPpYIVBCWRBFDCB7Y/BXLqi/O+1RSTTM2bsmg6U/551+FCf9PNPxjABmxHTw== dependencies: "@babel/helper-validator-identifier" "^7.16.7" @@ -53,7 +39,7 @@ "@contentlayer/cli@0.2.3": version "0.2.3" - resolved "https://registry.yarnpkg.com/@contentlayer/cli/-/cli-0.2.3.tgz#913e4ba997efca2b1d0b6f840cdc5414c2d0d2d7" + resolved "https://registry.npmjs.org/@contentlayer/cli/-/cli-0.2.3.tgz" integrity sha512-MCxf0xbtbkDt/isSu/e95X3t3hRezDUuJjE7QaF4dS0hg5/YP24Jl7XkADvPos1Xbc9ARhE7Agm6KgwMGtKKIA== dependencies: "@contentlayer/core" "0.2.3" @@ -63,14 +49,14 @@ "@contentlayer/client@0.2.3": version "0.2.3" - resolved "https://registry.yarnpkg.com/@contentlayer/client/-/client-0.2.3.tgz#7db2c2307fb564600e337c59aa30302c8afd04ab" + resolved "https://registry.npmjs.org/@contentlayer/client/-/client-0.2.3.tgz" integrity sha512-sykfn4dy4Bx3x9VOrehOjnv+pDXHrJnorN1sqpP5WJWR8aLW3kwGwLIrHUVRx+xtLHPR4bWqE31OLqZgZYVc/Q== dependencies: "@contentlayer/core" "0.2.3" "@contentlayer/core@0.2.3": version "0.2.3" - resolved "https://registry.yarnpkg.com/@contentlayer/core/-/core-0.2.3.tgz#5f7cb128be701c400f042b8655c34d56d0307c58" + resolved "https://registry.npmjs.org/@contentlayer/core/-/core-0.2.3.tgz" integrity sha512-JqTtSU4b++LmaRvmK/sDKYArqQUK3J7G3kLdOxtwsI90h6FvptA3N1xNEkYbfnr+OaOdR61NyWPnGdkF2CrZpA== dependencies: "@contentlayer/utils" "0.2.3" @@ -90,7 +76,7 @@ "@contentlayer/source-files@0.2.3": version "0.2.3" - resolved "https://registry.yarnpkg.com/@contentlayer/source-files/-/source-files-0.2.3.tgz#3c3c14107936292a12b270df9c7e3a00b5cc668b" + resolved "https://registry.npmjs.org/@contentlayer/source-files/-/source-files-0.2.3.tgz" integrity sha512-8hX7GRsFQLo/Z8X3qmx4JxoXHkIxZj4Y1YFTCmeF4KJWuOO4g1JX69a9rStLn109d+oaqvLgg2b6MvLy0UVjRw== dependencies: "@contentlayer/core" "0.2.3" @@ -107,7 +93,7 @@ "@contentlayer/utils@0.2.3": version "0.2.3" - resolved "https://registry.yarnpkg.com/@contentlayer/utils/-/utils-0.2.3.tgz#4be3a40d2e772dac0865fe531f11af677f3f2a7c" + resolved "https://registry.npmjs.org/@contentlayer/utils/-/utils-0.2.3.tgz" integrity sha512-HBOoZ/M8qKq0lYgJ8fqnkAWygLG9u2120WwVUAHor+J2OGEjK/MRzggTNjmSRzbTNjgr86r9TR1sEpc+Ueb8jQ== dependencies: "@effect-ts/core" "^0.58.0" @@ -130,50 +116,50 @@ "@effect-ts/core@^0.58.0": version "0.58.1" - resolved "https://registry.yarnpkg.com/@effect-ts/core/-/core-0.58.1.tgz#9ddb527c8b19501cb1f12bda23c16af722258964" + resolved "https://registry.npmjs.org/@effect-ts/core/-/core-0.58.1.tgz" integrity sha512-N0UwVyg+cx7FMG2zFh7uzpkyOk7iGYhiBfVN1K5MqpVXZzLvbuR9yud3SveaIxD0dJnso4AnPzrw6zhctNO+1A== dependencies: "@effect-ts/system" "^0.55.1" "@effect-ts/otel-exporter-trace-otlp-grpc@^0.13.0": version "0.13.0" - resolved "https://registry.yarnpkg.com/@effect-ts/otel-exporter-trace-otlp-grpc/-/otel-exporter-trace-otlp-grpc-0.13.0.tgz#b37af7fa5fcc2eab41598492ac5e03ae9c52d7c5" + resolved "https://registry.npmjs.org/@effect-ts/otel-exporter-trace-otlp-grpc/-/otel-exporter-trace-otlp-grpc-0.13.0.tgz" integrity sha512-SIyRO+2Kvd4F6dKe8ztEUsqCxrKlnArWHyGELfruA9vB/BGdmbVaSFlUzLBHTuobXIgIFsCVaFmfUtwXTsHLMg== dependencies: "@effect-ts/otel" "^0.13.0" "@effect-ts/otel-sdk-trace-node@^0.13.0": version "0.13.0" - resolved "https://registry.yarnpkg.com/@effect-ts/otel-sdk-trace-node/-/otel-sdk-trace-node-0.13.0.tgz#078463a622c7c40ba06abb42c8eff238eab1df4a" + resolved "https://registry.npmjs.org/@effect-ts/otel-sdk-trace-node/-/otel-sdk-trace-node-0.13.0.tgz" integrity sha512-sdKZ6TJZuxkbkigIUwKK7mgNVJEl+9RkRYCAF9NLz3xbGEGHiIuK3IePy9/nawjfkV2bKSCZ6QRb9TgVg12yRA== dependencies: "@effect-ts/otel" "^0.13.0" "@effect-ts/otel@^0.13.0": version "0.13.0" - resolved "https://registry.yarnpkg.com/@effect-ts/otel/-/otel-0.13.0.tgz#b20f2cf17cb659f8fe246aa0aa814693437f9893" + resolved "https://registry.npmjs.org/@effect-ts/otel/-/otel-0.13.0.tgz" integrity sha512-AR9l1Zj2eF1uv89Rpu0ePlW5l6qFNeBfmOsih7Yoi517g8dfURAXvgWVi67DmwqDQThz3xVuGd1evOcBqXCdsQ== "@effect-ts/system@^0.55.1": version "0.55.1" - resolved "https://registry.yarnpkg.com/@effect-ts/system/-/system-0.55.1.tgz#fe157e7639ff6b05a51b62379961662569da98fb" + resolved "https://registry.npmjs.org/@effect-ts/system/-/system-0.55.1.tgz" integrity sha512-OEnwd9JhrV2Q5S7cke/ZgR56Hn75DSr1aIkA0PBE1edoX6GKB6nOdu8u/vPhvqjxLHfMgN8o+EVaWUHPLIC1UQ== "@emotion/is-prop-valid@^0.8.2": version "0.8.8" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" + resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz" integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== dependencies: "@emotion/memoize" "0.7.4" "@emotion/memoize@0.7.4": version "0.7.4" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" + resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz" integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== "@esbuild-plugins/node-resolve@^0.1.4": version "0.1.4" - resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-resolve/-/node-resolve-0.1.4.tgz#2257ef3b233c9cb3acd2ebde7d5a3d6874046d38" + resolved "https://registry.npmjs.org/@esbuild-plugins/node-resolve/-/node-resolve-0.1.4.tgz" integrity sha512-haFQ0qhxEpqtWWY0kx1Y5oE3sMyO1PcoSiWEPrAw6tm/ZOOLXjSs6Q+v1v9eyuVF0nNt50YEvrcrvENmyoMv5g== dependencies: "@types/resolve" "^1.17.1" @@ -183,7 +169,7 @@ "@eslint/eslintrc@^1.0.5": version "1.0.5" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.0.5.tgz#33f1b838dbf1f923bfa517e008362b78ddbbf318" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.5.tgz" integrity sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ== dependencies: ajv "^6.12.4" @@ -198,12 +184,12 @@ "@fal-works/esbuild-plugin-global-externals@^2.1.2": version "2.1.2" - resolved "https://registry.yarnpkg.com/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz#c05ed35ad82df8e6ac616c68b92c2282bd083ba4" + resolved "https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz" integrity sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ== "@grpc/grpc-js@^1.3.7": version "1.4.4" - resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.4.4.tgz#59336f13d77bc446bbdf2161564a32639288dc5b" + resolved "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.4.4.tgz" integrity sha512-a6222b7Dl6fIlMgzVl7e+NiRoLiZFbpcwvBH2Oli56Bn7W4/3Ld+86hK4ffPn5rx2DlDidmIcvIJiOQXyhv9gA== dependencies: "@grpc/proto-loader" "^0.6.4" @@ -211,7 +197,7 @@ "@grpc/proto-loader@^0.6.4": version "0.6.7" - resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.6.7.tgz#e62a202f4cf5897bdd0e244dec1dbc80d84bdfa1" + resolved "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.7.tgz" integrity sha512-QzTPIyJxU0u+r2qGe8VMl3j/W2ryhEvBv7hc42OjYfthSj370fUrb7na65rG6w3YLZS/fb8p89iTBobfWGDgdw== dependencies: "@types/long" "^4.0.1" @@ -222,12 +208,12 @@ "@hookform/resolvers@^2.9.6": version "2.9.6" - resolved "https://registry.yarnpkg.com/@hookform/resolvers/-/resolvers-2.9.6.tgz#db4277a96d1817d94169108167014926d8a10398" + resolved "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-2.9.6.tgz" integrity sha512-f4VxF8w9rdX0WsDCk3FW1dGPj/Sj8+1Ulcgtm5ymgWEpbA/fjY+NUDh+L9hftmxDgP8+EJFtF+qFK4gPEXVrVQ== "@humanwhocodes/config-array@^0.9.2": version "0.9.2" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.2.tgz#68be55c737023009dfc5fe245d51181bb6476914" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.2.tgz" integrity sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA== dependencies: "@humanwhocodes/object-schema" "^1.2.1" @@ -236,12 +222,12 @@ "@humanwhocodes/object-schema@^1.2.1": version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== "@mdx-js/esbuild@^2.0.0": version "2.1.1" - resolved "https://registry.yarnpkg.com/@mdx-js/esbuild/-/esbuild-2.1.1.tgz#1e7102fabf1f5f64c2aa5f42147533ff4bb76af0" + resolved "https://registry.npmjs.org/@mdx-js/esbuild/-/esbuild-2.1.1.tgz" integrity sha512-iwcbh7eZZh55r1/lqyrPpkIsuczmlUclulfrtc983mJncdhhhqv0g01loK2r3L0LeIzORhb8h1xUsAWneG0c6w== dependencies: "@mdx-js/mdx" "^2.0.0" @@ -250,7 +236,7 @@ "@mdx-js/mdx@^2.0.0": version "2.1.1" - resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.1.1.tgz#6d8b9b75456d7685a52c3812b1c3e4830c7458fb" + resolved "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-2.1.1.tgz" integrity sha512-SXC18cChut3F2zkVXwsb2no0fzTQ1z6swjK13XwFbF5QU/SFQM0orAItPypSdL3GvqYyzVJtz8UofzJhPEQtMw== dependencies: "@types/estree-jsx" "^0.0.1" @@ -273,7 +259,7 @@ "@mdx-js/react@^2.1.1": version "2.1.1" - resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.1.1.tgz#c59d844fd61b776fea8673fb77405d4e14db48c5" + resolved "https://registry.npmjs.org/@mdx-js/react/-/react-2.1.1.tgz" integrity sha512-7zlZDf5xmWH8I0kFE4DG91COOkxjaW9DX5f1HWztZpFcVua2gJgMYfIkFaDpO/DH/tWi6Mz+OheW4194r15igg== dependencies: "@types/mdx" "^2.0.0" @@ -281,12 +267,12 @@ "@next/env@12.1.5": version "12.1.5" - resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.5.tgz#a21ba6708022d630402ca2b340316e69a0296dfc" + resolved "https://registry.npmjs.org/@next/env/-/env-12.1.5.tgz" integrity sha512-+34yUJslfJi7Lyx6ELuN8nWcOzi27izfYnZIC1Dqv7kmmfiBVxgzR3BXhlvEMTKC2IRJhXVs2FkMY+buQe3k7Q== "@next/eslint-plugin-next@12.0.7": version "12.0.7" - resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.0.7.tgz#2c71bb66b8f8ff1080086342113406aa3156976f" + resolved "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-12.0.7.tgz" integrity sha512-xk7eMjw4+roWWR/0ETIoToCNs2wdvCGgQUiUO390Rj33/82yxZsh+ODRSaFWkiKp8zHWQN5GCW+U5pfjt/gyQg== dependencies: glob "7.1.7" @@ -303,7 +289,7 @@ "@next/swc-darwin-arm64@12.1.5": version "12.1.5" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.5.tgz#3d5b53211484c72074f4975ba0ec2b1107db300e" + resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.5.tgz" integrity sha512-y8mhldb/WFZ6lFeowkGfi0cO/lBdiBqDk4T4LZLvCpoQp4Or/NzUN6P5NzBQZ5/b4oUHM/wQICEM+1wKA4qIVw== "@next/swc-darwin-x64@12.1.5": @@ -353,7 +339,7 @@ "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" @@ -361,12 +347,12 @@ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3": version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" @@ -374,24 +360,24 @@ "@opentelemetry/api@^1.0.3": version "1.0.3" - resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.0.3.tgz#13a12ae9e05c2a782f7b5e84c3cbfda4225eaf80" + resolved "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.3.tgz" integrity sha512-puWxACExDe9nxbBB3lOymQFrLYml2dVOrd7USiVRnSbgXE+KwBu+HxFvxrzfqsiSda9IWsXJG1ef7C1O2/GmKQ== "@opentelemetry/context-async-hooks@1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-1.0.1.tgz#5a26019f21ec5b5293825ccc660ef8666146c0a3" + resolved "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-1.0.1.tgz" integrity sha512-oGCPjDlZ03gXPAdLxw5iqaQJIpL8BZFaiZhAPgF7Vj6XYmrmrA/FXVIsjfNECQTa2D+lt5p8vf0xYIkFufgceQ== "@opentelemetry/core@1.0.1", "@opentelemetry/core@^1.0.0": version "1.0.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/core/-/core-1.0.1.tgz#5e08cef21946fdea7952f544e8f667f6d2a0ded8" + resolved "https://registry.npmjs.org/@opentelemetry/core/-/core-1.0.1.tgz" integrity sha512-90nQ2X6b/8X+xjcLDBYKooAcOsIlwLRYm+1VsxcX5cHl6V4CSVmDpBreQSDH/A21SqROzapk6813008SatmPpQ== dependencies: "@opentelemetry/semantic-conventions" "1.0.1" "@opentelemetry/exporter-trace-otlp-grpc@^0.27.0": version "0.27.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/exporter-trace-otlp-grpc/-/exporter-trace-otlp-grpc-0.27.0.tgz#1fdb7b642ab17bff8dbc96eeb5c839dd55354a98" + resolved "https://registry.npmjs.org/@opentelemetry/exporter-trace-otlp-grpc/-/exporter-trace-otlp-grpc-0.27.0.tgz" integrity sha512-fFoLoCv9beWRouuhLy8zqnHrPj+Bj89iUbUzcg80cQ4tP3AXKyjWBowk/xHteKsTFbQYkIBhIQOpekyHtExwRw== dependencies: "@grpc/grpc-js" "^1.3.7" @@ -403,7 +389,7 @@ "@opentelemetry/exporter-trace-otlp-http@0.27.0": version "0.27.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/exporter-trace-otlp-http/-/exporter-trace-otlp-http-0.27.0.tgz#0d2798e89ecae1487c3a2e7fed45eec7157df7ee" + resolved "https://registry.npmjs.org/@opentelemetry/exporter-trace-otlp-http/-/exporter-trace-otlp-http-0.27.0.tgz" integrity sha512-ZE8Ns/GGW83E4igrby69shiqEkVo+cULzbm4DprSEMCWrPAL/NBobETFOiOQyBBBgIfrhi5EG6truUiafB1cMQ== dependencies: "@opentelemetry/core" "1.0.1" @@ -412,21 +398,21 @@ "@opentelemetry/propagator-b3@1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/propagator-b3/-/propagator-b3-1.0.1.tgz#07ca63921cbecd9833e651216807d9804b6d8516" + resolved "https://registry.npmjs.org/@opentelemetry/propagator-b3/-/propagator-b3-1.0.1.tgz" integrity sha512-UQQiOpR/WXyoqIRQEkn6RuXtGfpjhBDMq/1HrVxRCRPMVn7f4e+zxZWoQSsCOvSGQTu9S+W8eAutm00sRJN7fg== dependencies: "@opentelemetry/core" "1.0.1" "@opentelemetry/propagator-jaeger@1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/propagator-jaeger/-/propagator-jaeger-1.0.1.tgz#b17fb024475db7a454d549ffbb006b79b8ceb2aa" + resolved "https://registry.npmjs.org/@opentelemetry/propagator-jaeger/-/propagator-jaeger-1.0.1.tgz" integrity sha512-bzvXksBn3j0GyiFXQbx87CUSGC1UDyp4hjL+CCOrQfzIEdp6usKCLHv40Ib5WU6739hPMkyr59CPfKwzlviTtA== dependencies: "@opentelemetry/core" "1.0.1" "@opentelemetry/resources@1.0.1", "@opentelemetry/resources@^1.0.0": version "1.0.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-1.0.1.tgz#2d190e2e6e64327b436447a8dd799afc673b6e07" + resolved "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.0.1.tgz" integrity sha512-p8DevOaAEepPucUtImR4cZKHOE2L1jgQAtkdZporV+XnxPA/HqCHPEESyUVuo4f5M0NUlL6k5Pba75KwNJlTRg== dependencies: "@opentelemetry/core" "1.0.1" @@ -434,7 +420,7 @@ "@opentelemetry/sdk-trace-base@1.0.1", "@opentelemetry/sdk-trace-base@^1.0.0": version "1.0.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.0.1.tgz#b88c72ac768eed58baab41552ce9070c57d5b7bf" + resolved "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.0.1.tgz" integrity sha512-JVSAepTpW7dnqfV7XFN0zHj1jXGNd5OcvIGQl76buogqffdgJdgJWQNrOuUJaus56zrOtlzqFH+YtMA9RGEg8w== dependencies: "@opentelemetry/core" "1.0.1" @@ -443,7 +429,7 @@ "@opentelemetry/sdk-trace-node@^1.0.0": version "1.0.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-trace-node/-/sdk-trace-node-1.0.1.tgz#87b5c09f12210ab479441072dbe3b0314f385e23" + resolved "https://registry.npmjs.org/@opentelemetry/sdk-trace-node/-/sdk-trace-node-1.0.1.tgz" integrity sha512-0ifT2pEI5aXy14zDDUQkl3ODzY6jjaC1plbxyAuz5BdPxGJzav9vzIJ2BhEwfXDn1LKqpQ5D1Yy+XnNRQpOo3w== dependencies: "@opentelemetry/context-async-hooks" "1.0.1" @@ -455,32 +441,32 @@ "@opentelemetry/semantic-conventions@1.0.1", "@opentelemetry/semantic-conventions@^1.0.0": version "1.0.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.0.1.tgz#9349c3860a53468fa2108b5df09aa843f22dbf94" + resolved "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.0.1.tgz" integrity sha512-7XU1sfQ8uCVcXLxtAHA8r3qaLJ2oq7sKtEwzZhzuEXqYmjW+n+J4yM3kNo0HQo3Xp1eUe47UM6Wy6yuAvIyllg== "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": version "1.1.2" - resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz" integrity sha1-m4sMxmPWaafY9vXQiToU00jzD78= "@protobufjs/base64@^1.1.2": version "1.1.2" - resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz" integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== "@protobufjs/codegen@^2.0.4": version "2.0.4" - resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz" integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== "@protobufjs/eventemitter@^1.1.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz" integrity sha1-NVy8mLr61ZePntCV85diHx0Ga3A= "@protobufjs/fetch@^1.1.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz" integrity sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU= dependencies: "@protobufjs/aspromise" "^1.1.1" @@ -488,73 +474,73 @@ "@protobufjs/float@^1.0.2": version "1.0.2" - resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz" integrity sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E= "@protobufjs/inquire@^1.1.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz" integrity sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik= "@protobufjs/path@^1.1.2": version "1.1.2" - resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz" integrity sha1-bMKyDFya1q0NzP0hynZz2Nf79o0= "@protobufjs/pool@^1.1.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz" integrity sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q= "@protobufjs/utf8@^1.1.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz" integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA= "@rushstack/eslint-patch@^1.0.8": version "1.1.0" - resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.0.tgz#7f698254aadf921e48dda8c0a6b304026b8a9323" + resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.0.tgz" integrity sha512-JLo+Y592QzIE+q7Dl2pMUtt4q8SKYI5jDrZxrozEQxnGVOyYE+GWK9eLkwTaeN9DDctlaRAQ3TBmzZ1qdLE30A== "@types/acorn@^4.0.0": version "4.0.6" - resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22" + resolved "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz" integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ== dependencies: "@types/estree" "*" "@types/debug@^4.0.0": version "4.1.7" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82" + resolved "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz" integrity sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg== dependencies: "@types/ms" "*" "@types/estree-jsx@^0.0.1": version "0.0.1" - resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-0.0.1.tgz#c36d7a1afeb47a95a8ee0b7bc8bc705db38f919d" + resolved "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-0.0.1.tgz" integrity sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A== dependencies: "@types/estree" "*" "@types/estree@*", "@types/estree@^0.0.50": version "0.0.50" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83" + resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz" integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== "@types/estree@^0.0.46": version "0.0.46" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.46.tgz#0fb6bfbbeabd7a30880504993369c4bf1deab1fe" + resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.46.tgz" integrity sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg== "@types/fined@*": version "1.1.3" - resolved "https://registry.yarnpkg.com/@types/fined/-/fined-1.1.3.tgz#83f03e8f0a8d3673dfcafb18fce3571f6250e1bc" + resolved "https://registry.npmjs.org/@types/fined/-/fined-1.1.3.tgz" integrity sha512-CWYnSRnun3CGbt6taXeVo2lCbuaj4mchVJ4UF/BdU5TSuIn3AmS13pGMwCsBUoehGbhZrBrpNJZSZI5EVilXww== "@types/glob@^7.1.3": version "7.2.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" + resolved "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz" integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== dependencies: "@types/minimatch" "*" @@ -562,14 +548,14 @@ "@types/hast@^2.0.0": version "2.3.4" - resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc" + resolved "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz" integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g== dependencies: "@types/unist" "*" "@types/inquirer@^8.1.3": version "8.2.0" - resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-8.2.0.tgz#b9566d048f5ff65159f2ed97aff45fe0f00b35ec" + resolved "https://registry.npmjs.org/@types/inquirer/-/inquirer-8.2.0.tgz" integrity sha512-BNoMetRf3gmkpAlV5we+kxyZTle7YibdOntIZbU5pyIfMdcwy784KfeZDAcuyMznkh5OLa17RVXZOGA5LTlkgQ== dependencies: "@types/through" "*" @@ -577,17 +563,17 @@ "@types/json-schema@^7.0.9": version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz" integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== "@types/json5@^0.0.29": version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= "@types/liftoff@^4.0.0": version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/liftoff/-/liftoff-4.0.0.tgz#d4a100d356529776ad47fee2a9ce8f1f1ffe3772" + resolved "https://registry.npmjs.org/@types/liftoff/-/liftoff-4.0.0.tgz" integrity sha512-Ny/PJkO6nxWAQnaet8q/oWz15lrfwvdvBpuY4treB0CSsBO1CG0fVuNLngR3m3bepQLd+E4c3Y3DlC2okpUvPw== dependencies: "@types/fined" "*" @@ -595,71 +581,71 @@ "@types/lodash@^4.14.175": version "4.14.182" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.182.tgz#05301a4d5e62963227eaafe0ce04dd77c54ea5c2" + resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz" integrity sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q== "@types/long@^4.0.1": version "4.0.1" - resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.1.tgz#459c65fa1867dafe6a8f322c4c51695663cc55e9" + resolved "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz" integrity sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w== "@types/mdast@^3.0.0", "@types/mdast@^3.0.3": version "3.0.10" - resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.10.tgz#4724244a82a4598884cbbe9bcfd73dff927ee8af" + resolved "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz" integrity sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA== dependencies: "@types/unist" "*" "@types/mdurl@^1.0.0": version "1.0.2" - resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9" + resolved "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz" integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA== "@types/mdx@^2.0.0": version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.1.tgz#e4c05d355d092d7b58db1abfe460e53f41102ac8" + resolved "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.1.tgz" integrity sha512-JPEv4iAl0I+o7g8yVWDwk30es8mfVrjkvh5UeVR2sYPpZCK44vrAPsbJpIS+rJAUxLgaSAMKTEH5Vn5qd9XsrQ== "@types/minimatch@*": version "3.0.5" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" + resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz" integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== "@types/ms@*": version "0.7.31" - resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" + resolved "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz" integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== "@types/node@*", "@types/node@>=12.12.47", "@types/node@>=13.7.0": version "16.11.12" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.12.tgz#ac7fb693ac587ee182c3780c26eb65546a1a3c10" + resolved "https://registry.npmjs.org/@types/node/-/node-16.11.12.tgz" integrity sha512-+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw== "@types/parse5@^6.0.0": version "6.0.3" - resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-6.0.3.tgz#705bb349e789efa06f43f128cef51240753424cb" + resolved "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz" integrity sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g== "@types/prismjs@^1.0.0": version "1.16.6" - resolved "https://registry.yarnpkg.com/@types/prismjs/-/prismjs-1.16.6.tgz#377054f72f671b36dbe78c517ce2b279d83ecc40" + resolved "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.16.6.tgz" integrity sha512-dTvnamRITNqNkqhlBd235kZl3KfVJQQoT5jkXeiWSBK7i4/TLKBNLV0S1wOt8gy4E2TY722KLtdmv2xc6+Wevg== "@types/prop-types@*": - version "15.7.4" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" - integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== + version "15.7.5" + resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== "@types/ramda@^0.28.14": version "0.28.14" - resolved "https://registry.yarnpkg.com/@types/ramda/-/ramda-0.28.14.tgz#66412478361cfce6a5f3e4a6da8a33e796fa3866" + resolved "https://registry.npmjs.org/@types/ramda/-/ramda-0.28.14.tgz" integrity sha512-hLgAeKxS5MpIEROaIRHscFqWf+V04CB+A0Kq+OjnTs1fEGHXEs4aeOhXIRovAPe6PfWYKHEwEkVIYWf98OjxnA== dependencies: ts-toolbelt "^6.15.1" "@types/react@>=16", "@types/react@^17.0.37": version "17.0.37" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.37.tgz#6884d0aa402605935c397ae689deed115caad959" + resolved "https://registry.npmjs.org/@types/react/-/react-17.0.37.tgz" integrity sha512-2FS1oTqBGcH/s0E+CjrCCR9+JMpsu9b69RTFO+40ua43ZqP5MmQ4iUde/dMjWR909KxZwmOQIFq6AV6NjEG5xg== dependencies: "@types/prop-types" "*" @@ -668,29 +654,29 @@ "@types/resolve@^1.17.1": version "1.20.1" - resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.20.1.tgz#3727e48042fda81e374f5d5cf2fa92288bf698f8" + resolved "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.1.tgz" integrity sha512-Ku5+GPFa12S3W26Uwtw+xyrtIpaZsGYHH6zxNbZlstmlvMYSZRzOwzwsXbxlVUbHyUucctSyuFtu6bNxwYomIw== "@types/scheduler@*": version "0.16.2" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" + resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== "@types/through@*": version "0.0.30" - resolved "https://registry.yarnpkg.com/@types/through/-/through-0.0.30.tgz#e0e42ce77e897bd6aead6f6ea62aeb135b8a3895" + resolved "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz" integrity sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg== dependencies: "@types/node" "*" "@types/unist@*", "@types/unist@^2.0.0": version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" + resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz" integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== "@typescript-eslint/eslint-plugin@^5.27.0": version "5.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.0.tgz#23d82a4f21aaafd8f69dbab7e716323bb6695cc8" + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.0.tgz" integrity sha512-DDrIA7GXtmHXr1VCcx9HivA39eprYBIFxbQEHI6NyraRDxCGpxAFiYQAT/1Y0vh1C+o2vfBiy4IuPoXxtTZCAQ== dependencies: "@typescript-eslint/scope-manager" "5.27.0" @@ -705,7 +691,7 @@ "@typescript-eslint/parser@^5.0.0": version "5.6.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.6.0.tgz#11677324659641400d653253c03dcfbed468d199" + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.6.0.tgz" integrity sha512-YVK49NgdUPQ8SpCZaOpiq1kLkYRPMv9U5gcMrywzI8brtwZjr/tG3sZpuHyODt76W/A0SufNjYt9ZOgrC4tLIQ== dependencies: "@typescript-eslint/scope-manager" "5.6.0" @@ -715,7 +701,7 @@ "@typescript-eslint/scope-manager@5.27.0": version "5.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.27.0.tgz#a272178f613050ed62f51f69aae1e19e870a8bbb" + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.27.0.tgz" integrity sha512-VnykheBQ/sHd1Vt0LJ1JLrMH1GzHO+SzX6VTXuStISIsvRiurue/eRkTqSrG0CexHQgKG8shyJfR4o5VYioB9g== dependencies: "@typescript-eslint/types" "5.27.0" @@ -723,7 +709,7 @@ "@typescript-eslint/scope-manager@5.6.0": version "5.6.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.6.0.tgz#9dd7f007dc8f3a34cdff6f79f5eaab27ae05157e" + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.6.0.tgz" integrity sha512-1U1G77Hw2jsGWVsO2w6eVCbOg0HZ5WxL/cozVSTfqnL/eB9muhb8THsP0G3w+BB5xAHv9KptwdfYFAUfzcIh4A== dependencies: "@typescript-eslint/types" "5.6.0" @@ -731,7 +717,7 @@ "@typescript-eslint/type-utils@5.27.0": version "5.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.27.0.tgz#36fd95f6747412251d79c795b586ba766cf0974b" + resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.27.0.tgz" integrity sha512-vpTvRRchaf628Hb/Xzfek+85o//zEUotr1SmexKvTfs7czXfYjXVT/a5yDbpzLBX1rhbqxjDdr1Gyo0x1Fc64g== dependencies: "@typescript-eslint/utils" "5.27.0" @@ -740,17 +726,17 @@ "@typescript-eslint/types@5.27.0": version "5.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.27.0.tgz#c3f44b9dda6177a9554f94a74745ca495ba9c001" + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.27.0.tgz" integrity sha512-lY6C7oGm9a/GWhmUDOs3xAVRz4ty/XKlQ2fOLr8GAIryGn0+UBOoJDWyHer3UgrHkenorwvBnphhP+zPmzmw0A== "@typescript-eslint/types@5.6.0": version "5.6.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.6.0.tgz#745cb1b59daadcc1f32f7be95f0f68accf38afdd" + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.6.0.tgz" integrity sha512-OIZffked7mXv4mXzWU5MgAEbCf9ecNJBKi+Si6/I9PpTaj+cf2x58h2oHW5/P/yTnPkKaayfjhLvx+crnl5ubA== "@typescript-eslint/typescript-estree@5.27.0": version "5.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.0.tgz#7965f5b553c634c5354a47dcce0b40b94611e995" + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.0.tgz" integrity sha512-QywPMFvgZ+MHSLRofLI7BDL+UczFFHyj0vF5ibeChDAJgdTV8k4xgEwF0geFhVlPc1p8r70eYewzpo6ps+9LJQ== dependencies: "@typescript-eslint/types" "5.27.0" @@ -763,7 +749,7 @@ "@typescript-eslint/typescript-estree@5.6.0": version "5.6.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.6.0.tgz#dfbb19c9307fdd81bd9c650c67e8397821d7faf0" + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.6.0.tgz" integrity sha512-92vK5tQaE81rK7fOmuWMrSQtK1IMonESR+RJR2Tlc7w4o0MeEdjgidY/uO2Gobh7z4Q1hhS94Cr7r021fMVEeA== dependencies: "@typescript-eslint/types" "5.6.0" @@ -776,7 +762,7 @@ "@typescript-eslint/utils@5.27.0": version "5.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.27.0.tgz#d0021cbf686467a6a9499bd0589e19665f9f7e71" + resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.27.0.tgz" integrity sha512-nZvCrkIJppym7cIbP3pOwIkAefXOmfGPnCM0LQfzNaKxJHI6VjI8NC662uoiPlaf5f6ymkTy9C3NQXev2mdXmA== dependencies: "@types/json-schema" "^7.0.9" @@ -788,7 +774,7 @@ "@typescript-eslint/visitor-keys@5.27.0": version "5.27.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.0.tgz#97aa9a5d2f3df8215e6d3b77f9d214a24db269bd" + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.0.tgz" integrity sha512-46cYrteA2MrIAjv9ai44OQDUoCZyHeGIc4lsjCUX2WT6r4C+kidz1bNiR4017wHOPUythYeH+Sc7/cFP97KEAA== dependencies: "@typescript-eslint/types" "5.27.0" @@ -796,7 +782,7 @@ "@typescript-eslint/visitor-keys@5.6.0": version "5.6.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.6.0.tgz#3e36509e103fe9713d8f035ac977235fd63cb6e6" + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.6.0.tgz" integrity sha512-1p7hDp5cpRFUyE3+lvA74egs+RWSgumrBpzBCDzfTFv0aQ7lIeay80yU0hIxgAhwQ6PcasW35kaOCyDOv6O/Ng== dependencies: "@typescript-eslint/types" "5.6.0" @@ -804,12 +790,12 @@ acorn-jsx@^5.0.0, acorn-jsx@^5.3.1: version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn-node@^1.6.1: version "1.8.2" - resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" + resolved "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz" integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== dependencies: acorn "^7.0.0" @@ -818,22 +804,22 @@ acorn-node@^1.6.1: acorn-walk@^7.0.0: version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== acorn@^7.0.0: version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== acorn@^8.0.0, acorn@^8.6.0: version "8.6.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.6.0.tgz#e3692ba0eb1a0c83eaa4f37f5fa7368dd7142895" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz" integrity sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw== aggregate-error@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== dependencies: clean-stack "^2.0.0" @@ -841,7 +827,7 @@ aggregate-error@^3.0.0: ajv@^6.10.0, ajv@^6.12.4: version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== dependencies: fast-deep-equal "^3.1.1" @@ -851,7 +837,7 @@ ajv@^6.10.0, ajv@^6.12.4: all-contributors-cli@^6.20.0: version "6.20.0" - resolved "https://registry.yarnpkg.com/all-contributors-cli/-/all-contributors-cli-6.20.0.tgz#9bc98dda38cb29cfe8afc8a78c004e14af25d2f6" + resolved "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.20.0.tgz" integrity sha512-trEQlL1s1u8FSWSwY2w9uL4GCG7Fo9HIW5rm5LtlE0SQHSolfXQBzJib07Qes5j52/t72wjuE6sEKkuRrwiuuQ== dependencies: "@babel/runtime" "^7.7.6" @@ -867,48 +853,48 @@ all-contributors-cli@^6.20.0: ansi-colors@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz" integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== ansi-escapes@^4.2.1: version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" ansi-red@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c" + resolved "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz" integrity sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw= dependencies: ansi-wrap "0.1.0" ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-regex@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz" integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" ansi-wrap@0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" + resolved "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= anymatch@~3.1.2: version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== dependencies: normalize-path "^3.0.0" @@ -916,24 +902,24 @@ anymatch@~3.1.2: arg@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.1.tgz#eb0c9a8f77786cad2af8ff2b862899842d7b6adb" + resolved "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz" integrity sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA== argparse@^1.0.10, argparse@^1.0.7: version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== dependencies: sprintf-js "~1.0.2" argparse@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== aria-query@^4.2.2: version "4.2.2" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" + resolved "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz" integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== dependencies: "@babel/runtime" "^7.10.2" @@ -941,12 +927,12 @@ aria-query@^4.2.2: array-each@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" + resolved "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz" integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8= array-includes@^3.1.3, array-includes@^3.1.4: version "3.1.4" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9" + resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz" integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw== dependencies: call-bind "^1.0.2" @@ -957,27 +943,27 @@ array-includes@^3.1.3, array-includes@^3.1.4: array-slice@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" + resolved "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz" integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== array-timsort@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/array-timsort/-/array-timsort-1.0.3.tgz#3c9e4199e54fb2b9c3fe5976396a21614ef0d926" + resolved "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz" integrity sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ== array-union@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== array-union@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-3.0.1.tgz#da52630d327f8b88cfbfb57728e2af5cd9b6b975" + resolved "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz" integrity sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw== array.prototype.flat@^1.2.5: version "1.2.5" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13" + resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz" integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg== dependencies: call-bind "^1.0.2" @@ -986,7 +972,7 @@ array.prototype.flat@^1.2.5: array.prototype.flatmap@^1.2.5: version "1.2.5" - resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446" + resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz" integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA== dependencies: call-bind "^1.0.0" @@ -995,29 +981,34 @@ array.prototype.flatmap@^1.2.5: ast-types-flow@^0.0.7: version "0.0.7" - resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz" integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= astring@^1.6.0: version "1.8.1" - resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.1.tgz#a91c4afd4af3523e11f31242a3d5d9af62bb6cc6" + resolved "https://registry.npmjs.org/astring/-/astring-1.8.1.tgz" integrity sha512-Aj3mbwVzj7Vve4I/v2JYOPFkCGM2YS7OqQTNSxmUR+LECRpokuPgAYghePgr6SALDo5bD5DlfbSaYjOzGJZOLQ== async@^3.0.1: version "3.2.3" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.3.tgz#ac53dafd3f4720ee9e8a160628f18ea91df196c9" + resolved "https://registry.npmjs.org/async/-/async-3.2.3.tgz" integrity sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g== +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + autolinker@~0.28.0: version "0.28.1" - resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-0.28.1.tgz#0652b491881879f0775dace0cdca3233942a4e47" + resolved "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz" integrity sha1-BlK0kYgYefB3XazgzcoyM5QqTkc= dependencies: gulp-header "^1.7.1" autoprefixer@^10.4.7: version "10.4.7" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.7.tgz#1db8d195f41a52ca5069b7593be167618edbbedf" + resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz" integrity sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA== dependencies: browserslist "^4.20.3" @@ -1029,17 +1020,25 @@ autoprefixer@^10.4.7: axe-core@^4.3.5: version "4.3.5" - resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.3.5.tgz#78d6911ba317a8262bfee292aeafcc1e04b49cc5" + resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz" integrity sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA== +axios@^0.27.2: + version "0.27.2" + resolved "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz" + integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== + dependencies: + follow-redirects "^1.14.9" + form-data "^4.0.0" + axobject-query@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" + resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz" integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== babel-plugin-superjson-next@^0.4.3: version "0.4.3" - resolved "https://registry.yarnpkg.com/babel-plugin-superjson-next/-/babel-plugin-superjson-next-0.4.3.tgz#3d35d36443ad1e4fe4529a4567f264391d2a93fd" + resolved "https://registry.npmjs.org/babel-plugin-superjson-next/-/babel-plugin-superjson-next-0.4.3.tgz" integrity sha512-wfPsTPnEn1YaEkmaoomN4Z/Hm6nWVWFkASdetP/Ju2aPz/8XguAJwuThZIBH9dMTtXnyGXnbJufPQ0wRha0QcA== dependencies: "@babel/helper-module-imports" "^7.13.12" @@ -1048,27 +1047,27 @@ babel-plugin-superjson-next@^0.4.3: bail@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d" + resolved "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz" integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base64-js@^1.3.1: version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== binary-extensions@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== bl@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz" integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== dependencies: buffer "^5.5.0" @@ -1077,7 +1076,7 @@ bl@^4.1.0: bl@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-5.0.0.tgz#6928804a41e9da9034868e1c50ca88f21f57aea2" + resolved "https://registry.npmjs.org/bl/-/bl-5.0.0.tgz" integrity sha512-8vxFNZ0pflFfi0WXA3WQXlj6CaMEwsmh63I1CNp0q+wWv8sD0ARx1KovSQd0l2GkwrMIOyedq0EF1FxI+RCZLQ== dependencies: buffer "^6.0.3" @@ -1086,7 +1085,7 @@ bl@^5.0.0: brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -1094,14 +1093,14 @@ brace-expansion@^1.1.7: braces@^3.0.1, braces@~3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" browserslist@^4.20.3: version "4.20.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.3.tgz#eb7572f49ec430e054f56d52ff0ebe9be915f8bf" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.20.3.tgz" integrity sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg== dependencies: caniuse-lite "^1.0.30001332" @@ -1112,12 +1111,12 @@ browserslist@^4.20.3: buffer-from@^1.0.0: version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== buffer@^5.5.0: version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== dependencies: base64-js "^1.3.1" @@ -1125,7 +1124,7 @@ buffer@^5.5.0: buffer@^6.0.3: version "6.0.3" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz" integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== dependencies: base64-js "^1.3.1" @@ -1133,7 +1132,7 @@ buffer@^6.0.3: call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== dependencies: function-bind "^1.1.1" @@ -1141,12 +1140,12 @@ call-bind@^1.0.0, call-bind@^1.0.2: callsites@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camel-case@^4.1.2: version "4.1.2" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + resolved "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz" integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== dependencies: pascal-case "^3.1.2" @@ -1154,27 +1153,27 @@ camel-case@^4.1.2: camelcase-css@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== camelcase@^5.0.0: version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== caniuse-lite@^1.0.30001283: version "1.0.30001309" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001309.tgz#e0ee78b9bec0704f67304b00ff3c5c0c768a9f62" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001309.tgz" integrity sha512-Pl8vfigmBXXq+/yUz1jUwULeq9xhMJznzdc/xwl4WclDAuebcTHVefpz8lE/bMI+UN7TOkSSe7B7RnZd6+dzjA== caniuse-lite@^1.0.30001332, caniuse-lite@^1.0.30001335: version "1.0.30001342" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001342.tgz#87152b1e3b950d1fbf0093e23f00b6c8e8f1da96" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001342.tgz" integrity sha512-bn6sOCu7L7jcbBbyNhLg0qzXdJ/PMbybZTH/BA6Roet9wxYRm6Tr9D0s0uhLkOZ6MSG+QU6txUgdpr3MXIVqjA== capital-case@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669" + resolved "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz" integrity sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A== dependencies: no-case "^3.0.4" @@ -1183,12 +1182,12 @@ capital-case@^1.0.4: ccount@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5" + resolved "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz" integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -1196,12 +1195,12 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: chalk@^5.0.0: version "5.0.1" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.0.1.tgz#ca57d71e82bb534a296df63bbacc4a1c22b2a4b6" + resolved "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz" integrity sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w== change-case@^4.1.2: version "4.1.2" - resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" + resolved "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz" integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A== dependencies: camel-case "^4.1.2" @@ -1219,32 +1218,32 @@ change-case@^4.1.2: character-entities-html4@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" + resolved "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz" integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== character-entities-legacy@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b" + resolved "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz" integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== character-entities@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.1.tgz#98724833e1e27990dee0bd0f2b8a859c3476aac7" + resolved "https://registry.npmjs.org/character-entities/-/character-entities-2.0.1.tgz" integrity sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ== character-reference-invalid@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9" + resolved "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz" integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw== chardet@^0.7.0: version "0.7.0" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== "chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.3: version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== dependencies: anymatch "~3.1.2" @@ -1259,48 +1258,48 @@ chardet@^0.7.0: classnames@^2.3.1: version "2.3.1" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" + resolved "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz" integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== clean-stack@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== cli-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== dependencies: restore-cursor "^3.1.0" cli-cursor@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-4.0.0.tgz#3cecfe3734bf4fe02a8361cbdc0f6fe28c6a57ea" + resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz" integrity sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg== dependencies: restore-cursor "^4.0.0" cli-spinners@^2.5.0, cli-spinners@^2.6.1: version "2.6.1" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d" + resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz" integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g== cli-width@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz" integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== clipanion@^3.2.0-rc.10: version "3.2.0-rc.10" - resolved "https://registry.yarnpkg.com/clipanion/-/clipanion-3.2.0-rc.10.tgz#d1a288c71659decd3fc7ff72e100198c082d8748" + resolved "https://registry.npmjs.org/clipanion/-/clipanion-3.2.0-rc.10.tgz" integrity sha512-OrDP3/bLGxf2BSGarzvqm4PrH5Pii7YoLNt/FnuJWJcnL735m2UOWEV2dCNcJ5QBgmoZF7X7vU7hetALmIqs4Q== dependencies: typanion "^3.3.1" cliui@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== dependencies: string-width "^4.2.0" @@ -1309,7 +1308,7 @@ cliui@^6.0.0: cliui@^7.0.2: version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== dependencies: string-width "^4.2.0" @@ -1318,34 +1317,46 @@ cliui@^7.0.2: clone@^1.0.2: version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= +clsx@^1.1.1: + version "1.2.1" + resolved "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz" + integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== + coffee-script@^1.12.4: version "1.12.7" - resolved "https://registry.yarnpkg.com/coffee-script/-/coffee-script-1.12.7.tgz#c05dae0cb79591d05b3070a8433a98c9a89ccc53" + resolved "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz" integrity sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw== color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" color-name@^1.1.4, color-name@~1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + comma-separated-tokens@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz#d4c25abb679b7751c880be623c1179780fe1dd98" + resolved "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz" integrity sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg== comment-json@^4.2.2: version "4.2.2" - resolved "https://registry.yarnpkg.com/comment-json/-/comment-json-4.2.2.tgz#5fae70a94e0c8f84a077bd31df5aa5269252f293" + resolved "https://registry.npmjs.org/comment-json/-/comment-json-4.2.2.tgz" integrity sha512-H8T+kl3nZesZu41zO2oNXIJWojNeK3mHxCLrsBNu6feksBXsgb+PtYz5daP5P86A0F3sz3840KVYehr04enISQ== dependencies: array-timsort "^1.0.3" @@ -1356,12 +1367,12 @@ comment-json@^4.2.2: concat-map@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= concat-stream@^1.5.2: version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz" integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== dependencies: buffer-from "^1.0.0" @@ -1371,14 +1382,14 @@ concat-stream@^1.5.2: concat-with-sourcemaps@*: version "1.1.0" - resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz#d4ea93f05ae25790951b99e7b3b09e3908a4082e" + resolved "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz" integrity sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg== dependencies: source-map "^0.6.1" constant-case@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1" + resolved "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz" integrity sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ== dependencies: no-case "^3.0.4" @@ -1387,7 +1398,7 @@ constant-case@^3.0.4: contentlayer@^0.2.3: version "0.2.3" - resolved "https://registry.yarnpkg.com/contentlayer/-/contentlayer-0.2.3.tgz#5a4866f0604048f7dbf7a23b95c867192c2d3476" + resolved "https://registry.npmjs.org/contentlayer/-/contentlayer-0.2.3.tgz" integrity sha512-sjB3QR04uhVMhldGAu7WrhcYE8PbtP3t6YY3VmDmgr/UkptLQxmpr+YuZkZ6Nwjt+m9NpAso4t8V6RUyWqThHw== dependencies: "@contentlayer/cli" "0.2.3" @@ -1398,24 +1409,31 @@ contentlayer@^0.2.3: copy-anything@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-3.0.2.tgz#7189171ff5e1893b2287e8bf574b8cd448ed50b1" + resolved "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.2.tgz" integrity sha512-CzATjGXzUQ0EvuvgOCI6A4BGOo2bcVx8B+eC2nF862iv9fopnPQwlrbACakNCHRIJbCSBj+J/9JeDf60k64MkA== dependencies: is-what "^4.1.6" +copy-to-clipboard@^3.3.1: + version "3.3.2" + resolved "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.2.tgz" + integrity sha512-Vme1Z6RUDzrb6xAI7EZlVZ5uvOk2F//GaxKUxajDqm9LhOVM1inxNAD2vy+UZDYsd0uyA9s7b3/FVZPSxqrCfg== + dependencies: + toggle-selection "^1.0.6" + core-js-pure@^3.19.0: version "3.19.3" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.19.3.tgz#c69b2b36b58927317824994b532ec3f0f7e49607" + resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.19.3.tgz" integrity sha512-N3JruInmCyt7EJj5mAq3csCgGYgiSqu7p7TQp2KOztr180/OAIxyIvL1FCjzgmQk/t3Yniua50Fsak7FShI9lA== core-util-is@^1.0.3, core-util-is@~1.0.0: version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== cross-spawn@^7.0.2: version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== dependencies: path-key "^3.1.0" @@ -1424,101 +1442,101 @@ cross-spawn@^7.0.2: cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== csstype@^3.0.2: - version "3.0.11" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.11.tgz#d66700c5eacfac1940deb4e3ee5642792d85cd33" - integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw== + version "3.1.1" + resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz" + integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== damerau-levenshtein@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz#64368003512a1a6992593741a09a9d31a836f55d" + resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz" integrity sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw== data-uri-to-buffer@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz" integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== date-fns-tz@^1.3.1: version "1.3.3" - resolved "https://registry.yarnpkg.com/date-fns-tz/-/date-fns-tz-1.3.3.tgz#7884a4b3ed6cd95bfd81831d608e5ef8be500c86" + resolved "https://registry.npmjs.org/date-fns-tz/-/date-fns-tz-1.3.3.tgz" integrity sha512-Gks46gwbSauBQnV3Oofluj1wTm8J0tM7sbSJ9P+cJq/ZnTCpMohTKmmO5Tn+jQ7dyn0+b8G7cY4O2DZ5P/LXcA== date-fns@2.x: version "2.27.0" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.27.0.tgz#e1ff3c3ddbbab8a2eaadbb6106be2929a5a2d92b" + resolved "https://registry.npmjs.org/date-fns/-/date-fns-2.27.0.tgz" integrity sha512-sj+J0Mo2p2X1e306MHq282WS4/A8Pz/95GIFcsPNMPMZVI3EUrAdSv90al1k+p74WGLCruMXk23bfEDZa71X9Q== debug@^2.6.9: version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" debug@^3.2.7: version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== dependencies: ms "^2.1.1" debug@^4.0.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2: version "4.3.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz" integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== dependencies: ms "2.1.2" debug@^4.3.4: version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" decamelize@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= decode-named-character-reference@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.1.tgz#57b2bd9112659cacbc449d3577d7dadb8e1f3d1b" + resolved "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.1.tgz" integrity sha512-YV/0HQHreRwKb7uBopyIkLG17jG6Sv2qUchk9qSoVJ2f+flwRsPNBO0hAnjt6mTNYUT+vw9Gy2ihXg4sUWPi2w== dependencies: character-entities "^2.0.0" deep-is@^0.1.3: version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== defaults@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz" integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= dependencies: clone "^1.0.2" define-properties@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== dependencies: object-keys "^1.0.12" defined@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + resolved "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz" integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= del@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/del/-/del-6.0.0.tgz#0b40d0332cea743f1614f818be4feb717714c952" + resolved "https://registry.npmjs.org/del/-/del-6.0.0.tgz" integrity sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ== dependencies: globby "^11.0.1" @@ -1530,19 +1548,24 @@ del@^6.0.0: rimraf "^3.0.2" slash "^3.0.0" +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + dequal@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.2.tgz#85ca22025e3a87e65ef75a7a437b35284a7e319d" + resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz" integrity sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug== detect-file@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" + resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz" integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= detective@^5.2.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" + resolved "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz" integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== dependencies: acorn-node "^1.6.1" @@ -1551,48 +1574,48 @@ detective@^5.2.0: diacritics-map@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/diacritics-map/-/diacritics-map-0.1.0.tgz#6dfc0ff9d01000a2edf2865371cac316e94977af" + resolved "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz" integrity sha1-bfwP+dAQAKLt8oZTccrDFulJd68= didyoumean@^1.2.1, didyoumean@^1.2.2: version "1.2.2" - resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz" integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== diff@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz" integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== dir-glob@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" dlv@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz" integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== doctrine@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== dependencies: esutils "^2.0.2" doctrine@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== dependencies: esutils "^2.0.2" dot-case@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz" integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== dependencies: no-case "^3.0.4" @@ -1600,29 +1623,29 @@ dot-case@^3.0.4: electron-to-chromium@^1.4.118: version "1.4.138" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.138.tgz#3ec41ca589aaf505dfe2034fde913329af801730" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.138.tgz" integrity sha512-IOyp2Seq3w4QLln+yZWcMF3VXhhduz4bwg9gfI+CnP5TkzwNXQ8FCZuwwPsnes73AfWdf5J2n2OXdUwDUspDPQ== emoji-regex@^8.0.0: version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== emoji-regex@^9.2.2: version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== enquirer@^2.3.5: version "2.3.6" - resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== dependencies: ansi-colors "^4.1.1" es-abstract@^1.19.0, es-abstract@^1.19.1: version "1.19.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz" integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w== dependencies: call-bind "^1.0.2" @@ -1648,7 +1671,7 @@ es-abstract@^1.19.0, es-abstract@^1.19.1: es-to-primitive@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== dependencies: is-callable "^1.1.4" @@ -1672,7 +1695,7 @@ esbuild-darwin-64@0.14.36: esbuild-darwin-arm64@0.14.36: version "0.14.36" - resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.36.tgz#2a8040c2e465131e5281034f3c72405e643cb7b2" + resolved "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.36.tgz" integrity sha512-q8fY4r2Sx6P0Pr3VUm//eFYKVk07C5MHcEinU1BjyFnuYz4IxR/03uBbDwluR6ILIHnZTE7AkTUWIdidRi1Jjw== esbuild-freebsd-64@0.14.36: @@ -1757,7 +1780,7 @@ esbuild-windows-arm64@0.14.36: "esbuild@0.11.x || 0.12.x || 0.13.x || 0.14.x": version "0.14.36" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.36.tgz#0023a73eab57886ac5605df16ee421e471a971b3" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.14.36.tgz" integrity sha512-HhFHPiRXGYOCRlrhpiVDYKcFJRdO0sBElZ668M4lh2ER0YgnkLxECuFe7uWCf23FrcLc59Pqr7dHkTqmRPDHmw== optionalDependencies: esbuild-android-64 "0.14.36" @@ -1783,27 +1806,27 @@ esbuild-windows-arm64@0.14.36: escalade@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= escape-string-regexp@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== escape-string-regexp@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz" integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== eslint-config-next@^12.0.7: version "12.0.7" - resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.0.7.tgz#985f06c3d749673f6b4b214db6b9321da1bf0b5f" + resolved "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-12.0.7.tgz" integrity sha512-kWOaym5qjyzR190zFKkZMaHetmiRORmzJiKML7Kr9CL213S6SwkrHHCEL58TRdpx0NA+HzrsFR9zgcV2pvV2Yg== dependencies: "@next/eslint-plugin-next" "12.0.7" @@ -1818,7 +1841,7 @@ eslint-config-next@^12.0.7: eslint-import-resolver-node@^0.3.4, eslint-import-resolver-node@^0.3.6: version "0.3.6" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" + resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz" integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== dependencies: debug "^3.2.7" @@ -1826,7 +1849,7 @@ eslint-import-resolver-node@^0.3.4, eslint-import-resolver-node@^0.3.6: eslint-import-resolver-typescript@^2.4.0: version "2.5.0" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.5.0.tgz#07661966b272d14ba97f597b51e1a588f9722f0a" + resolved "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.5.0.tgz" integrity sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ== dependencies: debug "^4.3.1" @@ -1837,7 +1860,7 @@ eslint-import-resolver-typescript@^2.4.0: eslint-module-utils@^2.7.1: version "2.7.1" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.1.tgz#b435001c9f8dd4ab7f6d0efcae4b9696d4c24b7c" + resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.1.tgz" integrity sha512-fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ== dependencies: debug "^3.2.7" @@ -1846,7 +1869,7 @@ eslint-module-utils@^2.7.1: eslint-plugin-import@^2.25.2: version "2.25.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.25.3.tgz#a554b5f66e08fb4f6dc99221866e57cfff824766" + resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.3.tgz" integrity sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg== dependencies: array-includes "^3.1.4" @@ -1865,7 +1888,7 @@ eslint-plugin-import@^2.25.2: eslint-plugin-jsx-a11y@^6.5.1: version "6.5.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8" + resolved "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz" integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g== dependencies: "@babel/runtime" "^7.16.3" @@ -1883,12 +1906,12 @@ eslint-plugin-jsx-a11y@^6.5.1: eslint-plugin-react-hooks@^4.3.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172" + resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz" integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA== eslint-plugin-react@^7.27.0: version "7.27.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.27.1.tgz#469202442506616f77a854d91babaae1ec174b45" + resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.27.1.tgz" integrity sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA== dependencies: array-includes "^3.1.4" @@ -1908,7 +1931,7 @@ eslint-plugin-react@^7.27.0: eslint-scope@^5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== dependencies: esrecurse "^4.3.0" @@ -1916,7 +1939,7 @@ eslint-scope@^5.1.1: eslint-scope@^7.1.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.0.tgz#c1f6ea30ac583031f203d65c73e723b01298f153" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.0.tgz" integrity sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg== dependencies: esrecurse "^4.3.0" @@ -1924,29 +1947,29 @@ eslint-scope@^7.1.0: eslint-utils@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz" integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== dependencies: eslint-visitor-keys "^2.0.0" eslint-visitor-keys@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz#eee4acea891814cda67a7d8812d9647dd0179af2" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz" integrity sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA== eslint-visitor-keys@^3.3.0: version "3.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz" integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== eslint@8.4.0: version "8.4.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.4.0.tgz#2fa01b271cafc28addc2719e551acff5e89f5230" + resolved "https://registry.npmjs.org/eslint/-/eslint-8.4.0.tgz" integrity sha512-kv0XQcAQJL/VD9THQKhTQZVqkJKA+tIj/v2ZKNaIHRAADcJWFb+B/BAewUYuF6UVg1s2xC5qXVoDk0G8sKGeTA== dependencies: "@eslint/eslintrc" "^1.0.5" @@ -1990,7 +2013,7 @@ eslint@8.4.0: espree@^9.2.0: version "9.2.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.2.0.tgz#c50814e01611c2d0f8bd4daa83c369eabba80dbc" + resolved "https://registry.npmjs.org/espree/-/espree-9.2.0.tgz" integrity sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg== dependencies: acorn "^8.6.0" @@ -1999,43 +2022,43 @@ espree@^9.2.0: esprima@^4.0.0, esprima@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== dependencies: estraverse "^5.1.0" esrecurse@^4.3.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: estraverse "^5.2.0" estraverse@^4.1.1: version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== estree-util-attach-comments@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-2.0.0.tgz#2c06d484dfcf841b5946bcb84d5412cbcd544e22" + resolved "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.0.0.tgz" integrity sha512-kT9YVRvlt2ewPp9BazfIIgXMGsXOEpOm57bK8aa4F3eOEndMml2JAETjWaG3SZYHmC6axSNIzHGY718dYwIuVg== dependencies: "@types/estree" "^0.0.46" estree-util-build-jsx@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-2.0.0.tgz#4903e2a923ebc791f86e78ec3687d01715dec902" + resolved "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.0.0.tgz" integrity sha512-d49hPGqBCJF/bF06g1Ywg7zjH1mrrUdPPrixBlKBxcX4WvMYlUUJ8BkrwlzWc8/fm6XqGgk5jilhgeZBDEGwOQ== dependencies: "@types/estree-jsx" "^0.0.1" @@ -2044,24 +2067,24 @@ estree-util-build-jsx@^2.0.0: estree-util-is-identifier-name@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz#2e3488ea06d9ea2face116058864f6370b37456d" + resolved "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz" integrity sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ== estree-util-is-identifier-name@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.0.tgz#e2d3d2ae3032c017b2112832bfc5d8ba938c8010" + resolved "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.0.tgz" integrity sha512-aXXZFVMnBBDRP81vS4YtAYJ0hUkgEsXea7lNKWCOeaAquGb1Jm2rcONPB5fpzwgbNxulTvrWuKnp9UElUGAKeQ== estree-util-value-to-estree@^1.0.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz#1d3125594b4d6680f666644491e7ac1745a3df49" + resolved "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz" integrity sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw== dependencies: is-plain-obj "^3.0.0" estree-util-visit@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.1.0.tgz#c0ea7942c40ac7889a77b57a11e92f987744bc6f" + resolved "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.1.0.tgz" integrity sha512-3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ== dependencies: "@types/estree-jsx" "^0.0.1" @@ -2069,43 +2092,43 @@ estree-util-visit@^1.0.0: estree-walker@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.0.tgz#ca4b284de9dffb255288c76a44870b360faf14f9" + resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.0.tgz" integrity sha512-s6ceX0NFiU/vKPiKvFdR83U1Zffu7upwZsGwpoqfg5rbbq1l50WQ5hCeIvM6E6oD4shUHCYMsiFPns4Jk0YfMQ== esutils@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== expand-range@^1.8.1: version "1.8.2" - resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz" integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= dependencies: fill-range "^2.1.0" expand-tilde@^2.0.0, expand-tilde@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" + resolved "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz" integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= dependencies: homedir-polyfill "^1.0.1" extend-shallow@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= dependencies: is-extendable "^0.1.0" extend@^3.0.0, extend@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== external-editor@^3.0.3: version "3.1.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz" integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== dependencies: chardet "^0.7.0" @@ -2114,12 +2137,12 @@ external-editor@^3.0.3: fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.1.1: version "3.2.7" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz" integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -2130,7 +2153,7 @@ fast-glob@^3.1.1: fast-glob@^3.2.11, fast-glob@^3.2.7, fast-glob@^3.2.9: version "3.2.11" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz" integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -2141,31 +2164,31 @@ fast-glob@^3.2.11, fast-glob@^3.2.7, fast-glob@^3.2.9: fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-levenshtein@^2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= fastq@^1.6.0: version "1.13.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" + resolved "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz" integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== dependencies: reusify "^1.0.4" fault@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/fault/-/fault-2.0.1.tgz#d47ca9f37ca26e4bd38374a7c500b5a384755b6c" + resolved "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz" integrity sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ== dependencies: format "^0.2.0" fetch-blob@^3.1.2, fetch-blob@^3.1.4: version "3.1.5" - resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.1.5.tgz#0077bf5f3fcdbd9d75a0b5362f77dbb743489863" + resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.1.5.tgz" integrity sha512-N64ZpKqoLejlrwkIAnb9iLSA3Vx/kjgzpcDhygcqJ2KKjky8nCgUQ+dzXtbrLaWZGZNmNfQTsiQ0weZ1svglHg== dependencies: node-domexception "^1.0.0" @@ -2173,21 +2196,21 @@ fetch-blob@^3.1.2, fetch-blob@^3.1.4: figures@^3.0.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== dependencies: escape-string-regexp "^1.0.5" file-entry-cache@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: flat-cache "^3.0.4" fill-range@^2.1.0: version "2.2.4" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz" integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== dependencies: is-number "^2.1.0" @@ -2198,21 +2221,21 @@ fill-range@^2.1.0: fill-range@^7.0.1: version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== dependencies: to-regex-range "^5.0.1" find-up@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz" integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= dependencies: locate-path "^2.0.0" find-up@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== dependencies: locate-path "^5.0.0" @@ -2220,7 +2243,7 @@ find-up@^4.1.0: findup-sync@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-5.0.0.tgz#54380ad965a7edca00cc8f63113559aadc541bd2" + resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz" integrity sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ== dependencies: detect-file "^1.0.0" @@ -2230,7 +2253,7 @@ findup-sync@^5.0.0: fined@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/fined/-/fined-2.0.0.tgz#6846563ed96879ce6de6c85c715c42250f8d8089" + resolved "https://registry.npmjs.org/fined/-/fined-2.0.0.tgz" integrity sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A== dependencies: expand-tilde "^2.0.2" @@ -2241,12 +2264,12 @@ fined@^2.0.0: flagged-respawn@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-2.0.0.tgz#abf39719dcfe1ac06c86c9466081c541c682987b" + resolved "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-2.0.0.tgz" integrity sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA== flat-cache@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== dependencies: flatted "^3.1.0" @@ -2254,41 +2277,55 @@ flat-cache@^3.0.4: flatted@^3.1.0: version "3.2.4" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.4.tgz#28d9969ea90661b5134259f312ab6aa7929ac5e2" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz" integrity sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw== +follow-redirects@^1.14.9: + version "1.15.2" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + for-in@^1.0.1, for-in@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz" integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= for-own@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" + resolved "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz" integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= dependencies: for-in "^1.0.1" +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + format@^0.2.0: version "0.2.2" - resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" + resolved "https://registry.npmjs.org/format/-/format-0.2.2.tgz" integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs= formdata-polyfill@^4.0.10: version "4.0.10" - resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz" integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== dependencies: fetch-blob "^3.1.2" fraction.js@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" + resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz" integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== framer-motion@^6.3.13: version "6.3.13" - resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-6.3.13.tgz#a1ac202ab41bdf25c566b02a2ab8ff8ee200ebc4" + resolved "https://registry.npmjs.org/framer-motion/-/framer-motion-6.3.13.tgz" integrity sha512-z6UIxENuqa9bh/xE1fit7IUT+07TKSp81TE+C0DDBe9ly4bdEafpZUbcDZxNiN6UBU5hYdEY7rKhk+X1JlIkhg== dependencies: framesync "6.0.1" @@ -2301,39 +2338,39 @@ framer-motion@^6.3.13: framesync@6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/framesync/-/framesync-6.0.1.tgz#5e32fc01f1c42b39c654c35b16440e07a25d6f20" + resolved "https://registry.npmjs.org/framesync/-/framesync-6.0.1.tgz" integrity sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA== dependencies: tslib "^2.1.0" fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= fsevents@~2.3.2: version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== function-bind@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== functional-red-black-tree@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= get-caller-file@^2.0.1, get-caller-file@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== dependencies: function-bind "^1.1.1" @@ -2342,7 +2379,7 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: get-symbol-description@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== dependencies: call-bind "^1.0.2" @@ -2350,33 +2387,33 @@ get-symbol-description@^1.0.0: github-slugger@^1.1.1: version "1.4.0" - resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.4.0.tgz#206eb96cdb22ee56fdc53a28d5a302338463444e" + resolved "https://registry.npmjs.org/github-slugger/-/github-slugger-1.4.0.tgz" integrity sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ== glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob-parent@^6.0.1, glob-parent@^6.0.2: version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" glob-promise@^4.2.2: version "4.2.2" - resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-4.2.2.tgz#15f44bcba0e14219cd93af36da6bb905ff007877" + resolved "https://registry.npmjs.org/glob-promise/-/glob-promise-4.2.2.tgz" integrity sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw== dependencies: "@types/glob" "^7.1.3" glob@7.1.7: version "7.1.7" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== dependencies: fs.realpath "^1.0.0" @@ -2388,7 +2425,7 @@ glob@7.1.7: glob@^7.1.3, glob@^7.1.7, glob@^7.2.0: version "7.2.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== dependencies: fs.realpath "^1.0.0" @@ -2400,7 +2437,7 @@ glob@^7.1.3, glob@^7.1.7, glob@^7.2.0: global-modules@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" + resolved "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz" integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== dependencies: global-prefix "^1.0.1" @@ -2409,7 +2446,7 @@ global-modules@^1.0.0: global-prefix@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" + resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz" integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= dependencies: expand-tilde "^2.0.2" @@ -2420,14 +2457,14 @@ global-prefix@^1.0.1: globals@^13.6.0, globals@^13.9.0: version "13.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.0.tgz#4d733760304230a0082ed96e21e5c565f898089e" + resolved "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz" integrity sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg== dependencies: type-fest "^0.20.2" globby@^11.0.1, globby@^11.1.0: version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -2439,7 +2476,7 @@ globby@^11.0.1, globby@^11.1.0: globby@^11.0.4: version "11.0.4" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + resolved "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz" integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== dependencies: array-union "^2.1.0" @@ -2451,7 +2488,7 @@ globby@^11.0.4: globby@^12.0.2: version "12.2.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-12.2.0.tgz#2ab8046b4fba4ff6eede835b29f678f90e3d3c22" + resolved "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz" integrity sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA== dependencies: array-union "^3.0.1" @@ -2463,12 +2500,12 @@ globby@^12.0.2: graceful-fs@^4.2.4: version "4.2.9" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.9.tgz#041b05df45755e587a24942279b9d113146e1c96" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz" integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ== gray-matter@^2.1.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-2.1.1.tgz#3042d9adec2a1ded6a7707a9ed2380f8a17a430e" + resolved "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz" integrity sha1-MELZrewqHe1qdwep7SOA+KF6Qw4= dependencies: ansi-red "^0.1.1" @@ -2479,7 +2516,7 @@ gray-matter@^2.1.0: gray-matter@^4.0.3: version "4.0.3" - resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-4.0.3.tgz#e893c064825de73ea1f5f7d88c7a9f7274288798" + resolved "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz" integrity sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q== dependencies: js-yaml "^3.13.1" @@ -2489,7 +2526,7 @@ gray-matter@^4.0.3: gulp-header@^1.7.1: version "1.8.12" - resolved "https://registry.yarnpkg.com/gulp-header/-/gulp-header-1.8.12.tgz#ad306be0066599127281c4f8786660e705080a84" + resolved "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz" integrity sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ== dependencies: concat-with-sourcemaps "*" @@ -2498,7 +2535,7 @@ gulp-header@^1.7.1: handlebars@^4.4.3: version "4.7.7" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" + resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz" integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== dependencies: minimist "^1.2.5" @@ -2510,46 +2547,46 @@ handlebars@^4.4.3: has-bigints@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz" integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-own-prop@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/has-own-prop/-/has-own-prop-2.0.0.tgz#f0f95d58f65804f5d218db32563bb85b8e0417af" + resolved "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz" integrity sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ== has-symbols@^1.0.1, has-symbols@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== has-tostringtag@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== dependencies: has-symbols "^1.0.2" has@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" hash-wasm@^4.9.0: version "4.9.0" - resolved "https://registry.yarnpkg.com/hash-wasm/-/hash-wasm-4.9.0.tgz#7e9dcc9f7d6bd0cc802f2a58f24edce999744206" + resolved "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz" integrity sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w== hast-util-from-parse5@^7.0.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-7.1.0.tgz#c129dd3a24dd8a867ab8a029ca47e27aa54864b7" + resolved "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.0.tgz" integrity sha512-m8yhANIAccpU4K6+121KpPP55sSl9/samzQSQGpb0mTExcNh2WlvjtMwSWFhg6uqD4Rr6Nfa8N6TMypQM51rzQ== dependencies: "@types/hast" "^2.0.0" @@ -2563,19 +2600,19 @@ hast-util-from-parse5@^7.0.0: hast-util-has-property@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/hast-util-has-property/-/hast-util-has-property-2.0.0.tgz#c15cd6180f3e535540739fcc9787bcffb5708cae" + resolved "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-2.0.0.tgz" integrity sha512-4Qf++8o5v14us4Muv3HRj+Er6wTNGA/N9uCaZMty4JWvyFKLdhULrv4KE1b65AthsSO9TXSZnjuxS8ecIyhb0w== hast-util-heading-rank@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/hast-util-heading-rank/-/hast-util-heading-rank-2.1.0.tgz#c39f34fa8330ebfec03a08b5d5019ed56122029c" + resolved "https://registry.npmjs.org/hast-util-heading-rank/-/hast-util-heading-rank-2.1.0.tgz" integrity sha512-w+Rw20Q/iWp2Bcnr6uTrYU6/ftZLbHKhvc8nM26VIWpDqDMlku2iXUVTeOlsdoih/UKQhY7PHQ+vZ0Aqq8bxtQ== dependencies: "@types/hast" "^2.0.0" hast-util-is-element@^2.0.0: version "2.1.2" - resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz#fc0b0dc7cef3895e839b8d66979d57b0338c68f3" + resolved "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz" integrity sha512-thjnlGAnwP8ef/GSO1Q8BfVk2gundnc2peGQqEg2kUt/IqesiGg/5mSwN2fE7nLzy61pg88NG6xV+UrGOrx9EA== dependencies: "@types/hast" "^2.0.0" @@ -2583,14 +2620,14 @@ hast-util-is-element@^2.0.0: hast-util-parse-selector@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-3.1.0.tgz#a519e27e8b61bd5a98fad494ed06131ce68d9c3f" + resolved "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.0.tgz" integrity sha512-AyjlI2pTAZEOeu7GeBPZhROx0RHBnydkQIXlhnFzDi0qfXTmGUWoCYZtomHbrdrheV4VFUlPcfJ6LMF5T6sQzg== dependencies: "@types/hast" "^2.0.0" hast-util-to-estree@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-2.0.2.tgz#79c5bf588915610b3f0d47ca83a74dc0269c7dc2" + resolved "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.0.2.tgz" integrity sha512-UQrZVeBj6A9od0lpFvqHKNSH9zvDrNoyWKbveu1a2oSCXEDUI+3bnd6BoiQLPnLrcXXn/jzJ6y9hmJTTlvf8lQ== dependencies: "@types/estree-jsx" "^0.0.1" @@ -2610,7 +2647,7 @@ hast-util-to-estree@^2.0.0: hast-util-to-html@^8.0.0: version "8.0.3" - resolved "https://registry.yarnpkg.com/hast-util-to-html/-/hast-util-to-html-8.0.3.tgz#4e37580872e143ea9ce0dba87918b19e4ea997e3" + resolved "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-8.0.3.tgz" integrity sha512-/D/E5ymdPYhHpPkuTHOUkSatxr4w1ZKrZsG0Zv/3C2SRVT0JFJG53VS45AMrBtYk0wp5A7ksEhiC8QaOZM95+A== dependencies: "@types/hast" "^2.0.0" @@ -2626,19 +2663,19 @@ hast-util-to-html@^8.0.0: hast-util-to-string@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/hast-util-to-string/-/hast-util-to-string-2.0.0.tgz#b008b0a4ea472bf34dd390b7eea1018726ae152a" + resolved "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-2.0.0.tgz" integrity sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A== dependencies: "@types/hast" "^2.0.0" hast-util-whitespace@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz#4fc1086467cc1ef5ba20673cb6b03cec3a970f1c" + resolved "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz" integrity sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg== hastscript@^7.0.0: version "7.0.2" - resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-7.0.2.tgz#d811fc040817d91923448a28156463b2e40d590a" + resolved "https://registry.npmjs.org/hastscript/-/hastscript-7.0.2.tgz" integrity sha512-uA8ooUY4ipaBvKcMuPehTAB/YfFLSSzCwFSwT6ltJbocFUKH/GDHLN+tflq7lSRf9H86uOuxOFkh1KgIy3Gg2g== dependencies: "@types/hast" "^2.0.0" @@ -2649,7 +2686,7 @@ hastscript@^7.0.0: header-case@^2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/header-case/-/header-case-2.0.4.tgz#5a42e63b55177349cf405beb8d775acabb92c063" + resolved "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz" integrity sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q== dependencies: capital-case "^1.0.4" @@ -2657,63 +2694,63 @@ header-case@^2.0.4: hey-listen@^1.0.8: version "1.0.8" - resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68" + resolved "https://registry.npmjs.org/hey-listen/-/hey-listen-1.0.8.tgz" integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q== hoist-non-react-statics@^3.3.2: version "3.3.2" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== dependencies: react-is "^16.7.0" homedir-polyfill@^1.0.1: version "1.0.3" - resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" + resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz" integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== dependencies: parse-passwd "^1.0.0" html-void-elements@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-2.0.1.tgz#29459b8b05c200b6c5ee98743c41b979d577549f" + resolved "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.1.tgz" integrity sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A== iconv-lite@^0.4.24: version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" ieee754@^1.1.13, ieee754@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore@^4.0.6: version "4.0.6" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== ignore@^5.1.4: version "5.1.9" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.9.tgz#9ec1a5cbe8e1446ec60d4420060d43aa6e7382fb" + resolved "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz" integrity sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ== ignore@^5.1.9, ignore@^5.2.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz" integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== immutable@^4.0.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.1.0.tgz#f795787f0db780183307b9eb2091fcac1f6fafef" + resolved "https://registry.npmjs.org/immutable/-/immutable-4.1.0.tgz" integrity sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ== import-fresh@^3.0.0, import-fresh@^3.2.1: version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" @@ -2721,22 +2758,22 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= indent-string@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== inflection@^1.13.2: version "1.13.2" - resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.13.2.tgz#15e8c797c6c3dadf31aa658f8df8a4ea024798b0" + resolved "https://registry.npmjs.org/inflection/-/inflection-1.13.2.tgz" integrity sha512-cmZlljCRTBFouT8UzMzrGcVEvkv6D/wBdcdKG7J1QH5cXjtU75Dm+P27v9EKu/Y43UYyCJd1WC4zLebRrC8NBw== inflight@^1.0.4: version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= dependencies: once "^1.3.0" @@ -2744,22 +2781,22 @@ inflight@^1.0.4: inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ini@^1.3.4: version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== inline-style-parser@0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" + resolved "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz" integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== inquirer@^7.0.4: version "7.3.3" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" + resolved "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz" integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== dependencies: ansi-escapes "^4.2.1" @@ -2778,7 +2815,7 @@ inquirer@^7.0.4: inquirer@^8.2.0: version "8.2.1" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.1.tgz#e00022e3e8930a92662f760f020686530a84671d" + resolved "https://registry.npmjs.org/inquirer/-/inquirer-8.2.1.tgz" integrity sha512-pxhBaw9cyTFMjwKtkjePWDhvwzvrNGAw7En4hottzlPvz80GZaMZthdDU35aA6/f5FRZf3uhE057q8w1DE3V2g== dependencies: ansi-escapes "^4.2.1" @@ -2798,7 +2835,7 @@ inquirer@^8.2.0: internal-slot@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz" integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== dependencies: get-intrinsic "^1.1.0" @@ -2807,12 +2844,12 @@ internal-slot@^1.0.3: interpret@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" + resolved "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz" integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== is-absolute@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" + resolved "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz" integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== dependencies: is-relative "^1.0.0" @@ -2820,12 +2857,12 @@ is-absolute@^1.0.0: is-alphabetical@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b" + resolved "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz" integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ== is-alphanumerical@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875" + resolved "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz" integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw== dependencies: is-alphabetical "^2.0.0" @@ -2833,21 +2870,21 @@ is-alphanumerical@^2.0.0: is-bigint@^1.0.1: version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== dependencies: has-bigints "^1.0.1" is-binary-path@~2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== dependencies: binary-extensions "^2.0.0" is-boolean-object@^1.1.0: version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== dependencies: call-bind "^1.0.2" @@ -2855,160 +2892,160 @@ is-boolean-object@^1.1.0: is-buffer@^1.1.5: version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== is-buffer@^2.0.0: version "2.0.5" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" + resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz" integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== is-callable@^1.1.4, is-callable@^1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz" integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== is-core-module@^2.2.0, is-core-module@^2.8.0: version "2.8.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz#0321336c3d0925e497fd97f5d95cb114a5ccd548" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz" integrity sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== dependencies: has "^1.0.3" is-core-module@^2.8.1: version "2.9.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz" integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== dependencies: has "^1.0.3" is-date-object@^1.0.1: version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== dependencies: has-tostringtag "^1.0.0" is-decimal@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7" + resolved "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz" integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A== is-extendable@^0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= is-extendable@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz" integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== dependencies: is-plain-object "^2.0.4" is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= is-fullwidth-code-point@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-hexadecimal@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027" + resolved "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz" integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== is-interactive@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz" integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== is-interactive@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-2.0.0.tgz#40c57614593826da1100ade6059778d597f16e90" + resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz" integrity sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ== is-negative-zero@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz" integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== is-number-object@^1.0.4: version "1.0.6" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz" integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== dependencies: has-tostringtag "^1.0.0" is-number@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz" integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= dependencies: kind-of "^3.0.2" is-number@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" + resolved "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz" integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== is-number@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-path-cwd@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" + resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== is-path-inside@^3.0.2: version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== is-plain-obj@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz" integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== is-plain-obj@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.0.0.tgz#06c0999fd7574edf5a906ba5644ad0feb3a84d22" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.0.0.tgz" integrity sha512-NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw== is-plain-object@^2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" is-plain-object@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz" integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== is-reference@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.0.tgz#b1380c03d96ddf7089709781e3208fceb0c92cd6" + resolved "https://registry.npmjs.org/is-reference/-/is-reference-3.0.0.tgz" integrity sha512-Eo1W3wUoHWoCoVM4GVl/a+K0IgiqE5aIo4kJABFyMum1ZORlPkC+UC357sSQUL5w5QCE5kCC9upl75b7+7CY/Q== dependencies: "@types/estree" "*" is-regex@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== dependencies: call-bind "^1.0.2" @@ -3016,99 +3053,99 @@ is-regex@^1.1.4: is-relative@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" + resolved "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz" integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== dependencies: is-unc-path "^1.0.0" is-shared-array-buffer@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz" integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA== is-string@^1.0.5, is-string@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== dependencies: has-tostringtag "^1.0.0" is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== dependencies: has-symbols "^1.0.2" is-unc-path@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" + resolved "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz" integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== dependencies: unc-path-regex "^0.1.2" is-unicode-supported@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== is-unicode-supported@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-1.1.0.tgz#9127b71f9fa82f52ca5c20e982e7bec0ee31ee1e" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.1.0.tgz" integrity sha512-lDcxivp8TJpLG75/DpatAqNzOpDPSpED8XNtrpBHTdQ2InQ1PbW78jhwSxyxhhu+xbVSast2X38bwj8atwoUQA== is-weakref@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.1.tgz#842dba4ec17fa9ac9850df2d6efbc1737274f2a2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz" integrity sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ== dependencies: call-bind "^1.0.0" is-what@^4.1.6: version "4.1.7" - resolved "https://registry.yarnpkg.com/is-what/-/is-what-4.1.7.tgz#c41dc1d2d2d6a9285c624c2505f61849c8b1f9cc" + resolved "https://registry.npmjs.org/is-what/-/is-what-4.1.7.tgz" integrity sha512-DBVOQNiPKnGMxRMLIYSwERAS5MVY1B7xYiGnpgctsOFvVDz9f9PFXXxMcTOHuoqYp4NK9qFYQaIC1NRRxLMpBQ== is-windows@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz" integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== isarray@1.0.0, isarray@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= isbinaryfile@^4.0.8: version "4.0.8" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.8.tgz#5d34b94865bd4946633ecc78a026fc76c5b11fcf" + resolved "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.8.tgz" integrity sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w== isexe@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= isobject@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz" integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= dependencies: isarray "1.0.0" isobject@^3.0.0, isobject@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= "js-tokens@^3.0.0 || ^4.0.0": version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@^3.13.1, js-yaml@^3.8.1: version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== dependencies: argparse "^1.0.7" @@ -3116,14 +3153,14 @@ js-yaml@^3.13.1, js-yaml@^3.8.1: js-yaml@^4.0.0, js-yaml@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== dependencies: argparse "^2.0.1" json-fixer@^1.5.1: version "1.6.13" - resolved "https://registry.yarnpkg.com/json-fixer/-/json-fixer-1.6.13.tgz#27d2f0e837aec54afbc9ec1cd8c1dd965bf534c9" + resolved "https://registry.npmjs.org/json-fixer/-/json-fixer-1.6.13.tgz" integrity sha512-DKQ71M+0uwAG3QsUkeVgh6XREw/OkpnTfHfM+sdmxRjHvYZ8PlcMVF4ibsHQ1ckR63NROs68qUr1I0u6yPVePQ== dependencies: "@babel/runtime" "^7.14.6" @@ -3132,24 +3169,24 @@ json-fixer@^1.5.1: json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= json5@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz" integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== dependencies: minimist "^1.2.0" "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz#720b97bfe7d901b927d87c3773637ae8ea48781b" + resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz" integrity sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA== dependencies: array-includes "^3.1.3" @@ -3157,43 +3194,43 @@ json5@^1.0.1: kind-of@^3.0.2: version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= dependencies: is-buffer "^1.1.5" kind-of@^6.0.0, kind-of@^6.0.2: version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== kleur@^4.0.3: version "4.1.4" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.4.tgz#8c202987d7e577766d039a8cd461934c01cda04d" + resolved "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz" integrity sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA== language-subtag-registry@~0.3.2: version "0.3.21" - resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" + resolved "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz" integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== language-tags@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" + resolved "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz" integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo= dependencies: language-subtag-registry "~0.3.2" lazy-cache@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264" + resolved "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz" integrity sha1-uRkKT5EzVGlIQIWfio9whNiCImQ= dependencies: set-getter "^0.1.0" levn@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== dependencies: prelude-ls "^1.2.1" @@ -3201,7 +3238,7 @@ levn@^0.4.1: liftoff@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-4.0.0.tgz#1a463b9073335cd425cdaa3b468996f7d66d2d81" + resolved "https://registry.npmjs.org/liftoff/-/liftoff-4.0.0.tgz" integrity sha512-rMGwYF8q7g2XhG2ulBmmJgWv25qBsqRbDn5gH0+wnuyeFt7QBJlHJmtg5qEdn4pN6WVAUMgXnIxytMFRX9c1aA== dependencies: extend "^3.0.2" @@ -3215,12 +3252,12 @@ liftoff@^4.0.0: lilconfig@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25" + resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz" integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg== list-item@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/list-item/-/list-item-1.1.1.tgz#0c65d00e287cb663ccb3cb3849a77e89ec268a56" + resolved "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz" integrity sha1-DGXQDih8tmPMs8s4Sad+iewmilY= dependencies: expand-range "^1.8.1" @@ -3230,7 +3267,7 @@ list-item@^1.1.1: locate-path@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz" integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= dependencies: p-locate "^2.0.0" @@ -3238,39 +3275,39 @@ locate-path@^2.0.0: locate-path@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== dependencies: p-locate "^4.1.0" lodash-es@^4.17.21: version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" + resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz" integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== lodash._reinterpolate@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + resolved "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz" integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= lodash.camelcase@^4.3.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + resolved "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz" integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= lodash.get@^4.4.2: version "4.4.2" - resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + resolved "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz" integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= lodash.merge@^4.6.2: version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== lodash.template@^4.4.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" + resolved "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz" integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== dependencies: lodash._reinterpolate "^3.0.0" @@ -3278,19 +3315,19 @@ lodash.template@^4.4.0: lodash.templatesettings@^4.0.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" + resolved "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz" integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== dependencies: lodash._reinterpolate "^3.0.0" lodash@^4.11.2, lodash@^4.17.19, lodash@^4.17.21: version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== log-symbols@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== dependencies: chalk "^4.1.0" @@ -3298,7 +3335,7 @@ log-symbols@^4.1.0: log-symbols@^5.1.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-5.1.0.tgz#a20e3b9a5f53fac6aeb8e2bb22c07cf2c8f16d93" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz" integrity sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA== dependencies: chalk "^5.0.0" @@ -3306,65 +3343,65 @@ log-symbols@^5.1.0: long@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz" integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== longest-streak@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.0.1.tgz#c97315b7afa0e7d9525db9a5a2953651432bdc5d" + resolved "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.1.tgz" integrity sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg== loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" lower-case@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz" integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== dependencies: tslib "^2.0.3" lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" make-iterator@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" + resolved "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz" integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw== dependencies: kind-of "^6.0.2" map-cache@^0.2.0: version "0.2.2" - resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz" integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= markdown-extensions@^1.0.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3" + resolved "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz" integrity sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q== markdown-link@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/markdown-link/-/markdown-link-0.1.1.tgz#32c5c65199a6457316322d1e4229d13407c8c7cf" + resolved "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz" integrity sha1-MsXGUZmmRXMWMi0eQinRNAfIx88= markdown-table@^3.0.0: version "3.0.2" - resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.2.tgz#9b59eb2c1b22fe71954a65ff512887065a7bb57c" + resolved "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.2.tgz" integrity sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA== markdown-toc@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/markdown-toc/-/markdown-toc-1.2.0.tgz#44a15606844490314afc0444483f9e7b1122c339" + resolved "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz" integrity sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg== dependencies: concat-stream "^1.5.2" @@ -3382,7 +3419,7 @@ markdown-toc@^1.2.0: match-sorter@^6.3.1: version "6.3.1" - resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-6.3.1.tgz#98cc37fda756093424ddf3cbc62bfe9c75b92bda" + resolved "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.1.tgz" integrity sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw== dependencies: "@babel/runtime" "^7.12.5" @@ -3390,12 +3427,12 @@ match-sorter@^6.3.1: math-random@^1.0.1: version "1.0.4" - resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" + resolved "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz" integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== mdast-util-definitions@^5.0.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.0.tgz#b6d10ef00a3c4cf191e8d9a5fa58d7f4a366f817" + resolved "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.0.tgz" integrity sha512-5hcR7FL2EuZ4q6lLMUK5w4lHT2H3vqL9quPvYZ/Ku5iifrirfMHiGdhxdXMUbUkDmz5I+TYMd7nbaxUhbQkfpQ== dependencies: "@types/mdast" "^3.0.0" @@ -3404,7 +3441,7 @@ mdast-util-definitions@^5.0.0: mdast-util-directive@^2.0.0: version "2.2.1" - resolved "https://registry.yarnpkg.com/mdast-util-directive/-/mdast-util-directive-2.2.1.tgz#823d8e67e2aad04166e31c0a43931d3462be77fe" + resolved "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-2.2.1.tgz" integrity sha512-yZRRuaulzc6bM4IOyZfkOrVs+9Sf1BC+rldRXJyl/Ej6S/6ewQQ9jt75HvEoqZZ4m9ealVTHiS4MP2GRUE7INA== dependencies: "@types/mdast" "^3.0.0" @@ -3416,7 +3453,7 @@ mdast-util-directive@^2.0.0: mdast-util-find-and-replace@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.1.0.tgz#69728acd250749f8aac6e150e07d1fd15619e829" + resolved "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.1.0.tgz" integrity sha512-1w1jbqAd13oU78QPBf5223+xB+37ecNtQ1JElq2feWols5oEYAl+SgNDnOZipe7NfLemoEt362yUS15/wip4mw== dependencies: escape-string-regexp "^5.0.0" @@ -3425,7 +3462,7 @@ mdast-util-find-and-replace@^2.0.0: mdast-util-from-markdown@^1.0.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz#84df2924ccc6c995dec1e2368b2b208ad0a76268" + resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz" integrity sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q== dependencies: "@types/mdast" "^3.0.0" @@ -3443,14 +3480,14 @@ mdast-util-from-markdown@^1.0.0: mdast-util-frontmatter@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.0.tgz#ef12469379782e4a0fd995fed60cc3b871e6c819" + resolved "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.0.tgz" integrity sha512-7itKvp0arEVNpCktOET/eLFAYaZ+0cNjVtFtIPxgQ5tV+3i+D4SDDTjTzPWl44LT59PC+xdx+glNTawBdF98Mw== dependencies: micromark-extension-frontmatter "^1.0.0" mdast-util-gfm-autolink-literal@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.2.tgz#4032dcbaddaef7d4f2f3768ed830475bb22d3970" + resolved "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.2.tgz" integrity sha512-FzopkOd4xTTBeGXhXSBU0OCDDh5lUj2rd+HQqG92Ld+jL4lpUfgX2AT2OHAVP9aEeDKp7G92fuooSZcYJA3cRg== dependencies: "@types/mdast" "^3.0.0" @@ -3460,7 +3497,7 @@ mdast-util-gfm-autolink-literal@^1.0.0: mdast-util-gfm-footnote@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.0.tgz#355c1e8dc9e17e871d1b3fa5da8824923fc756e0" + resolved "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.0.tgz" integrity sha512-qeg9YoS2YYP6OBmMyUFxKXb6BLwAsbGidIxgwDAXHIMYZQhIwe52L9BSJs+zP29Jp5nSERPkmG3tSwAN23/ZbQ== dependencies: "@types/mdast" "^3.0.0" @@ -3470,7 +3507,7 @@ mdast-util-gfm-footnote@^1.0.0: mdast-util-gfm-strikethrough@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.0.tgz#6cc72ef5d9539f4cee76af3f15dd0daa9e3af40f" + resolved "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.0.tgz" integrity sha512-gM9ipBUdRxYa6Yq1Hd8Otg6jEn/dRxFZ1F9ZX4QHosHOexLGqNZO2dh0A+YFbUEd10RcKjnjb4jOfJJzoXXUew== dependencies: "@types/mdast" "^3.0.3" @@ -3478,7 +3515,7 @@ mdast-util-gfm-strikethrough@^1.0.0: mdast-util-gfm-table@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.1.tgz#07c269a219d66ec2deb6de38aed0ba1d1f9442df" + resolved "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.1.tgz" integrity sha512-NByKuaSg5+M6r9DZBPXFUmhMHGFf9u+WE76EeStN01ghi8hpnydiWBXr+qj0XCRWI7SAMNtEjGvip6zci9axQA== dependencies: markdown-table "^3.0.0" @@ -3486,7 +3523,7 @@ mdast-util-gfm-table@^1.0.0: mdast-util-gfm-task-list-item@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.0.tgz#a0aa2a00c893f9f006d13ba096cbc64608559c7f" + resolved "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.0.tgz" integrity sha512-dwkzOTjQe8JCCHVE3Cb0pLHTYLudf7t9WCAnb20jI8/dW+VHjgWhjtIUVA3oigNkssgjEwX+i+3XesUdCnXGyA== dependencies: "@types/mdast" "^3.0.3" @@ -3494,7 +3531,7 @@ mdast-util-gfm-task-list-item@^1.0.0: mdast-util-gfm@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-2.0.0.tgz#2545856bc18a66d5cc63fbef0b097a020a8e9e3d" + resolved "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.0.tgz" integrity sha512-wMwejlTN3EQADPFuvxe8lmGsay3+f6gSJKdAHR6KBJzpcxvsjJSILB9K6u6G7eQLC7iOTyVIHYGui9uBc9r1Tg== dependencies: mdast-util-gfm-autolink-literal "^1.0.0" @@ -3505,14 +3542,14 @@ mdast-util-gfm@^2.0.0: mdast-util-mdx-expression@^1.0.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.1.1.tgz#657522e78b84f5c85cd2395776aba8dcfb7bbb0f" + resolved "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.1.1.tgz" integrity sha512-RDLRkBFmBKCJl6/fQdxxKL2BqNtoPFoNBmQAlj5ZNKOijIWRKjdhPkeufsUOaexLj+78mhJc+L7d1MYka8/LdQ== dependencies: "@types/estree-jsx" "^0.0.1" mdast-util-mdx-jsx@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.0.1.tgz#03d003c8b0b4bd94ab092d876c0f92d2b0c83b0b" + resolved "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.0.1.tgz" integrity sha512-oPC7/smPBf7vxnvIYH5y3fPo2lw1rdrswFfSb4i0GTAXRUQv7JUU/t/hbp07dgGdUFTSDOHm5DNamhNg/s2Hrg== dependencies: "@types/estree-jsx" "^0.0.1" @@ -3528,7 +3565,7 @@ mdast-util-mdx-jsx@^2.0.0: mdast-util-mdx@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-2.0.0.tgz#dd4f6c993cf27da32725e50a04874f595b7b63fb" + resolved "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.0.tgz" integrity sha512-M09lW0CcBT1VrJUaF/PYxemxxHa7SLDHdSn94Q9FhxjCQfuW7nMAWKWimTmA3OyDMSTH981NN1csW1X+HPSluw== dependencies: mdast-util-mdx-expression "^1.0.0" @@ -3537,7 +3574,7 @@ mdast-util-mdx@^2.0.0: mdast-util-mdxjs-esm@^1.0.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.1.1.tgz#09a1fd42ffc68f83de4b52496fb95f6058646f21" + resolved "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.1.1.tgz" integrity sha512-IpHNNMubCt6ue2FIQasx1ByvETglnqc7A3XvIc0Yyql1hNI73SEGa044dZG6jeJQE8boBdTn8nxs3DjQLvVN1w== dependencies: "@types/estree-jsx" "^0.0.1" @@ -3547,7 +3584,7 @@ mdast-util-mdxjs-esm@^1.0.0: mdast-util-to-hast@^12.1.0: version "12.1.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.1.0.tgz#5942207baf1b46fc04a588fd6bf37bfcfb4043b2" + resolved "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.1.0.tgz" integrity sha512-dHfCt9Yh05AXEeghoziB3DjJV8oCIKdQmBJOPoAT1NlgMDBy+/MQn7Pxfq0jI8YRO1IfzcnmA/OU3FVVn/E5Sg== dependencies: "@types/hast" "^2.0.0" @@ -3563,7 +3600,7 @@ mdast-util-to-hast@^12.1.0: mdast-util-to-markdown@^1.0.0: version "1.2.6" - resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.2.6.tgz#9d0d1fcb22838e4af83fb04841cbde92525972f3" + resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.2.6.tgz" integrity sha512-doJZmTEGagHypWvJ8ltinmwUsT9ZaNgNIQW6Gl7jNdsI1QZkTHTimYW561Niy2s8AEPAqEgV0dIh2UOVlSXUJA== dependencies: "@types/mdast" "^3.0.0" @@ -3576,7 +3613,7 @@ mdast-util-to-markdown@^1.0.0: mdast-util-to-markdown@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.3.0.tgz#38b6cdc8dc417de642a469c4fc2abdf8c931bd1e" + resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.3.0.tgz" integrity sha512-6tUSs4r+KK4JGTTiQ7FfHmVOaDrLQJPmpjD6wPMlHGUVXoG9Vjc3jIeP+uyBWRf8clwB2blM+W7+KrlMYQnftA== dependencies: "@types/mdast" "^3.0.0" @@ -3589,17 +3626,17 @@ mdast-util-to-markdown@^1.3.0: mdast-util-to-string@^3.0.0, mdast-util-to-string@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz#56c506d065fbf769515235e577b5a261552d56e9" + resolved "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz" integrity sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA== mdurl@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" + resolved "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz" integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= mdx-bundler@^9.0.0: version "9.0.0" - resolved "https://registry.yarnpkg.com/mdx-bundler/-/mdx-bundler-9.0.0.tgz#07e6d98d7f6d9d0fd9965c59281eb41263400bea" + resolved "https://registry.npmjs.org/mdx-bundler/-/mdx-bundler-9.0.0.tgz" integrity sha512-ZkP3xU6wPgGaEUNRaiRlwxQdIQyFyoa1q5eMJEAgFmCPSj3LRI0uR6ZvqiNb9794WBiGCafdFmWjQFN6JpBQAQ== dependencies: "@babel/runtime" "^7.16.3" @@ -3613,12 +3650,12 @@ mdx-bundler@^9.0.0: merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1: version "1.0.6" - resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz#edff4c72e5993d93724a3c206970f5a15b0585ad" + resolved "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz" integrity sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA== dependencies: decode-named-character-reference "^1.0.0" @@ -3640,7 +3677,7 @@ micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1: micromark-extension-directive@^2.0.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/micromark-extension-directive/-/micromark-extension-directive-2.1.1.tgz#d2dae9219618fcce06226d0b63b7a2a23fbe23ec" + resolved "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-2.1.1.tgz" integrity sha512-+7MYZ3a10cpPrQRg3530srFMSBx0EL7gQaJ3ekguOQFSlJHLikW15AphBmNxvCNdRSWTX1R8RepzjKQra8INQw== dependencies: micromark-factory-space "^1.0.0" @@ -3653,7 +3690,7 @@ micromark-extension-directive@^2.0.0: micromark-extension-frontmatter@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.0.0.tgz#612498e6dad87c132c95e25f0918e7cc0cd535f6" + resolved "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.0.0.tgz" integrity sha512-EXjmRnupoX6yYuUJSQhrQ9ggK0iQtQlpi6xeJzVD5xscyAI+giqco5fdymayZhJMbIFecjnE2yz85S9NzIgQpg== dependencies: fault "^2.0.0" @@ -3662,7 +3699,7 @@ micromark-extension-frontmatter@^1.0.0: micromark-extension-gfm-autolink-literal@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.2.tgz#aafadc9ef2f8078d359eb635f144d913c669e0f6" + resolved "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.2.tgz" integrity sha512-z2Asd0v4iV/QoI1l23J1qB6G8IqVWTKmwdlP45YQfdGW47ZzpddyzSxZ78YmlucOLqIbS5H98ekKf9GunFfnLA== dependencies: micromark-util-character "^1.0.0" @@ -3673,7 +3710,7 @@ micromark-extension-gfm-autolink-literal@^1.0.0: micromark-extension-gfm-footnote@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.0.2.tgz#cd6309f842db8859556b3708302abc7721351b5f" + resolved "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.0.2.tgz" integrity sha512-C6o+B7w1wDM4JjDJeHCTszFYF1q46imElNY6mfXsBfw4E91M9TvEEEt3sy0FbJmGVzdt1pqFVRYWT9ZZ0FjFuA== dependencies: micromark-core-commonmark "^1.0.0" @@ -3686,7 +3723,7 @@ micromark-extension-gfm-footnote@^1.0.0: micromark-extension-gfm-strikethrough@^1.0.0: version "1.0.3" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.3.tgz#010900cfc9a2bf35d2859612c356a21d7fb19af5" + resolved "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.3.tgz" integrity sha512-PJKhBNyrNIo694ZQCE/FBBQOQSb6YC0Wi5Sv0OCah5XunnNaYbtak9CSv9/eq4YeFMMyd1jX84IRwUSE+7ioLA== dependencies: micromark-util-chunked "^1.0.0" @@ -3698,7 +3735,7 @@ micromark-extension-gfm-strikethrough@^1.0.0: micromark-extension-gfm-table@^1.0.0: version "1.0.4" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.4.tgz#37fdcd11c3ef8d1928a037207597f1f7951d3381" + resolved "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.4.tgz" integrity sha512-IK2yzl7ycXeFFvZ8qiH4j5am529ihjOFD7NMo8Nhyq+VGwgWe4+qeI925RRrJuEzX3KyQ+1vzY8BIIvqlgOJhw== dependencies: micromark-factory-space "^1.0.0" @@ -3709,14 +3746,14 @@ micromark-extension-gfm-table@^1.0.0: micromark-extension-gfm-tagfilter@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.0.tgz#a38c7c462c2007b534fcb485e9310165879654a7" + resolved "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.0.tgz" integrity sha512-GGUZhzQrOdHR8RHU2ru6K+4LMlj+pBdNuXRtw5prOflDOk2hHqDB0xEgej1AHJ2VETeycX7tzQh2EmaTUOmSKg== dependencies: micromark-util-types "^1.0.0" micromark-extension-gfm-task-list-item@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.2.tgz#953c1cd565df864790815c3a162d452d004255ed" + resolved "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.2.tgz" integrity sha512-8AZib9xxPtppTKig/d00i9uKi96kVgoqin7+TRtGprDb8uTUrN1ZfJ38ga8yUdmu7EDQxr2xH8ltZdbCcmdshg== dependencies: micromark-factory-space "^1.0.0" @@ -3727,7 +3764,7 @@ micromark-extension-gfm-task-list-item@^1.0.0: micromark-extension-gfm@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-2.0.0.tgz#d9d1b82967f43c346a335864060c16b735e3861f" + resolved "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.0.tgz" integrity sha512-yYPlZ48Ss8fRFSmlQP/QXt3/M6tEvawEVFO+jDPnFA3mGeVgzIyaeHgrIV/9AMFAjQhctKA47Bk8xBhcuaL74Q== dependencies: micromark-extension-gfm-autolink-literal "^1.0.0" @@ -3741,7 +3778,7 @@ micromark-extension-gfm@^2.0.0: micromark-extension-mdx-expression@^1.0.0: version "1.0.3" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.3.tgz#cd3843573921bf55afcfff4ae0cd2e857a16dcfa" + resolved "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.3.tgz" integrity sha512-TjYtjEMszWze51NJCZmhv7MEBcgYRgb3tJeMAJ+HQCAaZHHRBaDCccqQzGizR/H4ODefP44wRTgOn2vE5I6nZA== dependencies: micromark-factory-mdx-expression "^1.0.0" @@ -3754,7 +3791,7 @@ micromark-extension-mdx-expression@^1.0.0: micromark-extension-mdx-jsx@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.2.tgz#966817c1c0920e6bf311dd75e07eaf4a069d933b" + resolved "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.2.tgz" integrity sha512-MBppeDuXEBIL1uo4B/bL5eJ1q3m5pXzdzIWpOnJuzzBZF+S+9zbb5WnS2K/LEVQeoyiLzOuoteU4SFPuGJhhWw== dependencies: "@types/acorn" "^4.0.0" @@ -3769,14 +3806,14 @@ micromark-extension-mdx-jsx@^1.0.0: micromark-extension-mdx-md@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz#382f5df9ee3706dd120b51782a211f31f4760d22" + resolved "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz" integrity sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw== dependencies: micromark-util-types "^1.0.0" micromark-extension-mdxjs-esm@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.2.tgz#df0c48743a0b1988119489c68314160b7942ffa6" + resolved "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.2.tgz" integrity sha512-bIaxblNIM+CCaJvp3L/V+168l79iuNmxEiTU6i3vB0YuDW+rumV64BFMxvhfRDxaJxQE1zD5vTPdyLBbW4efGA== dependencies: micromark-core-commonmark "^1.0.0" @@ -3790,7 +3827,7 @@ micromark-extension-mdxjs-esm@^1.0.0: micromark-extension-mdxjs@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz#772644e12fc8299a33e50f59c5aa15727f6689dd" + resolved "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz" integrity sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ== dependencies: acorn "^8.0.0" @@ -3804,7 +3841,7 @@ micromark-extension-mdxjs@^1.0.0: micromark-factory-destination@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz#fef1cb59ad4997c496f887b6977aa3034a5a277e" + resolved "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz" integrity sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw== dependencies: micromark-util-character "^1.0.0" @@ -3813,7 +3850,7 @@ micromark-factory-destination@^1.0.0: micromark-factory-label@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz#6be2551fa8d13542fcbbac478258fb7a20047137" + resolved "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz" integrity sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg== dependencies: micromark-util-character "^1.0.0" @@ -3823,7 +3860,7 @@ micromark-factory-label@^1.0.0: micromark-factory-mdx-expression@^1.0.0: version "1.0.5" - resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.5.tgz#d16e9c8611971b84a2e4fa296c88620d57967ca7" + resolved "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.5.tgz" integrity sha512-1DSMCBeCUj4m01P8uYbNWvOsv+FtpDTcBUcDCdE06sENTBX54lndRs9neWOgsNWfLDm2EzCyNKiUaoJ+mWa/WA== dependencies: micromark-factory-space "^1.0.0" @@ -3837,7 +3874,7 @@ micromark-factory-mdx-expression@^1.0.0: micromark-factory-space@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz#cebff49968f2b9616c0fcb239e96685cb9497633" + resolved "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz" integrity sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew== dependencies: micromark-util-character "^1.0.0" @@ -3845,7 +3882,7 @@ micromark-factory-space@^1.0.0: micromark-factory-title@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz#7e09287c3748ff1693930f176e1c4a328382494f" + resolved "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz" integrity sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A== dependencies: micromark-factory-space "^1.0.0" @@ -3856,7 +3893,7 @@ micromark-factory-title@^1.0.0: micromark-factory-whitespace@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz#e991e043ad376c1ba52f4e49858ce0794678621c" + resolved "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz" integrity sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A== dependencies: micromark-factory-space "^1.0.0" @@ -3866,7 +3903,7 @@ micromark-factory-whitespace@^1.0.0: micromark-util-character@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.1.0.tgz#d97c54d5742a0d9611a68ca0cd4124331f264d86" + resolved "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz" integrity sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg== dependencies: micromark-util-symbol "^1.0.0" @@ -3874,14 +3911,14 @@ micromark-util-character@^1.0.0: micromark-util-chunked@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz#5b40d83f3d53b84c4c6bce30ed4257e9a4c79d06" + resolved "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz" integrity sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g== dependencies: micromark-util-symbol "^1.0.0" micromark-util-classify-character@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz#cbd7b447cb79ee6997dd274a46fc4eb806460a20" + resolved "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz" integrity sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA== dependencies: micromark-util-character "^1.0.0" @@ -3890,7 +3927,7 @@ micromark-util-classify-character@^1.0.0: micromark-util-combine-extensions@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz#91418e1e74fb893e3628b8d496085639124ff3d5" + resolved "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz" integrity sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA== dependencies: micromark-util-chunked "^1.0.0" @@ -3898,14 +3935,14 @@ micromark-util-combine-extensions@^1.0.0: micromark-util-decode-numeric-character-reference@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz#dcc85f13b5bd93ff8d2868c3dba28039d490b946" + resolved "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz" integrity sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w== dependencies: micromark-util-symbol "^1.0.0" micromark-util-decode-string@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz#942252ab7a76dec2dbf089cc32505ee2bc3acf02" + resolved "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz" integrity sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q== dependencies: decode-named-character-reference "^1.0.0" @@ -3915,12 +3952,12 @@ micromark-util-decode-string@^1.0.0: micromark-util-encode@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.0.0.tgz#c409ecf751a28aa9564b599db35640fccec4c068" + resolved "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.0.tgz" integrity sha512-cJpFVM768h6zkd8qJ1LNRrITfY4gwFt+tziPcIf71Ui8yFzY9wG3snZQqiWVq93PG4Sw6YOtcNiKJfVIs9qfGg== micromark-util-events-to-acorn@^1.0.0: version "1.0.4" - resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.0.4.tgz#07d26cd675dbca8c38b8d9aff2d4cdc91c9997aa" + resolved "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.0.4.tgz" integrity sha512-dpo8ecREK5s/KMph7jJ46RLM6g7N21CMc9LAJQbDLdbQnTpijigkSJPTIfLXZ+h5wdXlcsQ+b6ufAE9v76AdgA== dependencies: "@types/acorn" "^4.0.0" @@ -3932,26 +3969,26 @@ micromark-util-events-to-acorn@^1.0.0: micromark-util-html-tag-name@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.0.0.tgz#75737e92fef50af0c6212bd309bc5cb8dbd489ed" + resolved "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.0.0.tgz" integrity sha512-NenEKIshW2ZI/ERv9HtFNsrn3llSPZtY337LID/24WeLqMzeZhBEE6BQ0vS2ZBjshm5n40chKtJ3qjAbVV8S0g== micromark-util-normalize-identifier@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz#4a3539cb8db954bbec5203952bfe8cedadae7828" + resolved "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz" integrity sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg== dependencies: micromark-util-symbol "^1.0.0" micromark-util-resolve-all@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz#a7c363f49a0162e931960c44f3127ab58f031d88" + resolved "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz" integrity sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw== dependencies: micromark-util-types "^1.0.0" micromark-util-sanitize-uri@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.0.0.tgz#27dc875397cd15102274c6c6da5585d34d4f12b2" + resolved "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.0.0.tgz" integrity sha512-cCxvBKlmac4rxCGx6ejlIviRaMKZc0fWm5HdCHEeDWRSkn44l6NdYVRyU+0nT1XC72EQJMZV8IPHF+jTr56lAg== dependencies: micromark-util-character "^1.0.0" @@ -3960,7 +3997,7 @@ micromark-util-sanitize-uri@^1.0.0: micromark-util-subtokenize@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz#ff6f1af6ac836f8bfdbf9b02f40431760ad89105" + resolved "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz" integrity sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA== dependencies: micromark-util-chunked "^1.0.0" @@ -3970,17 +4007,17 @@ micromark-util-subtokenize@^1.0.0: micromark-util-symbol@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz#b90344db62042ce454f351cf0bebcc0a6da4920e" + resolved "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz" integrity sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ== micromark-util-types@^1.0.0, micromark-util-types@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.0.2.tgz#f4220fdb319205812f99c40f8c87a9be83eded20" + resolved "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz" integrity sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w== micromark@^3.0.0: version "3.0.10" - resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.0.10.tgz#1eac156f0399d42736458a14b0ca2d86190b457c" + resolved "https://registry.npmjs.org/micromark/-/micromark-3.0.10.tgz" integrity sha512-ryTDy6UUunOXy2HPjelppgJ2sNfcPz1pLlMdA6Rz9jPzhLikWXv/irpWV/I2jd68Uhmny7hHxAlAhk4+vWggpg== dependencies: "@types/debug" "^4.0.0" @@ -4003,39 +4040,51 @@ micromark@^3.0.0: micromatch@^4.0.4: version "4.0.4" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz" integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== dependencies: braces "^3.0.1" picomatch "^2.2.3" +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12: + version "2.1.35" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + mimic-fn@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== minimatch@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" minimatch@^3.1.2: version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: version "1.2.6" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz" integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== mixin-deep@^1.1.3: version "1.3.2" - resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz" integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== dependencies: for-in "^1.0.2" @@ -4043,67 +4092,67 @@ mixin-deep@^1.1.3: mkdirp@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== moment@^2.29.3: version "2.29.3" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.3.tgz#edd47411c322413999f7a5940d526de183c031f3" + resolved "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz" integrity sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw== mri@^1.1.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" + resolved "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz" integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== ms@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= ms@2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== ms@^2.1.1: version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== mute-stream@0.0.8: version "0.0.8" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== nanoclone@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/nanoclone/-/nanoclone-0.2.1.tgz#dd4090f8f1a110d26bb32c49ed2f5b9235209ed4" + resolved "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz" integrity sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA== nanoid@^3.1.30: version "3.2.0" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.2.0.tgz#62667522da6673971cca916a6d3eff3f415ff80c" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.2.0.tgz" integrity sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA== nanoid@^3.3.4: version "3.3.4" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= neo-async@^2.6.0: version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== next-contentlayer@^0.2.3: version "0.2.3" - resolved "https://registry.yarnpkg.com/next-contentlayer/-/next-contentlayer-0.2.3.tgz#2ac305f3ed418cbdf4d5dabecef77d2c5d53a0ce" + resolved "https://registry.npmjs.org/next-contentlayer/-/next-contentlayer-0.2.3.tgz" integrity sha512-Gieo2Al8syDTxKf7SQtHp5btiV0FEMxogFzDSJVVoMiShd6vJlGdBi4I7ozW/OHZ29Q0VM3D/ZRQkTAjB8nDUw== dependencies: "@contentlayer/core" "0.2.3" @@ -4112,12 +4161,12 @@ next-contentlayer@^0.2.3: next-seo@^5.4.0: version "5.4.0" - resolved "https://registry.yarnpkg.com/next-seo/-/next-seo-5.4.0.tgz#37a7784b30b3f70cec3fa0d77f9dde5990822d24" + resolved "https://registry.npmjs.org/next-seo/-/next-seo-5.4.0.tgz" integrity sha512-R9DhajPwJnR/lsF2hZ8cN8uqr5CVITsRrCG1AF5+ufcaybKYOvnH8sH9MaH4/hpkps3PQ9H71S7J7SPYixAYzQ== next@^12.1.5: version "12.1.5" - resolved "https://registry.yarnpkg.com/next/-/next-12.1.5.tgz#7a07687579ddce61ee519493e1c178d83abac063" + resolved "https://registry.npmjs.org/next/-/next-12.1.5.tgz" integrity sha512-YGHDpyfgCfnT5GZObsKepmRnne7Kzp7nGrac07dikhutWQug7hHg85/+sPJ4ZW5Q2pDkb+n0FnmLkmd44htIJQ== dependencies: "@next/env" "12.1.5" @@ -4140,7 +4189,7 @@ next@^12.1.5: no-case@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz" integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== dependencies: lower-case "^2.0.2" @@ -4148,19 +4197,19 @@ no-case@^3.0.4: node-domexception@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz" integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== node-fetch@^2.6.0: version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz" integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== dependencies: whatwg-url "^5.0.0" node-fetch@^3.0.0: version "3.2.3" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.3.tgz#a03c9cc2044d21d1a021566bd52f080f333719a6" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.3.tgz" integrity sha512-AXP18u4pidSZ1xYXRDPY/8jdv3RAozIt/WLNR/MBGZAz+xjtlr90RvCnsvHQRiXyWliZF/CpytExp32UU67/SA== dependencies: data-uri-to-buffer "^4.0.0" @@ -4169,7 +4218,7 @@ node-fetch@^3.0.0: node-plop@^0.30.0: version "0.30.0" - resolved "https://registry.yarnpkg.com/node-plop/-/node-plop-0.30.0.tgz#413581d95ff21f043ec4c373fcacb0f1555ae600" + resolved "https://registry.npmjs.org/node-plop/-/node-plop-0.30.0.tgz" integrity sha512-5w9+jWoy9OtMm3qRmHgL2z/3L5VL3RhEegKkKC4tA1IIjG3aXf8Ee/8wdgU9qXyt1yDfPWI9Tan1rHpXAp0ZnA== dependencies: "@types/inquirer" "^8.1.3" @@ -4188,42 +4237,42 @@ node-plop@^0.30.0: node-releases@^2.0.3: version "2.0.5" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.5.tgz#280ed5bc3eba0d96ce44897d8aee478bfb3d9666" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz" integrity sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q== normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== normalize-range@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= object-assign@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= object-hash@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + resolved "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz" integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== object-inspect@^1.11.0, object-inspect@^1.9.0: version "1.11.1" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.1.tgz#d4bd7d7de54b9a75599f59a00bd698c1f1c6549b" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.1.tgz" integrity sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA== object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object.assign@^4.1.2: version "4.1.2" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== dependencies: call-bind "^1.0.0" @@ -4233,7 +4282,7 @@ object.assign@^4.1.2: object.defaults@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" + resolved "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz" integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8= dependencies: array-each "^1.0.1" @@ -4243,7 +4292,7 @@ object.defaults@^1.1.0: object.entries@^1.1.5: version "1.1.5" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" + resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz" integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== dependencies: call-bind "^1.0.2" @@ -4252,7 +4301,7 @@ object.entries@^1.1.5: object.fromentries@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" + resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz" integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== dependencies: call-bind "^1.0.2" @@ -4261,7 +4310,7 @@ object.fromentries@^2.0.5: object.hasown@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5" + resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz" integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg== dependencies: define-properties "^1.1.3" @@ -4269,7 +4318,7 @@ object.hasown@^1.1.0: object.map@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" + resolved "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz" integrity sha1-z4Plncj8wK1fQlDh94s7gb2AHTc= dependencies: for-own "^1.0.0" @@ -4277,14 +4326,14 @@ object.map@^1.0.1: object.pick@^1.2.0, object.pick@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz" integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= dependencies: isobject "^3.0.1" object.values@^1.1.5: version "1.1.5" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" + resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz" integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== dependencies: call-bind "^1.0.2" @@ -4293,26 +4342,26 @@ object.values@^1.1.5: once@^1.3.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= dependencies: wrappy "1" onetime@^5.1.0: version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" oo-ascii-tree@^1.56.0: version "1.56.0" - resolved "https://registry.yarnpkg.com/oo-ascii-tree/-/oo-ascii-tree-1.56.0.tgz#be7313106598e33b6159a48547eba70140286ae5" + resolved "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.56.0.tgz" integrity sha512-tPOSOEjN1uq2NktoBU2KExOU9lVghkpg+tDLWMtnqSSmX+lnDJIYIFpa/HqXwyiAXoHpcKh+bcmTPMZagLNIZA== optionator@^0.9.1: version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== dependencies: deep-is "^0.1.3" @@ -4324,7 +4373,7 @@ optionator@^0.9.1: ora@^5.4.1: version "5.4.1" - resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz" integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== dependencies: bl "^4.1.0" @@ -4339,7 +4388,7 @@ ora@^5.4.1: ora@^6.0.1: version "6.1.0" - resolved "https://registry.yarnpkg.com/ora/-/ora-6.1.0.tgz#86aa07058c4e9fb91444412d103b0d7e01aca973" + resolved "https://registry.npmjs.org/ora/-/ora-6.1.0.tgz" integrity sha512-CxEP6845hLK+NHFWZ+LplGO4zfw4QSfxTlqMfvlJ988GoiUeZDMzCvqsZkFHv69sPICmJH1MDxZoQFOKXerAVw== dependencies: bl "^5.0.0" @@ -4354,57 +4403,57 @@ ora@^6.0.1: os-tmpdir@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= p-limit@^1.1.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz" integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== dependencies: p-try "^1.0.0" p-limit@^2.2.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" p-locate@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz" integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= dependencies: p-limit "^1.1.0" p-locate@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== dependencies: p-limit "^2.2.0" p-map@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== dependencies: aggregate-error "^3.0.0" p-try@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz" integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= p-try@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== param-case@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + resolved "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz" integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== dependencies: dot-case "^3.0.4" @@ -4412,14 +4461,14 @@ param-case@^3.0.4: parent-module@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parse-entities@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.0.tgz#f67c856d4e3fe19b1a445c3fabe78dcdc1053eeb" + resolved "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.0.tgz" integrity sha512-5nk9Fn03x3rEhGaX1FU6IDwG/k+GxLXlFAkgrbM1asuAFl3BhdQWvASaIsmwWypRNcZKHPYnIuOSfIWEyEQnPQ== dependencies: "@types/unist" "^2.0.0" @@ -4433,7 +4482,7 @@ parse-entities@^4.0.0: parse-filepath@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" + resolved "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz" integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= dependencies: is-absolute "^1.0.0" @@ -4442,22 +4491,22 @@ parse-filepath@^1.0.2: parse-numeric-range@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz#7c63b61190d61e4d53a1197f0c83c47bb670ffa3" + resolved "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz" integrity sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ== parse-passwd@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz" integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= parse5@^6.0.0: version "6.0.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" + resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== pascal-case@^3.1.2: version "3.1.2" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz" integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== dependencies: no-case "^3.0.4" @@ -4465,7 +4514,7 @@ pascal-case@^3.1.2: path-case@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f" + resolved "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz" integrity sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg== dependencies: dot-case "^3.0.4" @@ -4473,54 +4522,54 @@ path-case@^3.0.4: path-exists@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= path-key@^3.1.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.6, path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-root-regex@^0.1.0: version "0.1.2" - resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" + resolved "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz" integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= path-root@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" + resolved "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz" integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= dependencies: path-root-regex "^0.1.0" path-type@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== pegjs@^0.10.0: version "0.10.0" - resolved "https://registry.yarnpkg.com/pegjs/-/pegjs-0.10.0.tgz#cf8bafae6eddff4b5a7efb185269eaaf4610ddbd" + resolved "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz" integrity sha1-z4uvrm7d/0tafvsYUmnqr0YQ3b0= periscopic@^3.0.0: version "3.0.4" - resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.0.4.tgz#b3fbed0d1bc844976b977173ca2cd4a0ef4fa8d1" + resolved "https://registry.npmjs.org/periscopic/-/periscopic-3.0.4.tgz" integrity sha512-SFx68DxCv0Iyo6APZuw/AKewkkThGwssmU0QWtTlvov3VAtPX+QJ4CadwSaz8nrT5jPIuxdvJWB4PnD2KNDxQg== dependencies: estree-walker "^3.0.0" @@ -4528,29 +4577,29 @@ periscopic@^3.0.0: picocolors@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: version "2.3.0" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz" integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== pify@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" + resolved "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz" integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== pkg-dir@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz" integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= dependencies: find-up "^2.1.0" plop@^3.0.5: version "3.0.5" - resolved "https://registry.yarnpkg.com/plop/-/plop-3.0.5.tgz#09720a3c28547ae3be0876b77313a981d56b6dcb" + resolved "https://registry.npmjs.org/plop/-/plop-3.0.5.tgz" integrity sha512-bD+/Lr+7NCjNIaYJq1cyHDfxtVCdjwfprgKsNwHwFnwntTiNwZWyxd1NuRDygdQWyPi+rstFMMFAPMek0cYaqA== dependencies: "@types/liftoff" "^4.0.0" @@ -4564,7 +4613,7 @@ plop@^3.0.5: popmotion@11.0.3: version "11.0.3" - resolved "https://registry.yarnpkg.com/popmotion/-/popmotion-11.0.3.tgz#565c5f6590bbcddab7a33a074bb2ba97e24b0cc9" + resolved "https://registry.npmjs.org/popmotion/-/popmotion-11.0.3.tgz" integrity sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA== dependencies: framesync "6.0.1" @@ -4574,14 +4623,14 @@ popmotion@11.0.3: postcss-js@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00" + resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz" integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== dependencies: camelcase-css "^2.0.1" postcss-load-config@^3.1.4: version "3.1.4" - resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" + resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz" integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== dependencies: lilconfig "^2.0.5" @@ -4589,14 +4638,14 @@ postcss-load-config@^3.1.4: postcss-nested@5.0.6: version "5.0.6" - resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc" + resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz" integrity sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA== dependencies: postcss-selector-parser "^6.0.6" postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.6: version "6.0.10" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz" integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== dependencies: cssesc "^3.0.0" @@ -4604,12 +4653,12 @@ postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.6: postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@8.4.5: version "8.4.5" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.5.tgz" integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== dependencies: nanoid "^3.1.30" @@ -4618,7 +4667,7 @@ postcss@8.4.5: postcss@^8.4.12, postcss@^8.4.14: version "8.4.14" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz" integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== dependencies: nanoid "^3.3.4" @@ -4627,56 +4676,65 @@ postcss@^8.4.12, postcss@^8.4.14: prelude-ls@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== prettier@^2.6.2: version "2.6.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032" + resolved "https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz" integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew== prismjs@^1.28.0: version "1.28.0" - resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.28.0.tgz#0d8f561fa0f7cf6ebca901747828b149147044b6" + resolved "https://registry.npmjs.org/prismjs/-/prismjs-1.28.0.tgz" integrity sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw== prismjs@~1.27.0: version "1.27.0" - resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057" + resolved "https://registry.npmjs.org/prismjs/-/prismjs-1.27.0.tgz" integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA== process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== progress@^2.0.0: version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== prop-types@^15.7.2: version "15.7.2" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" + resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== dependencies: loose-envify "^1.4.0" object-assign "^4.1.1" react-is "^16.8.1" +prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + property-expr@^2.0.4: version "2.0.5" - resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.5.tgz#278bdb15308ae16af3e3b9640024524f4dc02cb4" + resolved "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz" integrity sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA== property-information@^6.0.0: version "6.1.1" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.1.1.tgz#5ca85510a3019726cb9afed4197b7b8ac5926a22" + resolved "https://registry.npmjs.org/property-information/-/property-information-6.1.1.tgz" integrity sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w== protobufjs@^6.10.0: version "6.11.2" - resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.11.2.tgz#de39fabd4ed32beaa08e9bb1e30d08544c1edf8b" + resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.2.tgz" integrity sha512-4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw== dependencies: "@protobufjs/aspromise" "^1.1.2" @@ -4695,36 +4753,44 @@ protobufjs@^6.10.0: punycode@^2.1.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== quick-lru@^5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" + resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz" integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== ramda@^0.28.0: version "0.28.0" - resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.28.0.tgz#acd785690100337e8b063cab3470019be427cc97" + resolved "https://registry.npmjs.org/ramda/-/ramda-0.28.0.tgz" integrity sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA== randomatic@^3.0.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" + resolved "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz" integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== dependencies: is-number "^4.0.0" kind-of "^6.0.0" math-random "^1.0.1" +react-copy-to-clipboard@^5.1.0: + version "5.1.0" + resolved "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz" + integrity sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A== + dependencies: + copy-to-clipboard "^3.3.1" + prop-types "^15.8.1" + react-dom@17.0.2: version "17.0.2" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" + resolved "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz" integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== dependencies: loose-envify "^1.1.0" @@ -4733,22 +4799,29 @@ react-dom@17.0.2: react-hook-form@^7.33.1: version "7.33.1" - resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.33.1.tgz#8c4410e3420788d3b804d62cc4c142915c2e46d0" + resolved "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.33.1.tgz" integrity sha512-ydTfTxEJdvgjCZBj5DDXRc58oTEfnFupEwwTAQ9FSKzykEJkX+3CiAkGtAMiZG7IPWHuzgT6AOBfogiKhUvKgg== react-icons@^4.3.1: version "4.3.1" - resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-4.3.1.tgz#2fa92aebbbc71f43d2db2ed1aed07361124e91ca" + resolved "https://registry.npmjs.org/react-icons/-/react-icons-4.3.1.tgz" integrity sha512-cB10MXLTs3gVuXimblAdI71jrJx8njrJZmNMEMC+sQu5B/BIOmlsAjskdqpn81y8UBVEGuHODd7/ci5DvoSzTQ== -react-is@^16.7.0, react-is@^16.8.1: +react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.1: version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== +react-toastify@^9.0.8: + version "9.0.8" + resolved "https://registry.npmjs.org/react-toastify/-/react-toastify-9.0.8.tgz" + integrity sha512-EwM+teWt49HSHx+67qI08yLAW1zAsBxCXLCsUfxHYv1W7/R3ZLhrqKalh7j+kjgPna1h5LQMSMwns4tB4ww2yQ== + dependencies: + clsx "^1.1.1" + react@17.0.2: version "17.0.2" - resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" + resolved "https://registry.npmjs.org/react/-/react-17.0.2.tgz" integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== dependencies: loose-envify "^1.1.0" @@ -4756,7 +4829,7 @@ react@17.0.2: readable-stream@^2.2.2, readable-stream@~2.3.6: version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== dependencies: core-util-is "~1.0.0" @@ -4769,7 +4842,7 @@ readable-stream@^2.2.2, readable-stream@~2.3.6: readable-stream@^3.4.0: version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== dependencies: inherits "^2.0.3" @@ -4778,21 +4851,21 @@ readable-stream@^3.4.0: readdirp@~3.6.0: version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== dependencies: picomatch "^2.2.1" rechoir@^0.8.0: version "0.8.0" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz" integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== dependencies: resolve "^1.20.0" refractor@^4.5.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/refractor/-/refractor-4.5.0.tgz#1568fc3a5d6e0c5e4b76caafba7afde0b747fd15" + resolved "https://registry.npmjs.org/refractor/-/refractor-4.5.0.tgz" integrity sha512-cN0XFpjsjAefSRddH6/Ov0k5NrJozG2O5cvSnuLy3j9FDbknf0HswfQq4C9rOrIkFfLcdtZ9cEpm7TOKe+YDjw== dependencies: "@types/hast" "^2.0.0" @@ -4803,12 +4876,12 @@ refractor@^4.5.0: regenerator-runtime@^0.13.4: version "0.13.9" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz" integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== regexp.prototype.flags@^1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz" integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== dependencies: call-bind "^1.0.2" @@ -4816,12 +4889,12 @@ regexp.prototype.flags@^1.3.1: regexpp@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz" integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== rehype-autolink-headings@6.1.1: version "6.1.1" - resolved "https://registry.yarnpkg.com/rehype-autolink-headings/-/rehype-autolink-headings-6.1.1.tgz#0cb874a56f3de6ead1c2268d7f0fc5006f244db5" + resolved "https://registry.npmjs.org/rehype-autolink-headings/-/rehype-autolink-headings-6.1.1.tgz" integrity sha512-NMYzZIsHM3sA14nC5rAFuUPIOfg+DFmf9EY1YMhaNlB7+3kK/ZlE6kqPfuxr1tsJ1XWkTrMtMoyHosU70d35mA== dependencies: "@types/hast" "^2.0.0" @@ -4834,14 +4907,14 @@ rehype-autolink-headings@6.1.1: rehype-code-titles@1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/rehype-code-titles/-/rehype-code-titles-1.0.3.tgz#63968dbc4407ea9e9689bd6e84e5c735ca535d6b" + resolved "https://registry.npmjs.org/rehype-code-titles/-/rehype-code-titles-1.0.3.tgz" integrity sha512-VBLHA1egC8smTGQ0X2oEPO6kuq+CKHkSBanjKHhW5AhOL9V7qsbiB4GSRGDUHI4gwCWSdM4A4R5aoRZ4UExw6A== dependencies: unist-util-visit "^3.0.0" rehype-parse@^8.0.0, rehype-parse@^8.0.2: version "8.0.3" - resolved "https://registry.yarnpkg.com/rehype-parse/-/rehype-parse-8.0.3.tgz#a1947132a08a930d0c2b6fd2b3dbcc137457c07a" + resolved "https://registry.npmjs.org/rehype-parse/-/rehype-parse-8.0.3.tgz" integrity sha512-RGw0CVt+0S6KdvpE8bbP2Db9WXclQcIX7A0ufM3QFqAhTo/ddJMQrrI2j3cijlRPZlGK8R3pRgC8U5HyV76IDw== dependencies: "@types/hast" "^2.0.0" @@ -4851,7 +4924,7 @@ rehype-parse@^8.0.0, rehype-parse@^8.0.2: rehype-prism-plus@^1.3.2: version "1.3.2" - resolved "https://registry.yarnpkg.com/rehype-prism-plus/-/rehype-prism-plus-1.3.2.tgz#4ee433200a44b779afa919b48e186f89a9648330" + resolved "https://registry.npmjs.org/rehype-prism-plus/-/rehype-prism-plus-1.3.2.tgz" integrity sha512-fQXzzMpQu+XM/GUsT0GdwfU8gwpUJ1QjE0BLrMjuULkpFW6/GViNvUJKtIiYc9/uSh6k33CB0YbSa90Bs6R3TQ== dependencies: hast-util-to-string "^2.0.0" @@ -4863,7 +4936,7 @@ rehype-prism-plus@^1.3.2: rehype-slug@5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/rehype-slug/-/rehype-slug-5.0.1.tgz#6e732d0c55b3b1e34187e74b7363fb53229e5f52" + resolved "https://registry.npmjs.org/rehype-slug/-/rehype-slug-5.0.1.tgz" integrity sha512-X5v3wV/meuOX9NFcGhJvUpEjIvQl2gDvjg3z40RVprYFt7q3th4qMmYLULiu3gXvbNX1ppx+oaa6JyY1W67pTA== dependencies: "@types/hast" "^2.0.0" @@ -4876,7 +4949,7 @@ rehype-slug@5.0.1: rehype-stringify@^9.0.0: version "9.0.2" - resolved "https://registry.yarnpkg.com/rehype-stringify/-/rehype-stringify-9.0.2.tgz#2d95e06e246abbee504cf2f54c8d12f27d7bfd8e" + resolved "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-9.0.2.tgz" integrity sha512-BuVA6lAEYtOpXO2xuHLohAzz8UNoQAxAqYRqh4QEEtU39Co+P1JBZhw6wXA9hMWp+JLcmrxWH8+UKcNSr443Fw== dependencies: "@types/hast" "^2.0.0" @@ -4885,7 +4958,7 @@ rehype-stringify@^9.0.0: rehype-stringify@^9.0.3: version "9.0.3" - resolved "https://registry.yarnpkg.com/rehype-stringify/-/rehype-stringify-9.0.3.tgz#70e3bd6d4d29e7acf36b802deed350305d2c3c17" + resolved "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-9.0.3.tgz" integrity sha512-kWiZ1bgyWlgOxpqD5HnxShKAdXtb2IUljn3hQAhySeak6IOQPPt6DeGnsIh4ixm7yKJWzm8TXFuC/lPfcWHJqw== dependencies: "@types/hast" "^2.0.0" @@ -4894,7 +4967,7 @@ rehype-stringify@^9.0.3: rehype@12.0.1: version "12.0.1" - resolved "https://registry.yarnpkg.com/rehype/-/rehype-12.0.1.tgz#68a317662576dcaa2565a3952e149d6900096bf6" + resolved "https://registry.npmjs.org/rehype/-/rehype-12.0.1.tgz" integrity sha512-ey6kAqwLM3X6QnMDILJthGvG1m1ULROS9NT4uG9IDCuv08SFyLlreSuvOa//DgEvbXx62DS6elGVqusWhRUbgw== dependencies: "@types/hast" "^2.0.0" @@ -4904,7 +4977,7 @@ rehype@12.0.1: remark-directive@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/remark-directive/-/remark-directive-2.0.1.tgz#1c32d9df8d839a75ba3478112d21fe883635b48e" + resolved "https://registry.npmjs.org/remark-directive/-/remark-directive-2.0.1.tgz" integrity sha512-oosbsUAkU/qmUE78anLaJePnPis4ihsE7Agp0T/oqTzvTea8pOiaYEtfInU/+xMOVTS9PN5AhGOiaIVe4GD8gw== dependencies: "@types/mdast" "^3.0.0" @@ -4914,7 +4987,7 @@ remark-directive@^2.0.1: remark-frontmatter@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz#84560f7ccef114ef076d3d3735be6d69f8922309" + resolved "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz" integrity sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA== dependencies: "@types/mdast" "^3.0.0" @@ -4924,7 +4997,7 @@ remark-frontmatter@^4.0.1: remark-gfm@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-3.0.1.tgz#0b180f095e3036545e9dddac0e8df3fa5cfee54f" + resolved "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz" integrity sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig== dependencies: "@types/mdast" "^3.0.0" @@ -4934,7 +5007,7 @@ remark-gfm@^3.0.1: remark-mdx-frontmatter@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/remark-mdx-frontmatter/-/remark-mdx-frontmatter-1.1.1.tgz#54cfb3821fbb9cb6057673e0570ae2d645f6fe32" + resolved "https://registry.npmjs.org/remark-mdx-frontmatter/-/remark-mdx-frontmatter-1.1.1.tgz" integrity sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA== dependencies: estree-util-is-identifier-name "^1.0.0" @@ -4944,7 +5017,7 @@ remark-mdx-frontmatter@^1.1.1: remark-mdx@^2.0.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.1.1.tgz#14021be9ecbc9ad0310f4240980221328aa7ed55" + resolved "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.1.1.tgz" integrity sha512-0wXdEITnFyjLquN3VvACNLzbGzWM5ujzTvfgOkONBZgSFJ7ezLLDaTWqf6H9eUgVITEP8asp6LJ0W/X090dXBg== dependencies: mdast-util-mdx "^2.0.0" @@ -4952,7 +5025,7 @@ remark-mdx@^2.0.0: remark-parse@^10.0.0, remark-parse@^10.0.1: version "10.0.1" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.1.tgz#6f60ae53edbf0cf38ea223fe643db64d112e0775" + resolved "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz" integrity sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw== dependencies: "@types/mdast" "^3.0.0" @@ -4961,7 +5034,7 @@ remark-parse@^10.0.0, remark-parse@^10.0.1: remark-rehype@^10.0.0, remark-rehype@^10.1.0: version "10.1.0" - resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-10.1.0.tgz#32dc99d2034c27ecaf2e0150d22a6dcccd9a6279" + resolved "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz" integrity sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw== dependencies: "@types/hast" "^2.0.0" @@ -4971,7 +5044,7 @@ remark-rehype@^10.0.0, remark-rehype@^10.1.0: remarkable@^1.7.1: version "1.7.4" - resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-1.7.4.tgz#19073cb960398c87a7d6546eaa5e50d2022fcd00" + resolved "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz" integrity sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg== dependencies: argparse "^1.0.10" @@ -4979,32 +5052,32 @@ remarkable@^1.7.1: remove-accents@0.4.2: version "0.4.2" - resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" + resolved "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz" integrity sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U= repeat-element@^1.1.2: version "1.1.4" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" + resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz" integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== repeat-string@^1.5.2, repeat-string@^1.6.1: version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= require-directory@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= require-main-filename@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== resolve-dir@^1.0.0, resolve-dir@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" + resolved "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz" integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= dependencies: expand-tilde "^2.0.0" @@ -5012,12 +5085,12 @@ resolve-dir@^1.0.0, resolve-dir@^1.0.1: resolve-from@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== resolve@^1.19.0, resolve@^1.20.0: version "1.20.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz" integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== dependencies: is-core-module "^2.2.0" @@ -5025,7 +5098,7 @@ resolve@^1.19.0, resolve@^1.20.0: resolve@^1.22.0: version "1.22.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz" integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== dependencies: is-core-module "^2.8.1" @@ -5034,7 +5107,7 @@ resolve@^1.22.0: resolve@^2.0.0-next.3: version "2.0.0-next.3" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46" + resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz" integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q== dependencies: is-core-module "^2.2.0" @@ -5042,7 +5115,7 @@ resolve@^2.0.0-next.3: restore-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== dependencies: onetime "^5.1.0" @@ -5050,7 +5123,7 @@ restore-cursor@^3.1.0: restore-cursor@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-4.0.0.tgz#519560a4318975096def6e609d44100edaa4ccb9" + resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz" integrity sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg== dependencies: onetime "^5.1.0" @@ -5058,74 +5131,74 @@ restore-cursor@^4.0.0: reusify@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" run-async@^2.4.0: version "2.4.1" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz" integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" rxjs@^6.6.0: version "6.6.7" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz" integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== dependencies: tslib "^1.9.0" rxjs@^7.1.0: version "7.4.0" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.4.0.tgz#a12a44d7eebf016f5ff2441b87f28c9a51cebc68" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.4.0.tgz" integrity sha512-7SQDi7xeTMCJpqViXh8gL/lebcwlp3d831F05+9B44A4B0WfsEwUQHR64gsH1kvJ+Ep/J9K2+n1hVl1CsGN23w== dependencies: tslib "~2.1.0" rxjs@^7.2.0, rxjs@^7.5.5: version "7.5.5" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.5.tgz#2ebad89af0f560f460ad5cc4213219e1f7dd4e9f" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz" integrity sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw== dependencies: tslib "^2.1.0" sade@^1.7.3: version "1.7.4" - resolved "https://registry.yarnpkg.com/sade/-/sade-1.7.4.tgz#ea681e0c65d248d2095c90578c03ca0bb1b54691" + resolved "https://registry.npmjs.org/sade/-/sade-1.7.4.tgz" integrity sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA== dependencies: mri "^1.1.0" safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== safe-buffer@~5.2.0: version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== "safer-buffer@>= 2.1.2 < 3": version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sass@^1.51.0: version "1.52.1" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.52.1.tgz#554693da808543031f9423911d62c60a1acf7889" + resolved "https://registry.npmjs.org/sass/-/sass-1.52.1.tgz" integrity sha512-fSzYTbr7z8oQnVJ3Acp9hV80dM1fkMN7mSD/25mpcct9F7FPBMOI8krEYALgU1aZoqGhQNhTPsuSmxjnIvAm4Q== dependencies: chokidar ">=3.0.0 <4.0.0" @@ -5134,7 +5207,7 @@ sass@^1.51.0: scheduler@^0.20.2: version "0.20.2" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" + resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz" integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== dependencies: loose-envify "^1.1.0" @@ -5142,7 +5215,7 @@ scheduler@^0.20.2: section-matter@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/section-matter/-/section-matter-1.0.0.tgz#e9041953506780ec01d59f292a19c7b850b84167" + resolved "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz" integrity sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA== dependencies: extend-shallow "^2.0.1" @@ -5150,26 +5223,26 @@ section-matter@^1.0.0: semver@^6.3.0: version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== semver@^7.2.1, semver@^7.3.5: version "7.3.5" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== dependencies: lru-cache "^6.0.0" semver@^7.3.7: version "7.3.7" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz" integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== dependencies: lru-cache "^6.0.0" sentence-case@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f" + resolved "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz" integrity sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg== dependencies: no-case "^3.0.4" @@ -5178,31 +5251,31 @@ sentence-case@^3.0.4: set-blocking@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= set-getter@^0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.1.tgz#a3110e1b461d31a9cfc8c5c9ee2e9737ad447102" + resolved "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz" integrity sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw== dependencies: to-object-path "^0.3.0" shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== side-channel@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== dependencies: call-bind "^1.0.0" @@ -5211,22 +5284,22 @@ side-channel@^1.0.4: signal-exit@^3.0.2: version "3.0.6" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz#24e630c4b0f03fea446a2bd299e62b4a6ca8d0af" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz" integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ== slash@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== slash@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" + resolved "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz" integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== snake-case@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz" integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== dependencies: dot-case "^3.0.4" @@ -5234,12 +5307,12 @@ snake-case@^3.0.4: "source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== source-map-support@^0.5.21: version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== dependencies: buffer-from "^1.0.0" @@ -5247,22 +5320,22 @@ source-map-support@^0.5.21: source-map@^0.6.0, source-map@^0.6.1: version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== space-separated-tokens@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.1.tgz#43193cec4fb858a2ce934b7f98b7f2c18107098b" + resolved "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.1.tgz" integrity sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw== sprintf-js@~1.0.2: version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= string-width@^4.1.0, string-width@^4.2.0: version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -5271,7 +5344,7 @@ string-width@^4.1.0, string-width@^4.2.0: string.prototype.matchall@^4.0.6: version "4.0.6" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz#5abb5dabc94c7b0ea2380f65ba610b3a544b15fa" + resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz" integrity sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg== dependencies: call-bind "^1.0.2" @@ -5285,7 +5358,7 @@ string.prototype.matchall@^4.0.6: string.prototype.trimend@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz" integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== dependencies: call-bind "^1.0.2" @@ -5293,7 +5366,7 @@ string.prototype.trimend@^1.0.4: string.prototype.trimstart@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz" integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== dependencies: call-bind "^1.0.2" @@ -5301,21 +5374,21 @@ string.prototype.trimstart@^1.0.4: string_decoder@^1.1.1: version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: safe-buffer "~5.2.0" string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" stringify-entities@^4.0.0, stringify-entities@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.2.tgz#13d113dc7449dc8ae4cb22c28883ee3fff8753e3" + resolved "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.2.tgz" integrity sha512-MTxTVcEkorNtBbNpoFJPEh0kKdM6+QbMjLbaxmvaPMmayOXdr/AIVIIJX7FReUVweRBFJfZepK4A4AKgwuFpMQ== dependencies: character-entities-html4 "^2.0.0" @@ -5323,48 +5396,48 @@ stringify-entities@^4.0.0, stringify-entities@^4.0.2: strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-ansi@^7.0.1: version "7.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz" integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== dependencies: ansi-regex "^6.0.1" strip-bom-string@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" + resolved "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz" integrity sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI= strip-bom@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= strip-color@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/strip-color/-/strip-color-0.1.0.tgz#106f65d3d3e6a2d9401cac0eb0ce8b8a702b4f7b" + resolved "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz" integrity sha1-EG9l09PmotlAHKwOsM6LinArT3s= strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== style-to-object@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46" + resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz" integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== dependencies: inline-style-parser "0.1.1" style-value-types@5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/style-value-types/-/style-value-types-5.0.0.tgz#76c35f0e579843d523187989da866729411fc8ad" + resolved "https://registry.npmjs.org/style-value-types/-/style-value-types-5.0.0.tgz" integrity sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA== dependencies: hey-listen "^1.0.8" @@ -5372,43 +5445,43 @@ style-value-types@5.0.0: styled-jsx@5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.1.tgz#78fecbbad2bf95ce6cd981a08918ce4696f5fc80" + resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.0.1.tgz" integrity sha512-+PIZ/6Uk40mphiQJJI1202b+/dYeTVd9ZnMPR80pgiWbjIwvN2zIp4r9et0BgqBuShh48I0gttPlAXA7WVvBxw== sugar-core@^2.0.0: version "2.0.6" - resolved "https://registry.yarnpkg.com/sugar-core/-/sugar-core-2.0.6.tgz#785e0cd64aa7302ea54d47bc1213efe52c006270" + resolved "https://registry.npmjs.org/sugar-core/-/sugar-core-2.0.6.tgz" integrity sha512-YmLFysR3Si6RImqL1+aB6JH81EXxvXn5iXhPf2PsjfoUYEwCxFDYCQY+zC3WqviuGWzxFaSkkJvkUE05Y03L5Q== sugar@^2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/sugar/-/sugar-2.0.6.tgz#aa08e389add27109fb35718598313e0503a4fc39" + resolved "https://registry.npmjs.org/sugar/-/sugar-2.0.6.tgz" integrity sha512-s0P2/pjJtAD9VA44+2Gqm3NdC4v+08melA6YubOxzshu628krTbn95/M2GWMrI9rYspZMpYBIrChR46fjQ7xsQ== dependencies: sugar-core "^2.0.0" superjson@^1.9.1: version "1.9.1" - resolved "https://registry.yarnpkg.com/superjson/-/superjson-1.9.1.tgz#e23bd2e8cf0f4ade131d6d769754cac7eaa8ab34" + resolved "https://registry.npmjs.org/superjson/-/superjson-1.9.1.tgz" integrity sha512-oT3HA2nPKlU1+5taFgz/HDy+GEaY+CWEbLzaRJVD4gZ7zMVVC4GDNFdgvAZt6/VuIk6D2R7RtPAiCHwmdzlMmg== dependencies: copy-anything "^3.0.2" supports-color@^7.1.0: version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== tailwindcss@^3.0.24: version "3.0.24" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.0.24.tgz#22e31e801a44a78a1d9a81ecc52e13b69d85704d" + resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz" integrity sha512-H3uMmZNWzG6aqmg9q07ZIRNIawoiEcNFKDfL+YzOPuPsXuDXxJxB9icqzLgdzKNwjG3SAro2h9SYav8ewXNgig== dependencies: arg "^5.0.1" @@ -5435,12 +5508,12 @@ tailwindcss@^3.0.24: text-table@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= through2@^2.0.0: version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== dependencies: readable-stream "~2.3.6" @@ -5448,85 +5521,90 @@ through2@^2.0.0: through@^2.3.6: version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= title-case@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/title-case/-/title-case-3.0.3.tgz#bc689b46f02e411f1d1e1d081f7c3deca0489982" + resolved "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz" integrity sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA== dependencies: tslib "^2.0.3" tmp@^0.0.33: version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== dependencies: os-tmpdir "~1.0.2" to-fast-properties@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= to-object-path@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz" integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= dependencies: kind-of "^3.0.2" to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" +toggle-selection@^1.0.6: + version "1.0.6" + resolved "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz" + integrity sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ== + toml@^2.3.2: version "2.3.6" - resolved "https://registry.yarnpkg.com/toml/-/toml-2.3.6.tgz#25b0866483a9722474895559088b436fd11f861b" + resolved "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz" integrity sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ== toml@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + resolved "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz" integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== toposort@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330" + resolved "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz" integrity sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg== totalist@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/totalist/-/totalist-2.0.0.tgz#db6f1e19c0fa63e71339bbb8fba89653c18c7eec" + resolved "https://registry.npmjs.org/totalist/-/totalist-2.0.0.tgz" integrity sha512-+Y17F0YzxfACxTyjfhnJQEe7afPA0GSpYlFkl2VFMxYP7jshQf9gXV7cH47EfToBumFThfKBvfAcoUn6fdNeRQ== tr46@~0.0.3: version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= trough@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/trough/-/trough-2.0.2.tgz#94a3aa9d5ce379fc561f6244905b3f36b7458d96" + resolved "https://registry.npmjs.org/trough/-/trough-2.0.2.tgz" integrity sha512-FnHq5sTMxC0sk957wHDzRnemFnNBvt/gSY99HzK8F7UP5WAbvP70yX5bd7CjEQkN+TjdxwI7g7lJ6podqrG2/w== ts-pattern@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/ts-pattern/-/ts-pattern-4.0.1.tgz#3b395d6be7112a542d79443c2f577bd89bdba24e" + resolved "https://registry.npmjs.org/ts-pattern/-/ts-pattern-4.0.1.tgz" integrity sha512-UaEFiG0xvCAa0tXBi242rD2WU28RlurzQe27t7vc2+3difhtA58Q6BiFl3YQbDlDiWfantdP05YICJPpGo/ulg== ts-toolbelt@^6.15.1: version "6.15.5" - resolved "https://registry.yarnpkg.com/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz#cb3b43ed725cb63644782c64fbcad7d8f28c0a83" + resolved "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz" integrity sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A== tsconfig-paths@^3.11.0, tsconfig-paths@^3.9.0: version "3.12.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz#19769aca6ee8f6a1a341e38c8fa45dd9fb18899b" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz" integrity sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg== dependencies: "@types/json5" "^0.0.29" @@ -5536,71 +5614,71 @@ tsconfig-paths@^3.11.0, tsconfig-paths@^3.9.0: tslib@^1.8.1, tslib@^1.9.0: version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.0.3, tslib@^2.1.0: version "2.3.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz" integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== tslib@~2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz" integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== tsutils@^3.21.0: version "3.21.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== dependencies: tslib "^1.8.1" typanion@^3.3.1, typanion@^3.7.1: version "3.7.1" - resolved "https://registry.yarnpkg.com/typanion/-/typanion-3.7.1.tgz#5fceb57a2fa0c0a5beca25a7e90ac2a420863709" + resolved "https://registry.npmjs.org/typanion/-/typanion-3.7.1.tgz" integrity sha512-g2QDI/ZLpuEor9EnJ1b7s9S2QSJgNCPBw9ZCSkQdqXNjg5ZQs4mASgW/elVifSxISFwBeMaIAmMBP5luAOIKAw== type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== dependencies: prelude-ls "^1.2.1" type-fest@^0.20.2: version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== type-fest@^0.21.3: version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== type-fest@^2.12.1: version "2.12.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.12.2.tgz#80a53614e6b9b475eb9077472fb7498dc7aa51d0" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.12.2.tgz" integrity sha512-qt6ylCGpLjZ7AaODxbpyBZSs9fCI9SkL3Z9q2oxMBQhs/uyY+VD8jHA8ULCGmWQJlBgqvO3EJeAngOHD8zQCrQ== typedarray@^0.0.6: version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= typescript@^4.6.3: version "4.6.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.3.tgz#eefeafa6afdd31d725584c67a0eaba80f6fc6c6c" + resolved "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz" integrity sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw== uglify-js@^3.1.4: version "3.15.3" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.15.3.tgz#9aa82ca22419ba4c0137642ba0df800cb06e0471" + resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.3.tgz" integrity sha512-6iCVm2omGJbsu3JWac+p6kUiOpg3wFO2f8lIXjfEb8RrmLjzog1wTPMmwKB7swfzzqxj9YM+sGUM++u1qN4qJg== unbox-primitive@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz" integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== dependencies: function-bind "^1.1.1" @@ -5610,12 +5688,12 @@ unbox-primitive@^1.0.1: unc-path-regex@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" + resolved "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz" integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= unified@^10.0.0: version "10.1.1" - resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.1.tgz#345e349e3ab353ab612878338eb9d57b4dea1d46" + resolved "https://registry.npmjs.org/unified/-/unified-10.1.1.tgz" integrity sha512-v4ky1+6BN9X3pQrOdkFIPWAaeDsHPE1svRDxq7YpTc2plkIqFMwukfqM+l0ewpP9EfwARlt9pPFAeWYhHm8X9w== dependencies: "@types/unist" "^2.0.0" @@ -5628,7 +5706,7 @@ unified@^10.0.0: unified@^10.1.2: version "10.1.2" - resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df" + resolved "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz" integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q== dependencies: "@types/unist" "^2.0.0" @@ -5641,14 +5719,14 @@ unified@^10.1.2: unist-builder@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-3.0.0.tgz#728baca4767c0e784e1e64bb44b5a5a753021a04" + resolved "https://registry.npmjs.org/unist-builder/-/unist-builder-3.0.0.tgz" integrity sha512-GFxmfEAa0vi9i5sd0R2kcrI9ks0r82NasRq5QHh2ysGngrc6GiqD5CDf1FjPenY4vApmFASBIIlk/jj5J5YbmQ== dependencies: "@types/unist" "^2.0.0" unist-util-filter@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/unist-util-filter/-/unist-util-filter-4.0.0.tgz#59bc7960bb2cfd34cc086301090540bdb5580a86" + resolved "https://registry.npmjs.org/unist-util-filter/-/unist-util-filter-4.0.0.tgz" integrity sha512-H4iTOv2p+n83xjhx7eGFA3zSx7Xcv3Iv9lNQRpXiR8dmm9LtslhyjVlQrZLbkk4jwUrJgc8PPGkOOrfhb76s4Q== dependencies: "@types/unist" "^2.0.0" @@ -5657,29 +5735,29 @@ unist-util-filter@^4.0.0: unist-util-generated@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.0.tgz#86fafb77eb6ce9bfa6b663c3f5ad4f8e56a60113" + resolved "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.0.tgz" integrity sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw== unist-util-is@^5.0.0: version "5.1.1" - resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.1.1.tgz#e8aece0b102fa9bc097b0fef8f870c496d4a6236" + resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz" integrity sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ== unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz#96f4d543dfb0428edc01ebb928570b602d280c4c" + resolved "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz" integrity sha512-xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw== dependencies: "@types/unist" "^2.0.0" unist-util-position@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-4.0.1.tgz#f8484b2da19a897a0180556d160c28633070dbb9" + resolved "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.1.tgz" integrity sha512-mgy/zI9fQ2HlbOtTdr2w9lhVaiFUHWQnZrFF2EUoVOqtAUdzqMtNiD99qA5a1IcjWVR8O6aVYE9u7Z2z1v0SQA== unist-util-remove-position@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz#d5b46a7304ac114c8d91990ece085ca7c2c135c8" + resolved "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz" integrity sha512-0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ== dependencies: "@types/unist" "^2.0.0" @@ -5687,14 +5765,14 @@ unist-util-remove-position@^4.0.0: unist-util-stringify-position@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.0.tgz#d517d2883d74d0daa0b565adc3d10a02b4a8cde9" + resolved "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.0.tgz" integrity sha512-SdfAl8fsDclywZpfMDTVDxA2V7LjtRDTOFd44wUJamgl6OlVngsqWjxvermMYf60elWHbxhuRCZml7AnuXCaSA== dependencies: "@types/unist" "^2.0.0" unist-util-visit-parents@^4.0.0: version "4.1.1" - resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz#e83559a4ad7e6048a46b1bdb22614f2f3f4724f2" + resolved "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz" integrity sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw== dependencies: "@types/unist" "^2.0.0" @@ -5702,7 +5780,7 @@ unist-util-visit-parents@^4.0.0: unist-util-visit-parents@^5.0.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz#44bbc5d25f2411e7dfc5cecff12de43296aa8521" + resolved "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz" integrity sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg== dependencies: "@types/unist" "^2.0.0" @@ -5710,7 +5788,7 @@ unist-util-visit-parents@^5.0.0: unist-util-visit@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-3.1.0.tgz#9420d285e1aee938c7d9acbafc8e160186dbaf7b" + resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-3.1.0.tgz" integrity sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA== dependencies: "@types/unist" "^2.0.0" @@ -5719,7 +5797,7 @@ unist-util-visit@^3.0.0: unist-util-visit@^4.0.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.0.tgz#f41e407a9e94da31594e6b1c9811c51ab0b3d8f5" + resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz" integrity sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ== dependencies: "@types/unist" "^2.0.0" @@ -5728,38 +5806,38 @@ unist-util-visit@^4.0.0: upper-case-first@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-2.0.2.tgz#992c3273f882abd19d1e02894cc147117f844324" + resolved "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz" integrity sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg== dependencies: tslib "^2.0.3" upper-case@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-2.0.2.tgz#d89810823faab1df1549b7d97a76f8662bae6f7a" + resolved "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz" integrity sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg== dependencies: tslib "^2.0.3" uri-js@^4.2.2: version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= uuid@^8.3.2: version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== uvu@^0.5.0: version "0.5.2" - resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.2.tgz#c145e7f4b5becf80099cf22fd8a4a05f0112b2c0" + resolved "https://registry.npmjs.org/uvu/-/uvu-0.5.2.tgz" integrity sha512-m2hLe7I2eROhh+tm3WE5cTo/Cv3WQA7Oc9f7JB6uWv+/zVKvfAm53bMyOoGOSZeQ7Ov2Fu9pLhFr7p07bnT20w== dependencies: dequal "^2.0.0" @@ -5770,17 +5848,17 @@ uvu@^0.5.0: v8-compile-cache@^2.0.3: version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz" integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== v8flags@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-4.0.0.tgz#dcacd1e0b20a7919cc48022b1bf2d95adb175e83" + resolved "https://registry.npmjs.org/v8flags/-/v8flags-4.0.0.tgz" integrity sha512-83N0OkTbn6gOjJ2awNuzuK4czeGxwEwBoTqlhBZhnp8o0IJ72mXRQKphj/azwRf3acbDJZYZhbOPEJHd884ELg== vfile-location@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-4.0.1.tgz#06f2b9244a3565bef91f099359486a08b10d3a95" + resolved "https://registry.npmjs.org/vfile-location/-/vfile-location-4.0.1.tgz" integrity sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw== dependencies: "@types/unist" "^2.0.0" @@ -5788,7 +5866,7 @@ vfile-location@^4.0.0: vfile-message@^3.0.0: version "3.0.2" - resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.0.2.tgz#db7eaebe7fecb853010f2ef1664427f52baf8f74" + resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-3.0.2.tgz" integrity sha512-UUjZYIOg9lDRwwiBAuezLIsu9KlXntdxwG+nXnjuQAHvBpcX3x0eN8h+I7TkY5nkCXj+cWVp4ZqebtGBvok8ww== dependencies: "@types/unist" "^2.0.0" @@ -5796,7 +5874,7 @@ vfile-message@^3.0.0: vfile@^5.0.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.2.0.tgz#a32a646ff9251c274dbe8675644a39031025b369" + resolved "https://registry.npmjs.org/vfile/-/vfile-5.2.0.tgz" integrity sha512-ftCpb6pU8Jrzcqku8zE6N3Gi4/RkDhRwEXSWudzZzA2eEOn/cBpsfk9aulCUR+j1raRSAykYQap9u6j6rhUaCA== dependencies: "@types/unist" "^2.0.0" @@ -5806,29 +5884,29 @@ vfile@^5.0.0: wcwidth@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= dependencies: defaults "^1.0.3" web-namespaces@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.1.tgz#1010ff7c650eccb2592cebeeaf9a1b253fd40692" + resolved "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz" integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ== web-streams-polyfill@^3.0.3: version "3.2.1" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz" integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== webidl-conversions@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= whatwg-url@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= dependencies: tr46 "~0.0.3" @@ -5836,7 +5914,7 @@ whatwg-url@^5.0.0: which-boxed-primitive@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== dependencies: is-bigint "^1.0.1" @@ -5847,36 +5925,36 @@ which-boxed-primitive@^1.0.2: which-module@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= which@^1.2.14: version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== dependencies: isexe "^2.0.0" which@^2.0.1: version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" word-wrap@^1.2.3: version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== wordwrap@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz" integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= wrap-ansi@^6.2.0: version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== dependencies: ansi-styles "^4.0.0" @@ -5885,7 +5963,7 @@ wrap-ansi@^6.2.0: wrap-ansi@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -5894,37 +5972,37 @@ wrap-ansi@^7.0.0: wrappy@1: version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= xtend@^4.0.2, xtend@~4.0.1: version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== y18n@^4.0.0: version "4.0.3" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== y18n@^5.0.5: version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== yallist@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^1.10.2: version "1.10.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== yargs-parser@^18.1.2: version "18.1.3" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz" integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== dependencies: camelcase "^5.0.0" @@ -5932,12 +6010,12 @@ yargs-parser@^18.1.2: yargs-parser@^20.2.2: version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== yargs@^15.0.1: version "15.4.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== dependencies: cliui "^6.0.0" @@ -5954,7 +6032,7 @@ yargs@^15.0.1: yargs@^16.1.1: version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz" integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== dependencies: cliui "^7.0.2" @@ -5967,7 +6045,7 @@ yargs@^16.1.1: yup@^0.32.11: version "0.32.11" - resolved "https://registry.yarnpkg.com/yup/-/yup-0.32.11.tgz#d67fb83eefa4698607982e63f7ca4c5ed3cf18c5" + resolved "https://registry.npmjs.org/yup/-/yup-0.32.11.tgz" integrity sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg== dependencies: "@babel/runtime" "^7.15.4" @@ -5980,5 +6058,5 @@ yup@^0.32.11: zwitch@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.2.tgz#91f8d0e901ffa3d66599756dde7f57b17c95dce1" + resolved "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz" integrity sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==