From 1b1a0aa10c8f725e4798ae5f36245fce8090422d Mon Sep 17 00:00:00 2001 From: Zac Clifton Date: Tue, 31 Jan 2023 20:03:33 -0500 Subject: [PATCH 01/40] feat(logrocket): add request sanitizing and add user name and email to sessions --- .idea/misc.xml | 6 ++++++ apps/web/src/App.tsx | 23 +++++++++++++++++++++- apps/web/src/components/auth/LoginForm.tsx | 9 +++++++++ 3 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 .idea/misc.xml diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000000..3668dc8caa1 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx index 262c2f6983a..a77d392a7f5 100644 --- a/apps/web/src/App.tsx +++ b/apps/web/src/App.tsx @@ -40,7 +40,28 @@ import LogRocket from 'logrocket'; import setupLogRocketReact from 'logrocket-react'; if (LOGROCKET_ID && window !== undefined) { - LogRocket.init(LOGROCKET_ID); + LogRocket.init(LOGROCKET_ID, { + release: 'v0.11.0', + rootHostname: 'novu.co', + console: { + shouldAggregateConsoleErrors: true, + }, + network: { + requestSanitizer: (request) => { + // if the url contains token 'ignore' it + if (request.url.toLowerCase().indexOf('token') !== -1) { + // ignore the request response pair + return null; + } + + // remove Authorization header from logrocket + request.headers.Authorization = undefined; + + // otherwise log the request normally + return request; + }, + }, + }); setupLogRocketReact(LogRocket); } diff --git a/apps/web/src/components/auth/LoginForm.tsx b/apps/web/src/components/auth/LoginForm.tsx index de69b5a2016..6cb8d664f0d 100644 --- a/apps/web/src/components/auth/LoginForm.tsx +++ b/apps/web/src/components/auth/LoginForm.tsx @@ -8,11 +8,13 @@ import { Divider, Button as MantineButton, Center } from '@mantine/core'; import { AuthContext } from '../../store/authContext'; import { api } from '../../api/api.client'; +import { getUser } from '../../api/user'; import { PasswordInput, Button, colors, Input, Text } from '../../design-system'; import { GitHub } from '../../design-system/icons'; import { API_ROOT, IS_DOCKER_HOSTED } from '../../config'; import { useVercelParams } from '../../hooks/useVercelParams'; import { SignUpOriginEnum } from '@novu/shared'; +import LogRocket from 'logrocket'; type Props = { token?: string; @@ -59,6 +61,13 @@ export function LoginForm({ email, token }: Props) { try { const response = await mutateAsync(itemData); setToken((response as any).token); + + const user = await getUser(); + + LogRocket.identify(user.data._id, { + name: user.data.firstName + ' ' + user.data.lastName, + email: user.data.email, + }); if (isFromVercel) return; if (!token) navigate('/templates'); } catch (e: any) { From 1f7e5370020606d68ec28931b5e93836334c1dba Mon Sep 17 00:00:00 2001 From: Zac Clifton Date: Wed, 1 Feb 2023 16:41:31 -0500 Subject: [PATCH 02/40] fix(logrocket): move identifer to header and make release version dynamic --- .idea/misc.xml | 6 ------ apps/web/src/App.tsx | 3 ++- apps/web/src/components/auth/LoginForm.tsx | 8 -------- .../components/layout/components/HeaderNav.tsx | 18 +++++++++++++++++- 4 files changed, 19 insertions(+), 16 deletions(-) delete mode 100644 .idea/misc.xml diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 3668dc8caa1..00000000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx index a77d392a7f5..9e842ca0d9d 100644 --- a/apps/web/src/App.tsx +++ b/apps/web/src/App.tsx @@ -38,10 +38,11 @@ import { BrandPage } from './pages/brand/BrandPage'; import { SegmentProvider } from './store/segment.context'; import LogRocket from 'logrocket'; import setupLogRocketReact from 'logrocket-react'; +import packageJson from '../package.json'; if (LOGROCKET_ID && window !== undefined) { LogRocket.init(LOGROCKET_ID, { - release: 'v0.11.0', + release: packageJson.version, rootHostname: 'novu.co', console: { shouldAggregateConsoleErrors: true, diff --git a/apps/web/src/components/auth/LoginForm.tsx b/apps/web/src/components/auth/LoginForm.tsx index 6cb8d664f0d..7766fcfe434 100644 --- a/apps/web/src/components/auth/LoginForm.tsx +++ b/apps/web/src/components/auth/LoginForm.tsx @@ -8,13 +8,11 @@ import { Divider, Button as MantineButton, Center } from '@mantine/core'; import { AuthContext } from '../../store/authContext'; import { api } from '../../api/api.client'; -import { getUser } from '../../api/user'; import { PasswordInput, Button, colors, Input, Text } from '../../design-system'; import { GitHub } from '../../design-system/icons'; import { API_ROOT, IS_DOCKER_HOSTED } from '../../config'; import { useVercelParams } from '../../hooks/useVercelParams'; import { SignUpOriginEnum } from '@novu/shared'; -import LogRocket from 'logrocket'; type Props = { token?: string; @@ -62,12 +60,6 @@ export function LoginForm({ email, token }: Props) { const response = await mutateAsync(itemData); setToken((response as any).token); - const user = await getUser(); - - LogRocket.identify(user.data._id, { - name: user.data.firstName + ' ' + user.data.lastName, - email: user.data.email, - }); if (isFromVercel) return; if (!token) navigate('/templates'); } catch (e: any) { diff --git a/apps/web/src/components/layout/components/HeaderNav.tsx b/apps/web/src/components/layout/components/HeaderNav.tsx index f2dbcb5baf8..11c2ae82ae5 100644 --- a/apps/web/src/components/layout/components/HeaderNav.tsx +++ b/apps/web/src/components/layout/components/HeaderNav.tsx @@ -10,9 +10,10 @@ import { Sun, Moon, Ellipse, Trash, Mail } from '../../../design-system/icons'; import { useLocalThemePreference } from '../../../hooks/useLocalThemePreference'; import { NotificationCenterWidget } from '../../widget/NotificationCenterWidget'; import { Tooltip } from '../../../design-system'; -import { INTERCOM_APP_ID } from '../../../config'; +import { INTERCOM_APP_ID, LOGROCKET_ID } from '../../../config'; import { SpotlightContext } from '../../../store/spotlightContext'; import { HEADER_HEIGHT } from '../constants'; +import LogRocket from 'logrocket'; type Props = {}; const menuItem = [ @@ -49,6 +50,21 @@ export function HeaderNav({}: Props) { }, [currentUser, currentOrganization]); } + if (LOGROCKET_ID) { + useEffect(() => { + if (currentUser && currentOrganization) { + let email = currentUser?.email; + email ??= ' '; + LogRocket.identify(currentUser?._id, { + name: currentUser?.firstName + ' ' + currentUser?.lastName, + email: email, + organizationId: currentOrganization._id, + organization: currentOrganization.name, + }); + } + }, [currentUser, currentOrganization]); + } + const themeTitle = () => { let title = 'Match System Appearance'; if (themeStatus === 'dark') { From 9e7da5ebe7168da1f617ab88129532fbcad3aa8a Mon Sep 17 00:00:00 2001 From: Roberto Cassino Date: Thu, 2 Feb 2023 10:17:59 +0000 Subject: [PATCH 03/40] Updating Cypress from version 12.1.0 to 12.3.0 --- apps/web/package.json | 2 +- pnpm-lock.yaml | 72 ++++++++++++++++++++++++++++++++----------- 2 files changed, 55 insertions(+), 19 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index 5d526db4e94..9a79371aeac 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -126,7 +126,7 @@ "@testing-library/jest-dom": "^4.2.4", "@types/react": "^17.0.0", "@types/testing-library__jest-dom": "^5.14.5", - "cypress": "^12.1.0", + "cypress": "^12.3.0", "cypress-localstorage-commands": "^1.7.0", "cypress-network-idle": "^1.11.2", "cypress-wait-until": "^1.7.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b1fb1326b6d..2b68d763d9a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -504,7 +504,7 @@ importers: babel-plugin-import: ^1.13.3 chart.js: ^3.7.1 customize-cra: ^1.0.0 - cypress: ^12.1.0 + cypress: ^12.3.0 cypress-localstorage-commands: ^1.7.0 cypress-network-idle: ^1.11.2 cypress-wait-until: ^1.7.2 @@ -561,7 +561,7 @@ importers: '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.5 '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 '@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.20.5 - '@cypress/react': 7.0.2_ruijhr2oz5fcnnlwuxcoqw7tii + '@cypress/react': 7.0.2_3nm5dejbsizrabz3o4ummfnf5q '@cypress/webpack-dev-server': 3.1.2_webpack@5.74.0 '@editorjs/editorjs': 2.23.2 '@editorjs/paragraph': 2.8.0 @@ -656,8 +656,8 @@ importers: '@storybook/react': 6.4.21_sd4ysh5ew7sghqnoje7e4qvhv4 '@testing-library/jest-dom': 4.2.4 '@types/testing-library__jest-dom': 5.14.5 - cypress: 12.1.0 - cypress-localstorage-commands: 1.7.0_cypress@12.1.0 + cypress: 12.5.0 + cypress-localstorage-commands: 1.7.0_cypress@12.5.0 cypress-network-idle: 1.11.2 cypress-wait-until: 1.7.2 eslint-plugin-cypress: 2.12.1_eslint@8.30.0 @@ -771,7 +771,7 @@ importers: prettier: 2.7.1 sinon: 9.2.4 supertest: 6.2.2 - ts-jest: 27.1.4_t4ldjoaolo4tjxxklyv3omdwf4 + ts-jest: 27.1.4_2zv7k5h6rtkokmofpwrobdeggm ts-loader: 8.3.0_vhanpkig4omek67hjhmtrlsh2y ts-node: 9.1.1_typescript@4.3.5 tsconfig-paths: 3.14.1 @@ -983,7 +983,7 @@ importers: nodemon: 2.0.15 prettier: 2.6.1 supertest: 6.2.2 - ts-jest: 27.1.4_t4ldjoaolo4tjxxklyv3omdwf4 + ts-jest: 27.1.4_2zv7k5h6rtkokmofpwrobdeggm ts-loader: 8.3.0_vhanpkig4omek67hjhmtrlsh2y ts-node: 9.1.1_typescript@4.3.5 tsconfig-paths: 3.14.1 @@ -16575,7 +16575,7 @@ packages: resolution: {integrity: sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==} engines: {node: '>=10'} - /@cypress/react/7.0.2_ruijhr2oz5fcnnlwuxcoqw7tii: + /@cypress/react/7.0.2_3nm5dejbsizrabz3o4ummfnf5q: resolution: {integrity: sha512-TTV7XNMDOO9mZUFWiGbd44Od/jqMVX/QbHYKQmK1XT3nIVFs0EvKJuHJmwN7wxLOR/+6twtyX6vTD8z8XBTliQ==} peerDependencies: '@types/react': ^16.9.16 || ^17.0.0 @@ -16587,7 +16587,7 @@ packages: optional: true dependencies: '@types/react': 17.0.43 - cypress: 12.1.0 + cypress: 12.5.0 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 dev: false @@ -24550,7 +24550,7 @@ packages: dependencies: '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 '@stdlib/utils-noop': 0.0.13 - minimist: 1.2.6 + minimist: 1.2.7 dev: false /@stdlib/complex-float32/0.0.7: @@ -27610,7 +27610,7 @@ packages: better-opn: 2.1.1 boxen: 5.1.2 chalk: 4.1.2 - cli-table3: 0.6.1 + cli-table3: 0.6.2 commander: 6.2.1 compression: 1.7.4 core-js: 3.24.0 @@ -35764,6 +35764,7 @@ packages: string-width: 4.2.3 optionalDependencies: colors: 1.4.0 + dev: true /cli-table3/0.6.2: resolution: {integrity: sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==} @@ -36002,6 +36003,7 @@ packages: resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} engines: {node: '>=0.1.90'} requiresBuild: true + dev: true /columnify/1.6.0: resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} @@ -37990,13 +37992,13 @@ packages: mocha: 10.2.0 dev: true - /cypress-localstorage-commands/1.7.0_cypress@12.1.0: + /cypress-localstorage-commands/1.7.0_cypress@12.5.0: resolution: {integrity: sha512-4v4FrDRPimMStWmiGikyN7OmO2rH0MLI7DMk76dBpb9/sJqCDwa7fAHTUDx6avUEDmO7TFQFgaT3OQTr1HqasQ==} engines: {node: '>=10.0.0'} peerDependencies: cypress: '>=2.1.0' dependencies: - cypress: 12.1.0 + cypress: 12.5.0 dev: true /cypress-network-idle/1.10.0: @@ -38061,8 +38063,8 @@ packages: yauzl: 2.10.0 dev: true - /cypress/12.1.0: - resolution: {integrity: sha512-7fz8N84uhN1+ePNDsfQvoWEl4P3/VGKKmAg+bJQFY4onhA37Ys+6oBkGbNdwGeC7n2QqibNVPhk8x3YuQLwzfw==} + /cypress/12.5.0: + resolution: {integrity: sha512-CRo1DIr0LoCE3SNb/kJ0TZM9dIdiy7fNlRp/YoPfAv+XOKZV27LQ7zZUi4lMmHIEo3K0dAN5+tJ/8eZc/Jmbyg==} engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0} hasBin: true requiresBuild: true @@ -38099,7 +38101,7 @@ packages: listr2: 3.14.0_enquirer@2.3.6 lodash: 4.17.21 log-symbols: 4.1.0 - minimist: 1.2.6 + minimist: 1.2.7 ospath: 1.2.2 pretty-bytes: 5.6.0 proxy-from-env: 1.0.0 @@ -38833,7 +38835,7 @@ packages: dependencies: acorn-node: 1.8.2 defined: 1.0.0 - minimist: 1.2.6 + minimist: 1.2.7 /dezalgo/1.0.3: resolution: {integrity: sha512-K7i4zNfT2kgQz3GylDw40ot9GAE47sFZ9EXHFSPP6zONLgH6kWXE0KWJchkbQJLBkRazq4APwZ4OwiFFlT95OQ==} @@ -49176,7 +49178,7 @@ packages: log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.3.0 - rxjs: 7.5.6 + rxjs: 7.8.0 through: 2.3.8 wrap-ansi: 7.0.0 @@ -54126,7 +54128,7 @@ packages: cosmiconfig: 7.0.1 klona: 2.0.5 postcss: 8.4.14 - semver: 7.3.7 + semver: 7.3.8 webpack: 5.74.0 /postcss-loader/6.2.1_xvg4ntyrrwt57qzvggqcbeozu4: @@ -61915,6 +61917,40 @@ packages: yargs-parser: 20.2.9 dev: true + /ts-jest/27.1.4_2zv7k5h6rtkokmofpwrobdeggm: + resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: '*' + jest: ^27.0.0 + typescript: '>=3.8 <5.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/jest': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@types/jest': 27.4.1 + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 27.5.1_ts-node@9.1.1 + jest-util: 27.5.1 + json5: 2.2.1 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.8 + typescript: 4.3.5 + yargs-parser: 20.2.9 + dev: true + /ts-jest/27.1.4_6wduk63hndnifocwptujn7mfjm: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} From 15a326843a2dcf56a3a37f82d764b84039f545ed Mon Sep 17 00:00:00 2001 From: Roberto Cassino Date: Thu, 2 Feb 2023 15:28:27 +0000 Subject: [PATCH 04/40] Updating Cypress from version 10.11.0 to 12.3.0 in apps widget --- apps/widget/package.json | 2 +- pnpm-lock.yaml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/widget/package.json b/apps/widget/package.json index f09f11306e5..d15360d5e07 100644 --- a/apps/widget/package.json +++ b/apps/widget/package.json @@ -69,7 +69,7 @@ "@types/react-router-dom": "^5.1.7", "craco-antd": "^1.19.0", "cross-env": "^7.0.3", - "cypress": "10.11.0", + "cypress": "12.3.0", "cypress-intellij-reporter": "^0.0.7", "cypress-network-idle": "^1.10.0", "html-webpack-plugin": "5.5.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2b68d763d9a..5714ffd21d6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -805,7 +805,7 @@ importers: chroma-js: ^2.4.2 craco-antd: ^1.19.0 cross-env: ^7.0.3 - cypress: 10.11.0 + cypress: 12.3.0 cypress-intellij-reporter: ^0.0.7 cypress-network-idle: ^1.10.0 eslint-plugin-cypress: ^2.12.1 @@ -876,7 +876,7 @@ importers: '@types/react-router-dom': 5.3.3 craco-antd: 1.19.0_qgdfbn6tdkltko3yijanxrfptq cross-env: 7.0.3 - cypress: 10.11.0 + cypress: 12.3.0 cypress-intellij-reporter: 0.0.7 cypress-network-idle: 1.10.0 html-webpack-plugin: 5.5.0_webpack@4.44.2 @@ -38013,9 +38013,9 @@ packages: resolution: {integrity: sha512-uZ+M8/MqRcpf+FII/UZrU7g1qYZ4aVlHcgyVopnladyoBrpoaMJ4PKZDrdOJ05H5RHbr7s9Tid635X3E+ZLU/Q==} dev: true - /cypress/10.11.0: - resolution: {integrity: sha512-lsaE7dprw5DoXM00skni6W5ElVVLGAdRUUdZjX2dYsGjbY/QnpzWZ95Zom1mkGg0hAaO/QVTZoFVS7Jgr/GUPA==} - engines: {node: '>=12.0.0'} + /cypress/12.3.0: + resolution: {integrity: sha512-ZQNebibi6NBt51TRxRMYKeFvIiQZ01t50HSy7z/JMgRVqBUey3cdjog5MYEbzG6Ktti5ckDt1tfcC47lmFwXkw==} + engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0} hasBin: true requiresBuild: true dependencies: @@ -38051,7 +38051,7 @@ packages: listr2: 3.14.0_enquirer@2.3.6 lodash: 4.17.21 log-symbols: 4.1.0 - minimist: 1.2.6 + minimist: 1.2.7 ospath: 1.2.2 pretty-bytes: 5.6.0 proxy-from-env: 1.0.0 From 2a6ead6bc228596d83d403abd3d353cdbad27a4c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 2 Feb 2023 08:53:24 +0000 Subject: [PATCH 05/40] chore(deps): update dependency typescript to v4.9.5 --- apps/api/package.json | 2 +- apps/inbound-mail/package.json | 2 +- apps/web/package.json | 4 +- apps/webhook/package.json | 2 +- apps/widget/package.json | 2 +- apps/ws/package.json | 2 +- libs/dal/package.json | 2 +- libs/embed/package.json | 2 +- libs/shared/package.json | 2 +- libs/testing/package.json | 2 +- package.json | 2 +- packages/application-generic/package.json | 2 +- packages/client/package.json | 2 +- packages/headless/package.json | 2 +- packages/nest/package.json | 2 +- packages/node/package.json | 2 +- .../notification-center-angular/package.json | 2 +- packages/notification-center-vue/package.json | 2 +- packages/stateless/package.json | 2 +- pnpm-lock.yaml | 2527 +++++++---------- providers/apns/package.json | 2 +- providers/burst-sms/package.json | 2 +- providers/discord/package.json | 2 +- providers/emailjs/package.json | 2 +- providers/expo/package.json | 2 +- providers/fcm/package.json | 2 +- providers/firetext/package.json | 2 +- providers/gupshup/package.json | 2 +- providers/infobip/package.json | 2 +- providers/mailersend/package.json | 2 +- providers/mailgun/package.json | 2 +- providers/mailjet/package.json | 2 +- providers/mandrill/package.json | 2 +- providers/ms-teams/package.json | 2 +- providers/netcore/package.json | 2 +- providers/nexmo/package.json | 2 +- providers/nodemailer/package.json | 2 +- providers/outlook365/package.json | 2 +- providers/plivo/package.json | 2 +- providers/postmark/package.json | 2 +- providers/sendgrid/package.json | 2 +- providers/sendinblue/package.json | 2 +- providers/slack/package.json | 2 +- providers/sms77/package.json | 2 +- providers/sns/package.json | 2 +- providers/sparkpost/package.json | 2 +- providers/telnyx/package.json | 2 +- providers/termii/package.json | 2 +- providers/twilio/package.json | 2 +- 49 files changed, 1020 insertions(+), 1605 deletions(-) diff --git a/apps/api/package.json b/apps/api/package.json index f2926d321fa..5a37ee4d2f0 100644 --- a/apps/api/package.json +++ b/apps/api/package.json @@ -136,7 +136,7 @@ "ts-loader": "9.2.8", "ts-node": "^9.0.0", "tsconfig-paths": "3.14.1", - "typescript": "4.3.5" + "typescript": "4.9.5" }, "lint-staged": { "*.{js,jsx,ts,tsx}": [ diff --git a/apps/inbound-mail/package.json b/apps/inbound-mail/package.json index 20321791b9f..91c3cd79c12 100644 --- a/apps/inbound-mail/package.json +++ b/apps/inbound-mail/package.json @@ -51,6 +51,6 @@ "ts-loader": "^8.0.8", "ts-node": "^9.0.0", "tsconfig-paths": "^3.9.0", - "typescript": "4.3.5" + "typescript": "4.9.5" } } diff --git a/apps/web/package.json b/apps/web/package.json index c2d22f533e2..a687518edd3 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -103,7 +103,7 @@ "react-use-intercom": "^2.0.0", "rimraf": "^3.0.2", "storybook-dark-mode": "^1.0.8", - "typescript": "4.5.4", + "typescript": "4.9.5", "uniqid": "^5.3.0", "uuid": "8.3.2", "web-vitals": "^1.0.1", @@ -137,7 +137,7 @@ "nodemon": "^2.0.15", "react-error-overlay": "6.0.11", "start-server-and-test": "1.15.3", - "typescript": "4.6.3", + "typescript": "4.9.5", "webpack": "^5.74.0" }, "browserslist": { diff --git a/apps/webhook/package.json b/apps/webhook/package.json index 27ead47a130..ccd54000a56 100644 --- a/apps/webhook/package.json +++ b/apps/webhook/package.json @@ -73,6 +73,6 @@ "ts-loader": "^8.0.8", "ts-node": "^9.0.0", "tsconfig-paths": "^3.9.0", - "typescript": "4.3.5" + "typescript": "4.9.5" } } diff --git a/apps/widget/package.json b/apps/widget/package.json index f09f11306e5..200c3a062c0 100644 --- a/apps/widget/package.json +++ b/apps/widget/package.json @@ -78,7 +78,7 @@ "less": "^4.1.0", "less-loader": "4.1.0", "start-server-and-test": "1.15.3", - "typescript": "4.3.5", + "typescript": "4.9.5", "webpack-dev-server": "4.11.1" }, "browserslist": { diff --git a/apps/ws/package.json b/apps/ws/package.json index a3766b70ecb..2a42f8d0d56 100644 --- a/apps/ws/package.json +++ b/apps/ws/package.json @@ -72,7 +72,7 @@ "ts-loader": "^8.0.8", "ts-node": "^9.0.0", "tsconfig-paths": "^3.9.0", - "typescript": "4.3.5" + "typescript": "4.9.5" }, "workspaces": { "nohoist": [ diff --git a/libs/dal/package.json b/libs/dal/package.json index 9b8600950bd..830fa8bddd7 100644 --- a/libs/dal/package.json +++ b/libs/dal/package.json @@ -65,7 +65,7 @@ "nodemon": "^2.0.3", "ts-node": "^9.0.0", "tsconfig-paths": "^3.9.0", - "typescript": "4.3.5" + "typescript": "4.9.5" }, "lint-staged": { "*.{js,jsx,ts,tsx}": [ diff --git a/libs/embed/package.json b/libs/embed/package.json index 08a450ea271..fab9a204cab 100644 --- a/libs/embed/package.json +++ b/libs/embed/package.json @@ -125,7 +125,7 @@ "ts-jest": "^27.1.3", "ts-node": "^7.0.1", "tslib": "^2.3.1", - "typescript": "4.3.5" + "typescript": "4.9.5" }, "dependencies": { "@novu/notification-center": "^0.11.0", diff --git a/libs/shared/package.json b/libs/shared/package.json index c1188526687..608dc23c1ea 100644 --- a/libs/shared/package.json +++ b/libs/shared/package.json @@ -34,7 +34,7 @@ "devDependencies": { "@types/bluebird": "^3.5.24", "rimraf": "^3.0.2", - "typescript": "4.3.5" + "typescript": "4.9.5" }, "lint-staged": { "*.{js,jsx,ts,tsx}": [ diff --git a/libs/testing/package.json b/libs/testing/package.json index a805ea90b68..b1a0d501016 100644 --- a/libs/testing/package.json +++ b/libs/testing/package.json @@ -53,7 +53,7 @@ "nodemon": "^2.0.3", "ts-node": "^9.0.0", "tsconfig-paths": "^3.9.0", - "typescript": "4.3.5" + "typescript": "4.9.5" }, "lint-staged": { "*.{js,jsx,ts,tsx}": [ diff --git a/package.json b/package.json index e6a839104e8..69a69d32784 100644 --- a/package.json +++ b/package.json @@ -132,7 +132,7 @@ "tar": "^6.1.11", "ts-jest": "27.0.5", "ts-node": "^9.1.1", - "typescript": "4.3.5", + "typescript": "4.9.5", "wait-port": "^0.3.0" }, "workspaces": { diff --git a/packages/application-generic/package.json b/packages/application-generic/package.json index ca432cf2d87..584bc5fe9bd 100644 --- a/packages/application-generic/package.json +++ b/packages/application-generic/package.json @@ -86,7 +86,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/packages/client/package.json b/packages/client/package.json index ae4b80ef719..b612edf1cd9 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -56,7 +56,7 @@ "rimraf": "^3.0.2", "ts-jest": "^27.0.5", "typedoc": "^0.23.0", - "typescript": "4.1.3" + "typescript": "4.9.5" }, "prettier": { "singleQuote": true diff --git a/packages/headless/package.json b/packages/headless/package.json index 4895c99261c..109401c47d9 100644 --- a/packages/headless/package.json +++ b/packages/headless/package.json @@ -42,7 +42,7 @@ "jest-environment-jsdom": "^29.3.1", "ts-jest": "^29.0.3", "typedoc": "^0.23.0", - "typescript": "4.1.3" + "typescript": "4.9.5" }, "prettier": { "singleQuote": true diff --git a/packages/nest/package.json b/packages/nest/package.json index ef640e1abee..24816fcd3a0 100644 --- a/packages/nest/package.json +++ b/packages/nest/package.json @@ -54,7 +54,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/packages/node/package.json b/packages/node/package.json index 912745393ad..21bdf671a15 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -64,7 +64,7 @@ "run-p": "0.0.0", "ts-jest": "^27.0.5", "typedoc": "^0.23.0", - "typescript": "4.1.3" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/packages/notification-center-angular/package.json b/packages/notification-center-angular/package.json index 4ae957b975b..988b522f508 100644 --- a/packages/notification-center-angular/package.json +++ b/packages/notification-center-angular/package.json @@ -54,7 +54,7 @@ "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "~2.0.0", "ng-packagr": "^15.0.0", - "typescript": "~4.8.2" + "typescript": "~4.9.0" }, "gitHead": "1a8fa1bd98790810d7fb69c4dc0e82d33c20eec2" } diff --git a/packages/notification-center-vue/package.json b/packages/notification-center-vue/package.json index eb795278585..a187f70dc60 100644 --- a/packages/notification-center-vue/package.json +++ b/packages/notification-center-vue/package.json @@ -40,7 +40,7 @@ "eslint-plugin-vue": "^9.3.0", "npm-run-all": "^4.1.5", "prettier": "^2.7.1", - "typescript": "~4.7.4", + "typescript": "~4.9.0", "vite": "^4.0.0", "vue": "^3.2.45", "vue-tsc": "^1.0.12" diff --git a/packages/stateless/package.json b/packages/stateless/package.json index 462a9de80f9..14568ac083b 100644 --- a/packages/stateless/package.json +++ b/packages/stateless/package.json @@ -63,7 +63,7 @@ "run-p": "0.0.0", "ts-jest": "^27.0.5", "typedoc": "^0.23.0", - "typescript": "4.1.3" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 40fde753d73..a87bc0ecc54 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -74,34 +74,34 @@ importers: ts-jest: 27.0.5 ts-node: ^9.1.1 tslib: ^2.0.0 - typescript: 4.3.5 + typescript: 4.9.5 wait-port: ^0.3.0 dependencies: nx: 14.5.10 tslib: 2.4.0 devDependencies: - '@auto-it/npm': 10.36.5_y4qulqmukjoftrdyqj7awk6qby - '@auto-it/released': 10.36.5_y4qulqmukjoftrdyqj7awk6qby + '@auto-it/npm': 10.36.5_gdxbtungus7rykd22mbjbmvap4 + '@auto-it/released': 10.36.5_gdxbtungus7rykd22mbjbmvap4 '@commitlint/cli': 17.4.2 '@commitlint/config-angular': 13.2.0 '@commitlint/config-conventional': 17.4.2 '@cspell/eslint-plugin': 6.14.3 '@nrwl/cli': 13.10.6 - '@nrwl/eslint-plugin-nx': 13.10.6_5xdn52oxisihs2i563a7t6joxi + '@nrwl/eslint-plugin-nx': 13.10.6_fkaxtw3iwc36oe2k5ldj4prhim '@nrwl/jest': 13.10.6_nx@14.5.10+ts-node@9.1.1 - '@nrwl/linter': 13.10.6_qbwd7w4spnslcwxdd77ajgkuqi + '@nrwl/linter': 13.10.6_f7pzrhfctnesxmnbiwt5xcr6ki '@nrwl/nx-cloud': 13.2.1_chalk@4.1.2+rxjs@6.5.5 '@nrwl/tao': 13.10.6 - '@nrwl/workspace': 13.10.6_to7hogz73prokpmozi6ug4plku + '@nrwl/workspace': 13.10.6_ytufk5dow5t2kzcvjl63xtkwwa '@octokit/core': 3.6.0 '@pnpm/filter-workspace-packages': 4.4.35_@pnpm+logger@4.0.0 '@pnpm/logger': 4.0.0 '@types/inquirer': 8.2.5 '@types/jest': 27.4.0 '@types/node': 16.11.7 - '@typescript-eslint/eslint-plugin': 5.29.0_yb4yj2f76b5nauodfyweowgpmu - '@typescript-eslint/parser': 5.29.0_cl6qtdo3npn4kngw26aibg642e - auto: 10.36.5_y4qulqmukjoftrdyqj7awk6qby + '@typescript-eslint/eslint-plugin': 5.29.0_ztkfd272csi3rqpnooxm5u2ixi + '@typescript-eslint/parser': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe + auto: 10.36.5_gdxbtungus7rykd22mbjbmvap4 chalk: 4.1.2 chalk-animation: 1.6.0 commitizen: 4.2.4 @@ -117,7 +117,7 @@ importers: eslint-config-prettier: 7.2.0_eslint@7.32.0 eslint-import-resolver-webpack: 0.13.2_cpbkthufuku27qbvucozysaw6q eslint-plugin-eslint-comments: 3.2.0_eslint@7.32.0 - eslint-plugin-functional: 3.7.2_cl6qtdo3npn4kngw26aibg642e + eslint-plugin-functional: 3.7.2_jofidmxrjzhj7l6vknpw5ecvfe eslint-plugin-import: 2.26.0_yxksxet5hkhlzmpka35q75ehqq eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0 eslint-plugin-prettier: 3.4.1_2n7boyzr6bebiv55d56maw7y34 @@ -146,9 +146,9 @@ importers: shelljs: 0.8.5 stop-only: 3.1.2 tar: 6.1.11 - ts-jest: 27.0.5_5bp5w3iyctn6ezpueukxey34h4 - ts-node: 9.1.1_typescript@4.3.5 - typescript: 4.3.5 + ts-jest: 27.0.5_2hxkpkn5pxklfqzhyey6ik757y + ts-node: 9.1.1_typescript@4.9.5 + typescript: 4.9.5 wait-port: 0.3.0 apps/api: @@ -263,7 +263,7 @@ importers: ts-node: ^9.0.0 tsconfig-paths: 3.14.1 twilio: ^3.72.0 - typescript: 4.3.5 + typescript: 4.9.5 uuid: ^8.3.2 dependencies: '@aws-sdk/client-s3': 3.252.0 @@ -359,7 +359,7 @@ importers: devDependencies: '@faker-js/faker': 6.1.1 '@nestjs/cli': 9.0.0 - '@nestjs/schematics': 9.0.1_jzdczmpfje4274sct5gg4q5iim + '@nestjs/schematics': 9.0.1_n7i3t5jmyrdrkypb5pvfihcmg4 '@nestjs/testing': 9.0.2_hcykwrqddffqd4ecobanjogwlq '@types/bcrypt': 3.0.1 '@types/bull': 3.15.8 @@ -375,10 +375,10 @@ importers: mocha: 8.4.0 nodemon: 2.0.15 sinon: 9.2.4 - ts-loader: 9.2.8_vhanpkig4omek67hjhmtrlsh2y - ts-node: 9.1.1_typescript@4.3.5 + ts-loader: 9.2.8_hhrrucqyg4eysmfpujvov2ym5u + ts-node: 9.1.1_typescript@4.9.5 tsconfig-paths: 3.14.1 - typescript: 4.3.5 + typescript: 4.9.5 apps/inbound-mail: specifiers: @@ -410,7 +410,7 @@ importers: ts-loader: ^8.0.8 ts-node: ^9.0.0 tsconfig-paths: ^3.9.0 - typescript: 4.3.5 + typescript: 4.9.5 winston: ^1.0.0 dependencies: '@novu/shared': link:../../libs/shared @@ -439,11 +439,11 @@ importers: cross-env: 7.0.3 nodemon: 2.0.15 prettier: 2.7.1 - ts-jest: 27.1.4_j7nn2i564qi7dqqkhb4klwcx54 - ts-loader: 8.3.0_vhanpkig4omek67hjhmtrlsh2y - ts-node: 9.1.1_typescript@4.3.5 + ts-jest: 27.1.4_cnngzrja2umb46xxazlucyx2qu + ts-loader: 8.4.0_hhrrucqyg4eysmfpujvov2ym5u + ts-node: 9.1.1_typescript@4.9.5 tsconfig-paths: 3.14.1 - typescript: 4.3.5 + typescript: 4.9.5 apps/web: specifiers: @@ -550,7 +550,7 @@ importers: rimraf: ^3.0.2 start-server-and-test: 1.15.3 storybook-dark-mode: ^1.0.8 - typescript: 4.5.4 + typescript: 4.9.5 uniqid: ^5.3.0 uuid: 8.3.2 web-vitals: ^1.0.1 @@ -582,7 +582,7 @@ importers: '@segment/analytics-next': 1.48.0 '@sentry/react': 6.19.3_react@17.0.2 '@sentry/tracing': 6.19.3 - '@storybook/addon-docs': 6.4.19_jppbkhna5nplm5c3gyclegwbgu + '@storybook/addon-docs': 6.4.19_7ebr4ytxkguthd4gam2nda6ycm '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@tanstack/react-query': 4.20.4_sfoxds7t5ydpegc3knd667wn6m '@tanstack/react-query-devtools': 4.20.4_wplpwlha5mfszywuplsi6l6p3q @@ -630,13 +630,13 @@ importers: react-is: 18.2.0 react-password-strength-bar: 0.4.1_sfoxds7t5ydpegc3knd667wn6m react-router-dom: 6.2.2_sfoxds7t5ydpegc3knd667wn6m - react-scripts: 5.0.1_k6kqfqo72tcqgn4fymyddvykia + react-scripts: 5.0.1_pbnbv4grzz5lfjq3whhcbdqw4i react-syntax-highlighter: 15.5.0_react@17.0.2 react-table: 7.7.0_react@17.0.2 react-use-intercom: 2.0.0_sfoxds7t5ydpegc3knd667wn6m rimraf: 3.0.2 storybook-dark-mode: 1.0.9_la3mwacrnx4fdpsr33k2i72zzy - typescript: 4.5.4 + typescript: 4.9.5 uniqid: 5.4.0 uuid: 8.3.2 web-vitals: 1.1.2 @@ -651,11 +651,11 @@ importers: '@novu/dal': link:../../libs/dal '@novu/testing': link:../../libs/testing '@storybook/addon-actions': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 - '@storybook/addon-essentials': 6.4.19_bgx6goxjd2ohlfqrqjsmpskrqe + '@storybook/addon-essentials': 6.4.19_47iqxj5iozjgqrbctm5xbfsyvi '@storybook/addon-links': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/node-logger': 6.4.19 - '@storybook/preset-create-react-app': 4.1.0_ujumslsvp7ztyp4cyxdmxqmjfa - '@storybook/react': 6.4.21_sd4ysh5ew7sghqnoje7e4qvhv4 + '@storybook/preset-create-react-app': 4.1.0_toosg7fcpy2dyvp4r6gagkuwny + '@storybook/react': 6.4.21_hbm3t5634ikvlrv7alx2gv6vkm '@testing-library/jest-dom': 4.2.4 '@types/testing-library__jest-dom': 5.14.5 cypress: 12.1.0 @@ -723,7 +723,7 @@ importers: ts-loader: ^8.0.8 ts-node: ^9.0.0 tsconfig-paths: ^3.9.0 - typescript: 4.3.5 + typescript: 4.9.5 dependencies: '@godaddy/terminus': 4.10.2 '@nestjs/axios': 0.1.0_jeqwo7fzb4lebm6nefyhh5xlci @@ -755,7 +755,7 @@ importers: socket.io: 4.5.4 devDependencies: '@nestjs/cli': 7.6.0 - '@nestjs/schematics': 9.0.4_typescript@4.3.5 + '@nestjs/schematics': 9.0.4_typescript@4.9.5 '@nestjs/testing': 9.2.1_wdbvfsxfdwzlwdfiyh2gynjl4m '@types/chai': 4.3.4 '@types/express': 4.17.13 @@ -773,11 +773,11 @@ importers: prettier: 2.7.1 sinon: 9.2.4 supertest: 6.2.2 - ts-jest: 27.1.4_2zv7k5h6rtkokmofpwrobdeggm - ts-loader: 8.3.0_vhanpkig4omek67hjhmtrlsh2y - ts-node: 9.1.1_typescript@4.3.5 + ts-jest: 27.1.4_nbjllzzdoewiqiaqtdm64bcnbu + ts-loader: 8.4.0_hhrrucqyg4eysmfpujvov2ym5u + ts-node: 9.1.1_typescript@4.9.5 tsconfig-paths: 3.14.1 - typescript: 4.3.5 + typescript: 4.9.5 apps/widget: specifiers: @@ -830,7 +830,7 @@ importers: rimraf: ^3.0.2 socket.io-client: 4.5.4 start-server-and-test: 1.15.3 - typescript: 4.3.5 + typescript: 4.9.5 web-vitals: ^0.2.4 webfontloader: ^1.6.28 webpack-dev-server: 4.11.1 @@ -860,13 +860,13 @@ importers: react-is: 18.2.0 react-refresh: 0.11.0 react-router-dom: 6.2.2_sfoxds7t5ydpegc3knd667wn6m - react-scripts: 4.0.3_x42bqxgwliwa4f7rcvhhje7sti + react-scripts: 4.0.3_oatgdhaahtizs2uezdzbohxvne rimraf: 3.0.2 socket.io-client: 4.5.4 web-vitals: 0.2.4 webfontloader: 1.6.28 devDependencies: - '@craco/craco': 6.4.3_xuuxweu7ep5wbn6yf3ru4tnrs4 + '@craco/craco': 6.4.3_u2c7aebudwn7l5c6nel6iah7lm '@emotion/babel-plugin': 11.10.5_@babel+core@7.20.5 '@faker-js/faker': 6.1.1 '@novu/dal': link:../../libs/dal @@ -887,7 +887,7 @@ importers: less: 4.1.2 less-loader: 4.1.0_less@4.1.2+webpack@4.44.2 start-server-and-test: 1.15.3 - typescript: 4.3.5 + typescript: 4.9.5 webpack-dev-server: 4.11.1_webpack@4.44.2 apps/ws: @@ -939,7 +939,7 @@ importers: ts-loader: ^8.0.8 ts-node: ^9.0.0 tsconfig-paths: ^3.9.0 - typescript: 4.3.5 + typescript: 4.9.5 dependencies: '@godaddy/terminus': 4.10.2 '@nestjs/common': 7.6.18_zwm3awyme3cyuzqifmn3bn6qw4 @@ -972,7 +972,7 @@ importers: socket.io: 4.5.4 devDependencies: '@nestjs/cli': 7.6.0 - '@nestjs/schematics': 7.3.1_typescript@4.3.5 + '@nestjs/schematics': 7.3.1_typescript@4.9.5 '@nestjs/testing': 7.6.18_ttipsy5on4236kecc7spdrc4wq '@types/express': 4.17.13 '@types/jest': 27.4.1 @@ -985,11 +985,11 @@ importers: nodemon: 2.0.15 prettier: 2.6.1 supertest: 6.2.2 - ts-jest: 27.1.4_2zv7k5h6rtkokmofpwrobdeggm - ts-loader: 8.3.0_vhanpkig4omek67hjhmtrlsh2y - ts-node: 9.1.1_typescript@4.3.5 + ts-jest: 27.1.4_nbjllzzdoewiqiaqtdm64bcnbu + ts-loader: 8.4.0_hhrrucqyg4eysmfpujvov2ym5u + ts-node: 9.1.1_typescript@4.9.5 tsconfig-paths: 3.14.1 - typescript: 4.3.5 + typescript: 4.9.5 docs: specifiers: @@ -1029,9 +1029,9 @@ importers: typescript: ^4.6.4 url-loader: ^4.1.1 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-google-gtag': 2.1.0_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/preset-classic': 2.0.0-beta.20_2hyivt5o3vfyxtbjfzo6vckini + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-google-gtag': 2.1.0_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/preset-classic': 2.0.0-beta.20_2cacrxcy7ciw66aaolgc43z4xm '@mdx-js/react': 1.6.22_react@17.0.2 '@svgr/webpack': 6.2.1 clsx: 1.1.1 @@ -1064,7 +1064,7 @@ importers: stylelint-config-standard: 25.0.0_stylelint@14.9.1 stylelint-order: 5.0.0_stylelint@14.9.1 stylelint-scss: 4.2.0_stylelint@14.9.1 - typescript: 4.7.2 + typescript: 4.9.5 examples/angular-notification-center-example: specifiers: @@ -1187,7 +1187,7 @@ importers: ts-node: ^9.0.0 tsconfig-paths: ^3.9.0 twilio: ^3.62.0 - typescript: 4.3.5 + typescript: 4.9.5 uuid: ^8.3.0 dependencies: '@aws-sdk/client-s3': 3.58.0 @@ -1227,13 +1227,13 @@ importers: '@types/bull': 3.15.8 '@types/node': 14.18.12 '@types/twilio': 3.19.3 - '@typescript-eslint/parser': 4.33.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe apollo-boost: 0.4.9_graphql@15.8.0 eslint-plugin-prettier: 3.4.1_fqyzhpusvewbsl54pqqbxqaegm nodemon: 2.0.15 - ts-node: 9.1.1_typescript@4.3.5 + ts-node: 9.1.1_typescript@4.9.5 tsconfig-paths: 3.14.1 - typescript: 4.3.5 + typescript: 4.9.5 libs/embed: specifiers: @@ -1274,7 +1274,7 @@ importers: ts-jest: ^27.1.3 ts-node: ^7.0.1 tslib: ^2.3.1 - typescript: 4.3.5 + typescript: 4.9.5 dependencies: '@novu/notification-center': link:../../packages/notification-center '@types/iframe-resizer': 3.5.9 @@ -1307,14 +1307,14 @@ importers: rollup-plugin-node-resolve: 3.4.0 rollup-plugin-sourcemaps: 0.4.2_rollup@0.68.2 rollup-plugin-terser: 7.0.2_rollup@0.68.2 - rollup-plugin-typescript2: 0.18.1_a3v6d2vuzxz7b3gv6yihseevea + rollup-plugin-typescript2: 0.18.1_2o3onpjjdk2ee3e6en2nuj4moa semantic-release: 19.0.3 shelljs: 0.8.5 travis-deploy-once: 5.0.11 - ts-jest: 27.1.4_n57wun5nltbvzis3zgtotiy72e + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m ts-node: 7.0.1 tslib: 2.3.1 - typescript: 4.3.5 + typescript: 4.9.5 libs/shared: specifiers: @@ -1324,7 +1324,7 @@ importers: class-validator: 0.14.0 mixpanel: ^0.13.0 rimraf: ^3.0.2 - typescript: 4.3.5 + typescript: 4.9.5 dependencies: axios: 0.26.1 class-transformer: 0.5.1 @@ -1333,7 +1333,7 @@ importers: devDependencies: '@types/bluebird': 3.5.36 rimraf: 3.0.2 - typescript: 4.3.5 + typescript: 4.9.5 libs/testing: specifiers: @@ -1366,7 +1366,7 @@ importers: supertest: ^5.0.0 ts-node: ^9.0.0 tsconfig-paths: ^3.9.0 - typescript: 4.3.5 + typescript: 4.9.5 uuid: ^8.3.0 dependencies: '@faker-js/faker': 6.1.1 @@ -1394,13 +1394,13 @@ importers: '@types/async': 3.2.12 '@types/bluebird': 3.5.36 '@types/node': 14.18.12 - '@typescript-eslint/parser': 4.33.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe apollo-boost: 0.4.9_graphql@15.8.0 eslint-plugin-prettier: 3.4.1_fqyzhpusvewbsl54pqqbxqaegm nodemon: 2.0.15 - ts-node: 9.1.1_typescript@4.3.5 + ts-node: 9.1.1_typescript@4.9.5 tsconfig-paths: 3.14.1 - typescript: 4.3.5 + typescript: 4.9.5 packages/application-generic: specifiers: @@ -1454,7 +1454,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@nestjs/common': 8.4.3_welcnyot5bzd5wa2aovbkxpi4i '@novu/dal': link:../../libs/dal @@ -1504,10 +1504,10 @@ importers: prettier: 2.7.1 rimraf: 3.0.2 sinon: 9.2.4 - ts-jest: 27.1.4_vqlr6pm7mnv5rngd46vdqt4eby - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_mgebd74qm74dqwjbo2fclp5ei4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 packages/cli: specifiers: @@ -1548,7 +1548,7 @@ importers: jwt-decode: 3.1.2 open: 8.4.0 ora: 5.4.1 - ts-node: 10.7.0_5rym3avuyj3s6vack3xet4fl34 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga uuid: 9.0.0 devDependencies: '@types/analytics-node': 3.1.9 @@ -1556,7 +1556,7 @@ importers: '@types/inquirer': 8.2.1 '@types/mocha': 9.1.1 nodemon: 2.0.15 - typescript: 4.6.3 + typescript: 4.9.5 packages/client: specifiers: @@ -1569,7 +1569,7 @@ importers: rimraf: ^3.0.2 ts-jest: ^27.0.5 typedoc: ^0.23.0 - typescript: 4.1.3 + typescript: 4.9.5 dependencies: '@novu/shared': link:../../libs/shared axios: 0.26.1 @@ -1579,9 +1579,9 @@ importers: codecov: 3.8.3 jest: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.4_6wduk63hndnifocwptujn7mfjm - typedoc: 0.23.24_typescript@4.1.3 - typescript: 4.1.3 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 packages/headless: specifiers: @@ -1597,7 +1597,7 @@ importers: socket.io-client: 4.5.4 ts-jest: ^29.0.3 typedoc: ^0.23.0 - typescript: 4.1.3 + typescript: 4.9.5 dependencies: '@novu/client': link:../client '@novu/shared': link:../../libs/shared @@ -1610,9 +1610,9 @@ importers: '@types/node': 14.18.12 jest: 29.3.1_@types+node@14.18.12 jest-environment-jsdom: 29.3.1 - ts-jest: 29.0.3_5j3kjjyuuqltckznwqj6jmtvtm - typedoc: 0.23.24_typescript@4.1.3 - typescript: 4.1.3 + ts-jest: 29.0.3_frfgizeupuj2jmtaxidt2dfubm + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 packages/nest: specifiers: @@ -1633,7 +1633,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@nestjs/common': 8.4.3_mnr6j2del53muneqly5h4y27ai '@novu/stateless': link:../stateless @@ -1650,10 +1650,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_vqlr6pm7mnv5rngd46vdqt4eby - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 packages/node: specifiers: @@ -1676,7 +1676,7 @@ importers: run-p: 0.0.0 ts-jest: ^27.0.5 typedoc: ^0.23.0 - typescript: 4.1.3 + typescript: 4.9.5 dependencies: '@novu/shared': link:../../libs/shared axios: 0.26.1 @@ -1691,14 +1691,14 @@ importers: '@types/node': 14.18.12 codecov: 3.8.3 cz-conventional-changelog: 3.3.0 - jest: 27.5.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 open-cli: 6.0.1 rimraf: 3.0.2 run-p: 0.0.0 - ts-jest: 27.1.4_6wduk63hndnifocwptujn7mfjm - typedoc: 0.23.24_typescript@4.1.3 - typescript: 4.1.3 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 packages/notification-center: specifiers: @@ -1782,14 +1782,14 @@ importers: '@rollup/plugin-image': 3.0.1_rollup@3.7.3 '@rollup/plugin-node-resolve': 15.0.1_rollup@3.7.3 '@rollup/plugin-replace': 2.4.2_rollup@3.7.3 - '@rollup/plugin-typescript': 10.0.1_xf2gcmm5wtporhzwtmianptyhm + '@rollup/plugin-typescript': 10.0.1_bocpwt7s3r7p4lkkw5t3bthh2q '@storybook/addon-actions': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 - '@storybook/addon-essentials': 6.4.19_falpqicxvyhhoxcmcllyee3y3i - '@storybook/addon-interactions': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y + '@storybook/addon-essentials': 6.4.19_payv3uia23scairkjnkxd22rl4 + '@storybook/addon-interactions': 6.4.19_52w6muowxodes6gotb7vvotwui '@storybook/addon-links': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/builder-webpack5': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/manager-webpack5': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/react': 6.4.21_khra7f3zywwoee5j2w3z3fwgaa + '@storybook/builder-webpack5': 6.4.19_52w6muowxodes6gotb7vvotwui + '@storybook/manager-webpack5': 6.4.19_52w6muowxodes6gotb7vvotwui + '@storybook/react': 6.4.21_vu2vux4jkgbzndrkpyhaw2fwzq '@storybook/testing-library': 0.0.13_sfoxds7t5ydpegc3knd667wn6m '@testing-library/react-hooks': 8.0.1_nn45z5sr7igu7sfun6tiae5hx4 '@types/jest': 29.2.3 @@ -1810,8 +1810,8 @@ importers: rollup-plugin-peer-deps-external: 2.2.4_rollup@3.7.3 rollup-plugin-polyfill-node: 0.12.0_rollup@3.7.3 rollup-plugin-terser: 7.0.2_rollup@3.7.3 - ts-jest: 29.0.3_apl2kovhlf4augjpviu3seobxq - typescript: 4.6.3 + ts-jest: 29.0.3_hs4up5u4ilfjpkjmianwa2scsy + typescript: 4.9.5 packages/notification-center-angular: specifiers: @@ -1835,7 +1835,7 @@ importers: react: ^17.0.1 react-dom: ^17.0.1 tslib: ^2.3.0 - typescript: ~4.8.2 + typescript: ~4.9.0 zone.js: ~0.12.0 dependencies: '@angular/common': 15.0.0_6bfwd3ph3sdhhp7azeptlw637y @@ -1849,9 +1849,9 @@ importers: tslib: 2.4.0 zone.js: 0.12.0 devDependencies: - '@angular-devkit/build-angular': 15.0.0_ngpc325kogoqtinloqrb2z4wxu + '@angular-devkit/build-angular': 15.0.0_ovja46kpjfqakqqk4boxxohaai '@angular/cli': 15.1.2_chokidar@3.5.3 - '@angular/compiler-cli': 15.0.0_wi64dnikphprnhepyj5q2xqyru + '@angular/compiler-cli': 15.1.2_hkrohac3r5tzyiymw7onjymdfe '@types/jasmine': 4.3.0 jasmine-core: 4.5.0 karma: 6.4.1 @@ -1859,8 +1859,8 @@ importers: karma-coverage: 2.2.0 karma-jasmine: 5.1.0_karma@6.4.1 karma-jasmine-html-reporter: 2.0.0_uk6l45dlsjldsnfgnal4othgyq - ng-packagr: 15.0.0_hhpt7krjbeyj65xxteu6hj5xaa - typescript: 4.8.4 + ng-packagr: 15.0.0_mhldeuutqtdyc5bpeklotyy3jm + typescript: 4.9.5 packages/notification-center-vue: specifiers: @@ -1880,7 +1880,7 @@ importers: prettier: ^2.7.1 react: ^17.0.1 react-dom: ^17.0.1 - typescript: ~4.7.4 + typescript: ~4.9.0 vite: ^4.0.0 vue: ^3.2.45 vue-tsc: ^1.0.12 @@ -1896,16 +1896,16 @@ importers: '@vitejs/plugin-vue': 4.0.0_vite@4.0.2+vue@3.2.45 '@vitejs/plugin-vue-jsx': 3.0.0_vite@4.0.2+vue@3.2.45 '@vue/eslint-config-prettier': 7.0.0_kuvvoglztceao54jgbqqzvnnqm - '@vue/eslint-config-typescript': 11.0.2_adxhicpeghzj7xflzvuh26phpu + '@vue/eslint-config-typescript': 11.0.2_e7nujtl4m5gujhbjzh7ybztlfm '@vue/tsconfig': 0.1.3_@types+node@18.11.13 eslint: 8.30.0 eslint-plugin-vue: 9.8.0_eslint@8.30.0 npm-run-all: 4.1.5 prettier: 2.7.1 - typescript: 4.7.4 + typescript: 4.9.5 vite: 4.0.2_@types+node@18.11.13 vue: 3.2.45 - vue-tsc: 1.0.14_typescript@4.7.4 + vue-tsc: 1.0.14_typescript@4.9.5 packages/stateless: specifiers: @@ -1927,7 +1927,7 @@ importers: run-p: 0.0.0 ts-jest: ^27.0.5 typedoc: ^0.23.0 - typescript: 4.1.3 + typescript: 4.9.5 dependencies: axios: 0.26.1 handlebars: 4.7.7 @@ -1946,9 +1946,9 @@ importers: open-cli: 6.0.1 rimraf: 3.0.2 run-p: 0.0.0 - ts-jest: 27.1.4_6wduk63hndnifocwptujn7mfjm - typedoc: 0.23.24_typescript@4.1.3 - typescript: 4.1.3 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/apns: specifiers: @@ -1968,7 +1968,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless node-apn: 3.0.0 @@ -1984,10 +1984,10 @@ importers: nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/burst-sms: specifiers: @@ -2009,7 +2009,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 uuid: ^9.0.0 dependencies: '@novu/stateless': link:../../packages/stateless @@ -2028,10 +2028,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 uuid: 9.0.0 providers/clickatell: @@ -2069,9 +2069,9 @@ importers: nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 - ts-jest: 27.1.4_dvau5igygwpwxmkc64z6cgm2qe - ts-node: 9.1.1_typescript@4.8.4 - typedoc: 0.23.24_typescript@4.8.4 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 providers/discord: specifiers: @@ -2092,7 +2092,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless axios: 0.27.2 @@ -2109,10 +2109,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/emailjs: specifiers: @@ -2133,7 +2133,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless emailjs: 3.8.0 @@ -2150,10 +2150,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_mjytj3422l35p4lu22eg53ghni - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/expo: specifiers: @@ -2174,7 +2174,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless expo-server-sdk: 3.6.0 @@ -2191,10 +2191,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/fcm: specifiers: @@ -2218,7 +2218,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless firebase-admin: 11.0.1_@firebase+app-types@0.7.0 @@ -2238,10 +2238,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/firetext: specifiers: @@ -2265,7 +2265,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless node-fetch: 3.2.10 @@ -2285,10 +2285,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/gupshup: specifiers: @@ -2310,7 +2310,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless node-fetch: 3.2.10 @@ -2328,10 +2328,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.2 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/infobip: specifiers: @@ -2352,7 +2352,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@infobip-api/sdk': 0.1.0 '@novu/stateless': link:../../packages/stateless @@ -2369,10 +2369,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_makj2rl6gt73u7koqro542qsmm - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/mailersend: specifiers: @@ -2393,7 +2393,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless mailersend: 1.3.1 @@ -2410,10 +2410,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_makj2rl6gt73u7koqro542qsmm - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/mailgun: specifiers: @@ -2436,7 +2436,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless form-data: 4.0.0 @@ -2455,10 +2455,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_mjytj3422l35p4lu22eg53ghni - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/mailjet: specifiers: @@ -2480,7 +2480,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless node-mailjet: 3.3.7 @@ -2498,10 +2498,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_vqlr6pm7mnv5rngd46vdqt4eby - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/mandrill: specifiers: @@ -2524,7 +2524,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@mailchimp/mailchimp_transactional': 1.0.47 '@novu/stateless': link:../../packages/stateless @@ -2543,10 +2543,10 @@ importers: open-cli: 6.0.1 prettier: 2.4.1 rimraf: 3.0.2 - ts-jest: 27.1.4_umhwpvuqw4p7q7gqrua2jbjayq - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/ms-teams: specifiers: @@ -2567,7 +2567,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 uuid: ^9.0.0 dependencies: '@novu/stateless': 0.7.2 @@ -2585,10 +2585,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 uuid: 9.0.0 providers/netcore: @@ -2610,7 +2610,7 @@ importers: ts-jest: ^27.0.7 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless pepipost: 5.0.0 @@ -2627,10 +2627,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_umhwpvuqw4p7q7gqrua2jbjayq - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/nexmo: specifiers: @@ -2651,7 +2651,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless '@vonage/server-sdk': 2.10.11 @@ -2668,10 +2668,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_vqlr6pm7mnv5rngd46vdqt4eby - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/nodemailer: specifiers: @@ -2693,7 +2693,7 @@ importers: ts-jest: ^27.0.7 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless nodemailer: 6.7.3 @@ -2711,10 +2711,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_mjytj3422l35p4lu22eg53ghni - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/outlook365: specifiers: @@ -2735,7 +2735,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless nodemailer: 6.7.3 @@ -2752,10 +2752,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/plivo: specifiers: @@ -2776,7 +2776,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless plivo: 4.29.1 @@ -2793,10 +2793,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_mjytj3422l35p4lu22eg53ghni - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/postmark: specifiers: @@ -2817,7 +2817,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless postmark: 2.9.5 @@ -2834,10 +2834,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_mjytj3422l35p4lu22eg53ghni - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/sendgrid: specifiers: @@ -2858,7 +2858,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless '@sendgrid/mail': 7.6.2 @@ -2875,10 +2875,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_mjytj3422l35p4lu22eg53ghni - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/sendinblue: specifiers: @@ -2900,7 +2900,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless '@sendinblue/client': 3.1.0 @@ -2918,10 +2918,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_vqlr6pm7mnv5rngd46vdqt4eby - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/ses: specifiers: @@ -2961,10 +2961,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_ahwx3k4a72g2lokpshqlcxbpku - ts-node: 9.1.1_typescript@4.6.3 - typedoc: 0.23.24_typescript@4.6.3 - typescript: 4.6.3 + ts-jest: 27.1.4_mgebd74qm74dqwjbo2fclp5ei4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/slack: specifiers: @@ -2986,7 +2986,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.3.5 + typescript: 4.9.5 dependencies: '@novu/node': link:../../packages/node '@novu/stateless': link:../../packages/stateless @@ -3004,10 +3004,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_t4ldjoaolo4tjxxklyv3omdwf4 - ts-node: 9.1.1_typescript@4.3.5 - typedoc: 0.23.24_typescript@4.3.5 - typescript: 4.3.5 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/sms77: specifiers: @@ -3030,7 +3030,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless node-fetch: 2.6.7 @@ -3049,10 +3049,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_e7edjj3qv32mdmmvbihk7iemnq - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/sns: specifiers: @@ -3073,7 +3073,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@aws-sdk/client-sns': 3.58.0 '@novu/stateless': link:../../packages/stateless @@ -3090,10 +3090,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_vqlr6pm7mnv5rngd46vdqt4eby - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/sparkpost: specifiers: @@ -3115,7 +3115,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless sparkpost: 2.1.4 @@ -3133,10 +3133,10 @@ importers: open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/telnyx: specifiers: @@ -3157,7 +3157,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless telnyx: 1.23.0 @@ -3174,10 +3174,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_makj2rl6gt73u7koqro542qsmm - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/termii: specifiers: @@ -3199,7 +3199,7 @@ importers: ts-jest: ^27.0.5 ts-node: ^9.0.0 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless node-fetch: 3.2.10 @@ -3217,10 +3217,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.2 rimraf: 3.0.2 - ts-jest: 27.1.4_pyeptv4an376ndai4k5axbgzye - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/twilio: specifiers: @@ -3241,7 +3241,7 @@ importers: ts-node: ^9.0.0 twilio: ^3.67.2 typedoc: ^0.23.0 - typescript: 4.6.2 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless twilio: 3.76.0 @@ -3258,10 +3258,10 @@ importers: open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_mjytj3422l35p4lu22eg53ghni - ts-node: 9.1.1_typescript@4.6.2 - typedoc: 0.23.24_typescript@4.6.2 - typescript: 4.6.2 + ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum + ts-node: 9.1.1_typescript@4.9.5 + typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 packages: @@ -3532,7 +3532,7 @@ packages: - webpack-cli dev: true - /@angular-devkit/build-angular/15.0.0_ngpc325kogoqtinloqrb2z4wxu: + /@angular-devkit/build-angular/15.0.0_ovja46kpjfqakqqk4boxxohaai: resolution: {integrity: sha512-sF8c4oewwpKPlLkMMDBIM/qQ+LQHv308JvyWV2VKaph3IWI2TZQP4n5024/XaFvBEz0/2sHDWTMcGTKlZ7ZC0w==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -3565,7 +3565,7 @@ packages: '@angular-devkit/architect': 0.1500.0_chokidar@3.5.3 '@angular-devkit/build-webpack': 0.1500.0_oc46zsvsns3nh7f43oasdmifbu '@angular-devkit/core': 15.0.0_chokidar@3.5.3 - '@angular/compiler-cli': 15.0.0_wi64dnikphprnhepyj5q2xqyru + '@angular/compiler-cli': 15.1.2_hkrohac3r5tzyiymw7onjymdfe '@babel/core': 7.20.2 '@babel/generator': 7.20.4 '@babel/helper-annotate-as-pure': 7.18.6 @@ -3576,7 +3576,7 @@ packages: '@babel/runtime': 7.20.1 '@babel/template': 7.18.10 '@discoveryjs/json-ext': 0.5.7 - '@ngtools/webpack': 15.0.0_5zngmbtjuimwhcm2k2vrvrqtg4 + '@ngtools/webpack': 15.0.0_bjue2ethgri63kwe4dwyrlafsm ansi-colors: 4.1.3 autoprefixer: 10.4.13_postcss@8.4.19 babel-loader: 9.1.0_npabyccmuonwo2rku4k53xo3hi @@ -3600,7 +3600,7 @@ packages: loader-utils: 3.2.1 magic-string: 0.26.7 mini-css-extract-plugin: 2.6.1_webpack@5.75.0 - ng-packagr: 15.0.0_hhpt7krjbeyj65xxteu6hj5xaa + ng-packagr: 15.0.0_mhldeuutqtdyc5bpeklotyy3jm open: 8.4.0 ora: 5.4.1 parse5-html-rewriting-stream: 6.0.1 @@ -3619,7 +3619,7 @@ packages: text-table: 0.2.0 tree-kill: 1.2.2 tslib: 2.4.1 - typescript: 4.8.4 + typescript: 4.9.5 webpack: 5.75.0_esbuild@0.15.13 webpack-dev-middleware: 5.3.3_webpack@5.75.0 webpack-dev-server: 4.11.1_webpack@5.75.0 @@ -3978,6 +3978,30 @@ packages: - supports-color dev: true + /@angular/compiler-cli/15.1.2_hkrohac3r5tzyiymw7onjymdfe: + resolution: {integrity: sha512-gAqbQSKI4oeboh0UKsFdaEoST9IBVzqeckJzSTwAGxJeS33IM7Jjo3LViqHuzQyWKXe6srkci0LD4C2Mrj4kfQ==} + engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + hasBin: true + peerDependencies: + '@angular/compiler': 15.1.2 + typescript: '>=4.8.2 <5.0' + dependencies: + '@angular/compiler': 15.0.0_@angular+core@15.0.0 + '@babel/core': 7.19.3 + '@jridgewell/sourcemap-codec': 1.4.14 + chokidar: 3.5.3 + convert-source-map: 1.8.0 + dependency-graph: 0.11.0 + magic-string: 0.27.0 + reflect-metadata: 0.1.13 + semver: 7.3.8 + tslib: 2.4.1 + typescript: 4.9.5 + yargs: 17.6.2 + transitivePeerDependencies: + - supports-color + dev: true + /@angular/compiler/15.0.0_@angular+core@15.0.0: resolution: {integrity: sha512-k+tsyKpbPvumBr0qtGZ/bisoq/1evvTa6dCUR126Yb1bX0HlBodwIqu9Xjh3nY90hMak+3zHznj6kJB83LoLeA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} @@ -4287,7 +4311,7 @@ packages: engines: {node: '>=10.x'} dev: true - /@auto-it/core/10.36.5_y4qulqmukjoftrdyqj7awk6qby: + /@auto-it/core/10.36.5_gdxbtungus7rykd22mbjbmvap4: resolution: {integrity: sha512-muA7V4oKl5EYt7xzuuQp1qyXjUIapUn5XRj9fHgDrFcHseQhOZLJjjmPXI7W6NVZ9AGW98eq7xcQzbg/VC1HSg==} peerDependencies: typescript: '*' @@ -4296,7 +4320,7 @@ packages: optional: true dependencies: '@auto-it/bot-list': 10.36.5 - '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_27rxve3zecs7peuz2mcxc54u6a + '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_7xcwfsfqkm3z47jew3ci4ezh7m '@octokit/plugin-enterprise-compatibility': 1.3.0 '@octokit/plugin-retry': 3.0.9 '@octokit/plugin-throttling': 3.6.2_@octokit+core@3.6.0 @@ -4329,10 +4353,10 @@ packages: tapable: 2.2.1 terminal-link: 2.1.1 tinycolor2: 1.4.2 - ts-node: 9.1.1_typescript@4.3.5 + ts-node: 9.1.1_typescript@4.9.5 tslib: 2.1.0 type-fest: 0.21.3 - typescript: 4.3.5 + typescript: 4.9.5 typescript-memoize: 1.1.0 url-join: 4.0.1 transitivePeerDependencies: @@ -4341,10 +4365,10 @@ packages: - supports-color dev: true - /@auto-it/npm/10.36.5_y4qulqmukjoftrdyqj7awk6qby: + /@auto-it/npm/10.36.5_gdxbtungus7rykd22mbjbmvap4: resolution: {integrity: sha512-Tct2LxqECJR/kG2+yAlJFi5NtE+JqfoO48hGOAk94sZvET29jWN8hln1eHPI2SIA1a1VOddQsSHbCEbGzrgTeg==} dependencies: - '@auto-it/core': 10.36.5_y4qulqmukjoftrdyqj7awk6qby + '@auto-it/core': 10.36.5_gdxbtungus7rykd22mbjbmvap4 '@auto-it/package-json-utils': 10.36.5 await-to-js: 3.0.0 endent: 2.1.0 @@ -4373,11 +4397,11 @@ packages: parse-github-url: 1.0.2 dev: true - /@auto-it/released/10.36.5_y4qulqmukjoftrdyqj7awk6qby: + /@auto-it/released/10.36.5_gdxbtungus7rykd22mbjbmvap4: resolution: {integrity: sha512-dbSxtnjSlPVy1D/BBZw2DW3aSVVvujebS32zaiPzy6gsvvkwlzavpm1iuG5jfmdo5Ai490CGcIePMWbhZ7lqXA==} dependencies: '@auto-it/bot-list': 10.36.5 - '@auto-it/core': 10.36.5_y4qulqmukjoftrdyqj7awk6qby + '@auto-it/core': 10.36.5_gdxbtungus7rykd22mbjbmvap4 deepmerge: 4.2.2 fp-ts: 2.11.9 io-ts: 2.2.16_fp-ts@2.11.9 @@ -7035,24 +7059,47 @@ packages: transitivePeerDependencies: - supports-color + /@babel/core/7.19.3: + resolution: {integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.3 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helpers': 7.20.6 + '@babel/parser': 7.20.5 + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/core/7.20.2: resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/generator': 7.20.5 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-module-transforms': 7.20.2 - '@babel/helpers': 7.20.1 - '@babel/parser': 7.20.3 + '@babel/helpers': 7.20.6 + '@babel/parser': 7.20.5 '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.3 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -7122,7 +7169,7 @@ packages: resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 @@ -7297,6 +7344,19 @@ packages: semver: 6.3.0 dev: false + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.3: + resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.1 + '@babel/core': 7.19.3 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + semver: 6.3.0 + dev: true + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} engines: {node: '>=6.9.0'} @@ -8214,17 +8274,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helpers/7.20.1: - resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helpers/7.20.6: resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==} engines: {node: '>=6.9.0'} @@ -15524,13 +15573,13 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/generator': 7.20.5 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.5 + '@babel/types': 7.20.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -15792,13 +15841,13 @@ packages: '@types/node': 18.11.13 chalk: 4.1.2 cosmiconfig: 8.0.0 - cosmiconfig-typescript-loader: 4.3.0_tte6z5bimn4ppusm764epzjmi4 + cosmiconfig-typescript-loader: 4.3.0_5gkmri332dq43fwlysr2filgwm lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 resolve-from: 5.0.0 - ts-node: 10.9.1_zwbbn7v4nhzhfdmlr6kgywzsoe - typescript: 4.8.4 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -15950,7 +15999,7 @@ packages: dev: false optional: true - /@craco/craco/6.4.3_xuuxweu7ep5wbn6yf3ru4tnrs4: + /@craco/craco/6.4.3_u2c7aebudwn7l5c6nel6iah7lm: resolution: {integrity: sha512-RzkXYmNzRCGUyG7mM+IUMM+nvrpSfA34352sPSGQN76UivAmCAht3sI4v5JKgzO05oUK9Zwi6abCKD7iKXI8hQ==} engines: {node: '>=6'} hasBin: true @@ -15958,10 +16007,10 @@ packages: react-scripts: ^4.0.0 dependencies: cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 1.0.6_u3pcqfwtcdtahqtopunwgcaiyq + cosmiconfig-typescript-loader: 1.0.6_pcraivvvcp3hdgpdkddzbjo4ki cross-spawn: 7.0.3 lodash: 4.17.21 - react-scripts: 4.0.3_x42bqxgwliwa4f7rcvhhje7sti + react-scripts: 4.0.3_oatgdhaahtizs2uezdzbohxvne semver: 7.3.7 webpack-merge: 4.2.2 transitivePeerDependencies: @@ -16454,19 +16503,20 @@ packages: /@cspotcode/source-map-consumer/0.8.0: resolution: {integrity: sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==} engines: {node: '>= 12'} + dev: true /@cspotcode/source-map-support/0.7.0: resolution: {integrity: sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==} engines: {node: '>=12'} dependencies: '@cspotcode/source-map-consumer': 0.8.0 + dev: true /@cspotcode/source-map-support/0.8.1: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} dependencies: '@jridgewell/trace-mapping': 0.3.9 - dev: true /@csstools/convert-colors/1.4.0: resolution: {integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==} @@ -16662,7 +16712,7 @@ packages: - '@algolia/client-search' dev: false - /@docusaurus/core/2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/core/2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-a3UgZ4lIcIOoZd4j9INqVkWSXEDxR7EicJXt8eq2whg4N5hKGqLHoDSnWfrVSPQn4NoG5T7jhPypphSoysImfQ==} engines: {node: '>=14'} hasBin: true @@ -16720,7 +16770,7 @@ packages: postcss-loader: 6.2.1_xvg4ntyrrwt57qzvggqcbeozu4 prompts: 2.4.2 react: 17.0.2 - react-dev-utils: 12.0.1_funik2ngdz77jpd27pyphay3ey + react-dev-utils: 12.0.1_pwicrqlawf7bbx3ycltdoxhori react-dom: 17.0.2_react@17.0.2 react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2 @@ -16759,7 +16809,7 @@ packages: - webpack-cli dev: false - /@docusaurus/core/2.1.0_5yjk5g2xtwngymikbrhfika4mu: + /@docusaurus/core/2.1.0_jaexp5l557dj4drtg2muy7nheu: resolution: {integrity: sha512-/ZJ6xmm+VB9Izbn0/s6h6289cbPy2k4iYFwWDhjiLsVqwa/Y0YBBcXvStfaHccudUC3OfP+26hMk7UCjc50J6Q==} engines: {node: '>=16.14'} hasBin: true @@ -16818,7 +16868,7 @@ packages: postcss-loader: 7.0.1_m6qh27jiicejwnzfgs742cokpe prompts: 2.4.2 react: 17.0.2 - react-dev-utils: 12.0.1_7tontwvv733azcydwccxscwgva + react-dev-utils: 12.0.1_jvhfchttbmaci3dfh3cf32c7h4 react-dom: 17.0.2_react@17.0.2 react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2 @@ -16980,14 +17030,14 @@ packages: - uglify-js - webpack-cli - /@docusaurus/plugin-content-blog/2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/plugin-content-blog/2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-6aby36Gmny5h2oo/eEZ2iwVsIlBWbRnNNeqT0BYnJO5aj53iCU/ctFPpJVYcw0l2l8+8ITS70FyePIWEsaZ0jA==} engines: {node: '>=14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/logger': 2.0.0-beta.20 '@docusaurus/mdx-loader': 2.0.0-beta.20_sfoxds7t5ydpegc3knd667wn6m '@docusaurus/utils': 2.0.0-beta.20 @@ -17021,14 +17071,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-docs/2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/plugin-content-docs/2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-XOgwUqXtr/DStpB3azdN6wgkKtQkOXOx1XetORzhHnjihrSMn6daxg+spmcJh1ki/mpT3n7yBbKJxVNo+VB38Q==} engines: {node: '>=14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/logger': 2.0.0-beta.20 '@docusaurus/mdx-loader': 2.0.0-beta.20_sfoxds7t5ydpegc3knd667wn6m '@docusaurus/utils': 2.0.0-beta.20 @@ -17060,14 +17110,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-pages/2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/plugin-content-pages/2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-ubY6DG4F0skFKjfNGCbfO34Qf+MZy6C05OtpIYsoA2YU8ADx0nRH7qPgdEkwR3ma860DbY612rleRT13ogSlhg==} engines: {node: '>=14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/mdx-loader': 2.0.0-beta.20_sfoxds7t5ydpegc3knd667wn6m '@docusaurus/utils': 2.0.0-beta.20 '@docusaurus/utils-validation': 2.0.0-beta.20 @@ -17093,14 +17143,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-debug/2.0.0-beta.20_d53acb6sjeixgyg47cyfxahpny: + /@docusaurus/plugin-debug/2.0.0-beta.20_n7ghqshvmroqkfrgzlr362wm3m: resolution: {integrity: sha512-acGZmpncPA1XDczpV1ji1ajBCRBY/H2lXN8alSjOB1vh0c/2Qz+KKD05p17lsUbhIyvsnZBa/BaOwtek91Lu7Q==} engines: {node: '>=14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/utils': 2.0.0-beta.20 fs-extra: 10.1.0 react: 17.0.2 @@ -17125,14 +17175,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-google-analytics/2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/plugin-google-analytics/2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-4C5nY25j0R1lntFmpSEalhL7jYA7tWvk0VZObiIxGilLagT/f9gWPQtIjNBe4yzdQvkhiaXpa8xcMcJUAKRJyw==} engines: {node: '>=14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/utils-validation': 2.0.0-beta.20 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 @@ -17153,14 +17203,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-google-gtag/2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/plugin-google-gtag/2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-EMZdiMTNg4NwE60xwjbetcqMDqAOazMTwQAQ4OuNAclv7oh8+VPCvqRF8s8AxCoI2Uqc7vh8yzNUuM307Ne9JA==} engines: {node: '>=14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/utils-validation': 2.0.0-beta.20 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 @@ -17181,14 +17231,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-google-gtag/2.1.0_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/plugin-google-gtag/2.1.0_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-/3aDlv2dMoCeiX2e+DTGvvrdTA+v3cKQV3DbmfsF4ENhvc5nKV23nth04Z3Vq0Ci1ui6Sn80TkhGk/tiCMW2AA==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.1.0_5yjk5g2xtwngymikbrhfika4mu + '@docusaurus/core': 2.1.0_jaexp5l557dj4drtg2muy7nheu '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0 react: 17.0.2 @@ -17212,14 +17262,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-sitemap/2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/plugin-sitemap/2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-Rf5a2vOBWjbe7PJJEBDeLZzDA7lsDi+16bqzKN8OKSXlcZLhxjmIpL5NrjANNbpGpL5vbl9z+iqvjbQmZ3QSmA==} engines: {node: '>=14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/utils': 2.0.0-beta.20 '@docusaurus/utils-common': 2.0.0-beta.20 '@docusaurus/utils-validation': 2.0.0-beta.20 @@ -17244,24 +17294,24 @@ packages: - webpack-cli dev: false - /@docusaurus/preset-classic/2.0.0-beta.20_2hyivt5o3vfyxtbjfzo6vckini: + /@docusaurus/preset-classic/2.0.0-beta.20_2cacrxcy7ciw66aaolgc43z4xm: resolution: {integrity: sha512-artUDjiYFIlGd2fxk0iqqcJ5xSCrgormOAoind1c0pn8TRXY1WSCQWYI6p4X24jjhSCzLv0s6Z9PMDyxZdivhg==} engines: {node: '>=14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-content-blog': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-content-docs': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-content-pages': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-debug': 2.0.0-beta.20_d53acb6sjeixgyg47cyfxahpny - '@docusaurus/plugin-google-analytics': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-google-gtag': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-sitemap': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/theme-classic': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/theme-common': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/theme-search-algolia': 2.0.0-beta.20_2hyivt5o3vfyxtbjfzo6vckini + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-content-blog': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-content-docs': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-content-pages': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-debug': 2.0.0-beta.20_n7ghqshvmroqkfrgzlr362wm3m + '@docusaurus/plugin-google-analytics': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-google-gtag': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-sitemap': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/theme-classic': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/theme-common': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/theme-search-algolia': 2.0.0-beta.20_2cacrxcy7ciw66aaolgc43z4xm react: 17.0.2 react-dom: 17.0.2_react@17.0.2 transitivePeerDependencies: @@ -17293,18 +17343,18 @@ packages: react: 17.0.2 dev: false - /@docusaurus/theme-classic/2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/theme-classic/2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-rs4U68x8Xk6rPsZC/7eaPxCKqzXX1S45FICKmq/IZuaDaQyQIijCvv2ssxYnUyVZUNayZfJK7ZtNu+A0kzYgSQ==} engines: {node: '>=14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-content-blog': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-content-docs': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-content-pages': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/theme-common': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-content-blog': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-content-docs': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-content-pages': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/theme-common': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/theme-translations': 2.0.0-beta.20 '@docusaurus/utils': 2.0.0-beta.20 '@docusaurus/utils-common': 2.0.0-beta.20 @@ -17338,7 +17388,7 @@ packages: - webpack-cli dev: false - /@docusaurus/theme-common/2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq: + /@docusaurus/theme-common/2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-lmdGB3/GQM5z0GH0iHGRXUco4Wfqc6sR5eRKuW4j0sx3+UFVvtbVTTIGt0Cie4Dh6omnFxjPbNDlPDgWr/agVQ==} engines: {node: '>=14'} peerDependencies: @@ -17346,9 +17396,9 @@ packages: react-dom: ^16.8.4 || ^17.0.0 dependencies: '@docusaurus/module-type-aliases': 2.0.0-beta.20_sfoxds7t5ydpegc3knd667wn6m - '@docusaurus/plugin-content-blog': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-content-docs': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/plugin-content-pages': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/plugin-content-blog': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-content-docs': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/plugin-content-pages': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey clsx: 1.1.1 parse-numeric-range: 1.3.0 prism-react-renderer: 1.3.1_react@17.0.2 @@ -17372,7 +17422,7 @@ packages: - webpack-cli dev: false - /@docusaurus/theme-search-algolia/2.0.0-beta.20_2hyivt5o3vfyxtbjfzo6vckini: + /@docusaurus/theme-search-algolia/2.0.0-beta.20_2cacrxcy7ciw66aaolgc43z4xm: resolution: {integrity: sha512-9XAyiXXHgyhDmKXg9RUtnC4WBkYAZUqKT9Ntuk0OaOb4mBwiYUGL74tyP0LLL6T+oa9uEdXiUMlIL1onU8xhvA==} engines: {node: '>=14'} peerDependencies: @@ -17380,10 +17430,10 @@ packages: react-dom: ^16.8.4 || ^17.0.0 dependencies: '@docsearch/react': 3.0.0_oomxgj7avnnlfkxva6cqohgwxu - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/logger': 2.0.0-beta.20 - '@docusaurus/plugin-content-docs': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq - '@docusaurus/theme-common': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/plugin-content-docs': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey + '@docusaurus/theme-common': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey '@docusaurus/theme-translations': 2.0.0-beta.20 '@docusaurus/utils': 2.0.0-beta.20 '@docusaurus/utils-validation': 2.0.0-beta.20 @@ -18020,7 +18070,7 @@ packages: resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==} dev: false - /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_27rxve3zecs7peuz2mcxc54u6a: + /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_7xcwfsfqkm3z47jew3ci4ezh7m: resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -18029,7 +18079,7 @@ packages: cosmiconfig: 7.0.0 lodash.get: 4.4.2 make-error: 1.3.6 - ts-node: 9.1.1_typescript@4.3.5 + ts-node: 9.1.1_typescript@4.9.5 tslib: 2.4.1 transitivePeerDependencies: - typescript @@ -18309,7 +18359,7 @@ packages: debug: 4.3.4 espree: 9.4.1 globals: 13.19.0 - ignore: 5.2.4 + ignore: 5.2.0 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -19649,7 +19699,6 @@ packages: dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - dev: true /@leichtgewicht/ip-codec/2.0.4: resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} @@ -20173,7 +20222,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/publish/5.6.2_nx@15.6.2+typescript@4.8.4: + /@lerna/publish/5.6.2_nx@15.6.2+typescript@4.9.5: resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -20195,7 +20244,7 @@ packages: '@lerna/run-lifecycle': 5.6.2 '@lerna/run-topologically': 5.6.2 '@lerna/validation-error': 5.6.2 - '@lerna/version': 5.6.2_nx@15.6.2+typescript@4.8.4 + '@lerna/version': 5.6.2_nx@15.6.2+typescript@4.9.5 fs-extra: 9.1.0 libnpmaccess: 6.0.4 npm-package-arg: 8.1.1 @@ -20327,7 +20376,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/version/5.6.2_nx@15.6.2+typescript@4.8.4: + /@lerna/version/5.6.2_nx@15.6.2+typescript@4.9.5: resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -20345,7 +20394,7 @@ packages: '@lerna/run-topologically': 5.6.2 '@lerna/temp-write': 5.6.2 '@lerna/validation-error': 5.6.2 - '@nrwl/devkit': 15.6.2_nx@15.6.2+typescript@4.8.4 + '@nrwl/devkit': 15.6.2_nx@15.6.2+typescript@4.9.5 chalk: 4.1.2 dedent: 0.7.0 load-json-file: 6.2.0 @@ -21457,7 +21506,7 @@ packages: typescript: 4.2.3 dev: true - /@nestjs/schematics/7.3.1_typescript@4.3.5: + /@nestjs/schematics/7.3.1_typescript@4.9.5: resolution: {integrity: sha512-eyBjJstAjecpdzRuBLiqnwomwXIAEV3+kPkpaphOieRUM6nBhjnXCCl3Qf8Dul2QUQK4NOVPd8FFxWtGP5XNlg==} peerDependencies: typescript: ^3.4.5 || ^4.0.0 @@ -21467,10 +21516,10 @@ packages: fs-extra: 9.1.0 jsonc-parser: 3.0.0 pluralize: 8.0.0 - typescript: 4.3.5 + typescript: 4.9.5 dev: true - /@nestjs/schematics/9.0.1_jzdczmpfje4274sct5gg4q5iim: + /@nestjs/schematics/9.0.1_n7i3t5jmyrdrkypb5pvfihcmg4: resolution: {integrity: sha512-QU7GbnQvADFXdumcdADmv4vil3bhnYl2IFHWKieRt0MgIhghgBxIB7kDKWhswcuZ0kZztVbyYjo9aCrlf62fcw==} peerDependencies: typescript: ^4.3.5 @@ -21480,7 +21529,7 @@ packages: fs-extra: 10.1.0 jsonc-parser: 3.0.0 pluralize: 8.0.0 - typescript: 4.3.5 + typescript: 4.9.5 transitivePeerDependencies: - chokidar dev: true @@ -21500,7 +21549,7 @@ packages: - chokidar dev: true - /@nestjs/schematics/9.0.4_typescript@4.3.5: + /@nestjs/schematics/9.0.4_typescript@4.9.5: resolution: {integrity: sha512-egurCfAc4e5i1r2TmeAF0UrOKejFmT5oTdv4b7HcOVPupc3QGU7CbEfGleL3mkM5AjrixTQeMxU9bJ00ttAbGg==} peerDependencies: typescript: ^4.3.5 @@ -21510,7 +21559,7 @@ packages: fs-extra: 11.1.0 jsonc-parser: 3.2.0 pluralize: 8.0.0 - typescript: 4.3.5 + typescript: 4.9.5 transitivePeerDependencies: - chokidar dev: true @@ -21831,6 +21880,19 @@ packages: webpack: 5.75.0_esbuild@0.15.13 dev: true + /@ngtools/webpack/15.0.0_bjue2ethgri63kwe4dwyrlafsm: + resolution: {integrity: sha512-pI/Ul9mgE98bjPkUiNRLXIn3ulmUgJMD4Zj8RUUk55gTg3IJygyaag/l/C5e7StKMWygHdnvQgU63U360zqEiQ==} + engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + peerDependencies: + '@angular/compiler-cli': ^15.0.0 + typescript: ~4.8.2 + webpack: ^5.54.0 + dependencies: + '@angular/compiler-cli': 15.1.2_hkrohac3r5tzyiymw7onjymdfe + typescript: 4.9.5 + webpack: 5.75.0_esbuild@0.15.13 + dev: true + /@nodelib/fs.scandir/2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -22152,12 +22214,12 @@ packages: tslib: 2.4.1 dev: true - /@nrwl/devkit/15.6.2_nx@15.6.2+typescript@4.8.4: + /@nrwl/devkit/15.6.2_nx@15.6.2+typescript@4.9.5: resolution: {integrity: sha512-RcPwjr1btr16wz/ZTnLeKMLu4zATWoh5E94qrFxw3n8hXbC5cIW0Hs/D3ho7cuJQCtQmItTD21M7akjvgHsniA==} peerDependencies: nx: '>= 14 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 ejs: 3.1.8 ignore: 5.2.4 nx: 15.6.2 @@ -22167,7 +22229,7 @@ packages: - typescript dev: true - /@nrwl/eslint-plugin-nx/13.10.6_5xdn52oxisihs2i563a7t6joxi: + /@nrwl/eslint-plugin-nx/13.10.6_fkaxtw3iwc36oe2k5ldj4prhim: resolution: {integrity: sha512-vZ7m0cJsiNZTyllm86fQnw3fVSmNK/11RIaymHttNVgVAHCPH/uZ22XZ1fNMagNcbY/MVEPIpfrHJwiG0uxkng==} peerDependencies: '@typescript-eslint/parser': ~5.18.0 @@ -22177,9 +22239,9 @@ packages: optional: true dependencies: '@nrwl/devkit': 13.10.6_nx@14.5.10 - '@nrwl/workspace': 13.10.6_to7hogz73prokpmozi6ug4plku - '@typescript-eslint/experimental-utils': 5.18.0_cl6qtdo3npn4kngw26aibg642e - '@typescript-eslint/parser': 5.29.0_cl6qtdo3npn4kngw26aibg642e + '@nrwl/workspace': 13.10.6_ytufk5dow5t2kzcvjl63xtkwwa + '@typescript-eslint/experimental-utils': 5.18.0_jofidmxrjzhj7l6vknpw5ecvfe + '@typescript-eslint/parser': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe chalk: 4.1.0 confusing-browser-globals: 1.0.11 eslint-config-prettier: 7.2.0_eslint@7.32.0 @@ -22244,7 +22306,7 @@ packages: - utf-8-validate dev: true - /@nrwl/linter/13.10.6_qbwd7w4spnslcwxdd77ajgkuqi: + /@nrwl/linter/13.10.6_f7pzrhfctnesxmnbiwt5xcr6ki: resolution: {integrity: sha512-c7gtXu4ewjc6ylp0anAt6eaWWxmqrt0CqBfzEK9vYkETN4/WUcr6Y/nNzpnvvhM9PuCEBH7QTizz/r1imRmLJQ==} peerDependencies: eslint: ^8.0.0 @@ -22254,7 +22316,7 @@ packages: dependencies: '@nrwl/devkit': 13.10.6_nx@14.5.10 '@nrwl/jest': 13.10.6_nx@14.5.10+ts-node@9.1.1 - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.3.5 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 eslint: 7.32.0 tmp: 0.2.1 tslib: 2.4.1 @@ -22269,7 +22331,7 @@ packages: - utf-8-validate dev: true - /@nrwl/linter/13.10.6_tbrm76kryaglx5rpimmkou4w6q: + /@nrwl/linter/13.10.6_rs5gdypfcmhvym3lqchiuhdbcq: resolution: {integrity: sha512-c7gtXu4ewjc6ylp0anAt6eaWWxmqrt0CqBfzEK9vYkETN4/WUcr6Y/nNzpnvvhM9PuCEBH7QTizz/r1imRmLJQ==} peerDependencies: eslint: ^8.0.0 @@ -22279,7 +22341,7 @@ packages: dependencies: '@nrwl/devkit': 13.10.6_nx@13.10.6 '@nrwl/jest': 13.10.6_nx@13.10.6+ts-node@9.1.1 - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.3.5 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 eslint: 7.32.0 tmp: 0.2.1 tslib: 2.4.1 @@ -22340,7 +22402,7 @@ packages: - debug dev: true - /@nrwl/workspace/13.10.6_to7hogz73prokpmozi6ug4plku: + /@nrwl/workspace/13.10.6_ytufk5dow5t2kzcvjl63xtkwwa: resolution: {integrity: sha512-BtAlkNdf+cxcq65Trpo+ob5ez7fVDVTUGnlIyIPQ33p5Ge4sp9/0zTlUTBSJRusyLYAIHhpRTGf7w/WcV063/Q==} peerDependencies: prettier: ^2.5.1 @@ -22350,7 +22412,7 @@ packages: dependencies: '@nrwl/devkit': 13.10.6_nx@13.10.6 '@nrwl/jest': 13.10.6_nx@13.10.6+ts-node@9.1.1 - '@nrwl/linter': 13.10.6_tbrm76kryaglx5rpimmkou4w6q + '@nrwl/linter': 13.10.6_rs5gdypfcmhvym3lqchiuhdbcq '@parcel/watcher': 2.0.4 chalk: 4.1.0 chokidar: 3.5.3 @@ -22657,24 +22719,15 @@ packages: requiresBuild: true dependencies: node-addon-api: 3.2.1 - node-gyp-build: 4.3.0 - - /@phenomnomnominal/tsquery/4.1.1_typescript@4.3.5: - resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} - peerDependencies: - typescript: ^3 || ^4 - dependencies: - esquery: 1.4.0 - typescript: 4.3.5 - dev: true + node-gyp-build: 4.6.0 - /@phenomnomnominal/tsquery/4.1.1_typescript@4.8.4: + /@phenomnomnominal/tsquery/4.1.1_typescript@4.9.5: resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} peerDependencies: typescript: ^3 || ^4 dependencies: esquery: 1.4.0 - typescript: 4.8.4 + typescript: 4.9.5 dev: true /@pmmmwh/react-refresh-webpack-plugin/0.4.3_t4ezke4netssl24gycl5qjajya: @@ -23566,7 +23619,7 @@ packages: rollup: 3.7.3 dev: true - /@rollup/plugin-typescript/10.0.1_xf2gcmm5wtporhzwtmianptyhm: + /@rollup/plugin-typescript/10.0.1_bocpwt7s3r7p4lkkw5t3bthh2q: resolution: {integrity: sha512-wBykxRLlX7EzL8BmUqMqk5zpx2onnmRMSw/l9M1sVfkJvdwfxogZQVNUM9gVMJbjRLDR5H6U0OMOrlDGmIV45A==} engines: {node: '>=14.0.0'} peerDependencies: @@ -23583,7 +23636,7 @@ packages: resolve: 1.22.1 rollup: 3.7.3 tslib: 2.3.1 - typescript: 4.6.3 + typescript: 4.9.5 dev: true /@rollup/pluginutils/3.1.0_rollup@0.68.2: @@ -25399,7 +25452,7 @@ packages: - '@types/react' dev: true - /@storybook/addon-controls/6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y: + /@storybook/addon-controls/6.4.19_52w6muowxodes6gotb7vvotwui: resolution: {integrity: sha512-JHi5z9i6NsgQLfG5WOeQE1AyOrM+QJLrjT+uOYx40bq+OC1yWHH7qHiphPP8kjJJhCZlaQk1qqXYkkQXgaeHSw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -25414,7 +25467,7 @@ packages: '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/components': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 - '@storybook/core-common': 6.4.19_fdtqczkawcrswx4npptvkurkw4 + '@storybook/core-common': 6.4.19_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -25434,7 +25487,7 @@ packages: - webpack-command dev: true - /@storybook/addon-controls/6.4.19_kbufn7ubumy7y62hp4wnmuatau: + /@storybook/addon-controls/6.4.19_n7ghqshvmroqkfrgzlr362wm3m: resolution: {integrity: sha512-JHi5z9i6NsgQLfG5WOeQE1AyOrM+QJLrjT+uOYx40bq+OC1yWHH7qHiphPP8kjJJhCZlaQk1qqXYkkQXgaeHSw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -25449,7 +25502,7 @@ packages: '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/components': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 - '@storybook/core-common': 6.4.19_y3bnzdvsjkpip64pgns7gd2pz4 + '@storybook/core-common': 6.4.19_3okb5bdjyyeqqpgf7ptkihrkey '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -25469,7 +25522,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.4.19_hdeqzferh6hndbz7436gnzvxya: + /@storybook/addon-docs/6.4.19_7ebr4ytxkguthd4gam2nda6ycm: resolution: {integrity: sha512-OEPyx/5ZXmZOPqIAWoPjlIP8Q/YfNjAmBosA8tmA8t5KCSiq/vpLcAvQhxqK6n0wk/B8Xp67Z8RpLfXjU8R3tw==} peerDependencies: '@storybook/angular': 6.4.19 @@ -25527,17 +25580,17 @@ packages: '@mdx-js/react': 1.6.22_react@17.0.2 '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/builder-webpack4': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y + '@storybook/builder-webpack4': 6.4.19_n7ghqshvmroqkfrgzlr362wm3m '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 - '@storybook/core': 6.4.19_4qtj5asobdpzkctfhwxgwpt3ru + '@storybook/components': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 + '@storybook/core': 6.4.19_t657q3l7fsw6m6sy4dxuaynai4 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 '@storybook/node-logger': 6.4.19 '@storybook/postinstall': 6.4.19 '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/react': 6.4.21_khra7f3zywwoee5j2w3z3fwgaa + '@storybook/react': 6.4.21_hbm3t5634ikvlrv7alx2gv6vkm '@storybook/source-loader': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -25565,7 +25618,7 @@ packages: remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - webpack: 5.75.0 + webpack: 5.74.0 transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' @@ -25580,9 +25633,8 @@ packages: - vue-template-compiler - webpack-cli - webpack-command - dev: true - /@storybook/addon-docs/6.4.19_jppbkhna5nplm5c3gyclegwbgu: + /@storybook/addon-docs/6.4.19_cezupubcnymntl3ly3missqvdq: resolution: {integrity: sha512-OEPyx/5ZXmZOPqIAWoPjlIP8Q/YfNjAmBosA8tmA8t5KCSiq/vpLcAvQhxqK6n0wk/B8Xp67Z8RpLfXjU8R3tw==} peerDependencies: '@storybook/angular': 6.4.19 @@ -25640,17 +25692,17 @@ packages: '@mdx-js/react': 1.6.22_react@17.0.2 '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/builder-webpack4': 6.4.19_kbufn7ubumy7y62hp4wnmuatau + '@storybook/builder-webpack4': 6.4.19_52w6muowxodes6gotb7vvotwui '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 - '@storybook/core': 6.4.19_aul5vhzjvlbbpjwuo3uelm2cbe + '@storybook/components': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 + '@storybook/core': 6.4.19_ee7algnj2jlym6bdlc6xdedxwi '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 '@storybook/node-logger': 6.4.19 '@storybook/postinstall': 6.4.19 '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/react': 6.4.21_sd4ysh5ew7sghqnoje7e4qvhv4 + '@storybook/react': 6.4.21_vu2vux4jkgbzndrkpyhaw2fwzq '@storybook/source-loader': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -25678,7 +25730,7 @@ packages: remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - webpack: 5.74.0 + webpack: 5.75.0 transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' @@ -25693,8 +25745,9 @@ packages: - vue-template-compiler - webpack-cli - webpack-command + dev: true - /@storybook/addon-essentials/6.4.19_bgx6goxjd2ohlfqrqjsmpskrqe: + /@storybook/addon-essentials/6.4.19_47iqxj5iozjgqrbctm5xbfsyvi: resolution: {integrity: sha512-vbV8sjepMVEuwhTDBHjO3E6vXluG7RiEeozV1QVuS9lGhjQdvUPdZ9rDNUcP6WHhTdEkS/ffTMaGIy1v8oZd7g==} peerDependencies: '@babel/core': ^7.9.6 @@ -25722,8 +25775,8 @@ packages: '@babel/core': 7.20.5 '@storybook/addon-actions': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 '@storybook/addon-backgrounds': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 - '@storybook/addon-controls': 6.4.19_kbufn7ubumy7y62hp4wnmuatau - '@storybook/addon-docs': 6.4.19_jppbkhna5nplm5c3gyclegwbgu + '@storybook/addon-controls': 6.4.19_n7ghqshvmroqkfrgzlr362wm3m + '@storybook/addon-docs': 6.4.19_7ebr4ytxkguthd4gam2nda6ycm '@storybook/addon-measure': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 '@storybook/addon-outline': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 '@storybook/addon-toolbars': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 @@ -25762,7 +25815,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.4.19_falpqicxvyhhoxcmcllyee3y3i: + /@storybook/addon-essentials/6.4.19_payv3uia23scairkjnkxd22rl4: resolution: {integrity: sha512-vbV8sjepMVEuwhTDBHjO3E6vXluG7RiEeozV1QVuS9lGhjQdvUPdZ9rDNUcP6WHhTdEkS/ffTMaGIy1v8oZd7g==} peerDependencies: '@babel/core': ^7.9.6 @@ -25790,8 +25843,8 @@ packages: '@babel/core': 7.17.8 '@storybook/addon-actions': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 '@storybook/addon-backgrounds': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 - '@storybook/addon-controls': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/addon-docs': 6.4.19_hdeqzferh6hndbz7436gnzvxya + '@storybook/addon-controls': 6.4.19_52w6muowxodes6gotb7vvotwui + '@storybook/addon-docs': 6.4.19_cezupubcnymntl3ly3missqvdq '@storybook/addon-measure': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 '@storybook/addon-outline': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 '@storybook/addon-toolbars': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 @@ -25830,7 +25883,7 @@ packages: - webpack-command dev: true - /@storybook/addon-interactions/6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y: + /@storybook/addon-interactions/6.4.19_52w6muowxodes6gotb7vvotwui: resolution: {integrity: sha512-oKXxRkKL2deUI7nOLm9UvihtPaTQ2p8Y5gL2CQvJgHhTpKmUxW+e26GYNlcFUOjsx2ifXyzqNEscsZUP83BCUw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -25844,7 +25897,7 @@ packages: '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/components': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 - '@storybook/core-common': 6.4.19_fdtqczkawcrswx4npptvkurkw4 + '@storybook/core-common': 6.4.19_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/instrumenter': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -26190,7 +26243,7 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/builder-webpack4/6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y: + /@storybook/builder-webpack4/6.4.19_52w6muowxodes6gotb7vvotwui: resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -26228,7 +26281,7 @@ packages: '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/components': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 - '@storybook/core-common': 6.4.19_fdtqczkawcrswx4npptvkurkw4 + '@storybook/core-common': 6.4.19_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -26248,12 +26301,12 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_nsxf7ncibhkvddkocuxjl34lwu + fork-ts-checker-webpack-plugin: 4.1.6_evijigonbo4skk2vlqtwtdqibu glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.6.3 + pnp-webpack-plugin: 1.6.4_typescript@4.9.5 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -26264,7 +26317,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -26282,7 +26335,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.4.19_kbufn7ubumy7y62hp4wnmuatau: + /@storybook/builder-webpack4/6.4.19_n7ghqshvmroqkfrgzlr362wm3m: resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -26320,7 +26373,7 @@ packages: '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/components': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 - '@storybook/core-common': 6.4.19_y3bnzdvsjkpip64pgns7gd2pz4 + '@storybook/core-common': 6.4.19_3okb5bdjyyeqqpgf7ptkihrkey '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -26340,12 +26393,12 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_sczivhyoqpjdcntn6aely22ova + fork-ts-checker-webpack-plugin: 4.1.6_tz7gocjfej627bs3oz6eg63w4q glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.5.4 + pnp-webpack-plugin: 1.6.4_typescript@4.9.5 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -26356,7 +26409,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -26373,7 +26426,7 @@ packages: - webpack-cli - webpack-command - /@storybook/builder-webpack4/6.4.21_2twpjxv2ugrn5zfrjen7bwsr6y: + /@storybook/builder-webpack4/6.4.21_52w6muowxodes6gotb7vvotwui: resolution: {integrity: sha512-tetK8iZJ/S7U1Hrvm9i5ejH/SKJ/UHJcZ+j1VrzQK15wuwalevYJGJI3Gk2NzqKE8rda4CXPK1ES3iGcS67eZw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -26411,7 +26464,7 @@ packages: '@storybook/client-api': 6.4.21_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.21 '@storybook/components': 6.4.21_nn45z5sr7igu7sfun6tiae5hx4 - '@storybook/core-common': 6.4.21_fdtqczkawcrswx4npptvkurkw4 + '@storybook/core-common': 6.4.21_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/core-events': 6.4.21 '@storybook/node-logger': 6.4.21 '@storybook/preview-web': 6.4.21_sfoxds7t5ydpegc3knd667wn6m @@ -26431,12 +26484,12 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_nsxf7ncibhkvddkocuxjl34lwu + fork-ts-checker-webpack-plugin: 4.1.6_evijigonbo4skk2vlqtwtdqibu glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.6.3 + pnp-webpack-plugin: 1.6.4_typescript@4.9.5 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -26447,7 +26500,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -26465,7 +26518,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.4.21_kbufn7ubumy7y62hp4wnmuatau: + /@storybook/builder-webpack4/6.4.21_n7ghqshvmroqkfrgzlr362wm3m: resolution: {integrity: sha512-tetK8iZJ/S7U1Hrvm9i5ejH/SKJ/UHJcZ+j1VrzQK15wuwalevYJGJI3Gk2NzqKE8rda4CXPK1ES3iGcS67eZw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -26503,7 +26556,7 @@ packages: '@storybook/client-api': 6.4.21_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.21 '@storybook/components': 6.4.21_wxl36ivhwrw5jb3pb2jgvmgjq4 - '@storybook/core-common': 6.4.21_y3bnzdvsjkpip64pgns7gd2pz4 + '@storybook/core-common': 6.4.21_3okb5bdjyyeqqpgf7ptkihrkey '@storybook/core-events': 6.4.21 '@storybook/node-logger': 6.4.21 '@storybook/preview-web': 6.4.21_sfoxds7t5ydpegc3knd667wn6m @@ -26523,12 +26576,12 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_sczivhyoqpjdcntn6aely22ova + fork-ts-checker-webpack-plugin: 4.1.6_tz7gocjfej627bs3oz6eg63w4q glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.5.4 + pnp-webpack-plugin: 1.6.4_typescript@4.9.5 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -26539,7 +26592,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -26556,7 +26609,7 @@ packages: - webpack-cli - webpack-command - /@storybook/builder-webpack5/6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y: + /@storybook/builder-webpack5/6.4.19_52w6muowxodes6gotb7vvotwui: resolution: {integrity: sha512-AWM4YMN1gPaf7jfntqZTCGpIQ1tF6YRU1JtczPG4ox28rTaO6NMfOBi9aRhBre/59pPOh9bF6u2gu/MIHmRW+w==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -26593,7 +26646,7 @@ packages: '@storybook/client-api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/client-logger': 6.4.19 '@storybook/components': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 - '@storybook/core-common': 6.4.19_fdtqczkawcrswx4npptvkurkw4 + '@storybook/core-common': 6.4.19_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -26608,7 +26661,7 @@ packages: case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.21.1 css-loader: 5.2.7_webpack@5.70.0 - fork-ts-checker-webpack-plugin: 6.5.0_ougmcaqwpyw5y5phguoka2ilpy + fork-ts-checker-webpack-plugin: 6.5.0_7tuhpze3ldk5r64y6dj6kgq4dy glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 html-webpack-plugin: 5.5.0_webpack@5.70.0 @@ -26620,7 +26673,7 @@ packages: style-loader: 2.0.0_webpack@5.70.0 terser-webpack-plugin: 5.3.1_webpack@5.70.0 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 5.70.0 webpack-dev-middleware: 4.3.0_webpack@5.70.0 @@ -26904,7 +26957,7 @@ packages: transitivePeerDependencies: - '@types/react' - /@storybook/core-client/6.4.19_eshzehu67z7j346spvqrcegwoy: + /@storybook/core-client/6.4.19_grqmadm3dljwdof2ubwnv2xdiu: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -26924,7 +26977,7 @@ packages: '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/ui': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 + '@storybook/ui': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.24.0 @@ -26935,15 +26988,14 @@ packages: react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.75.0 + webpack: 4.46.0 transitivePeerDependencies: - '@types/react' - dev: true - /@storybook/core-client/6.4.19_grnzn755dghydbz4r7eq4dwjoy: + /@storybook/core-client/6.4.19_kyquobhd7kgcxjcrdrwfthmy3y: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -26963,7 +27015,7 @@ packages: '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/ui': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 + '@storybook/ui': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.24.0 @@ -26974,14 +27026,15 @@ packages: react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 4.46.0 + webpack: 5.75.0 transitivePeerDependencies: - '@types/react' + dev: true - /@storybook/core-client/6.4.19_iey2tjbwmr6zthrzfn7qu4ksga: + /@storybook/core-client/6.4.19_omssc2e4uzqyeqfgrgqhsfshue: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27012,15 +27065,15 @@ packages: react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 4.46.0 + webpack: 5.70.0 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-client/6.4.19_sljoyztidzjmc3izbzbqqxcgwe: + /@storybook/core-client/6.4.19_oxxsrukc33ww3kuuph5lsifije: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27051,14 +27104,14 @@ packages: react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 5.74.0 transitivePeerDependencies: - '@types/react' - /@storybook/core-client/6.4.19_teatog5wugzxb6vkrfa75itrxy: + /@storybook/core-client/6.4.19_twoxoaxtp5i7bwn4ylr3oeiquq: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27089,15 +27142,15 @@ packages: react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.70.0 + webpack: 4.46.0 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-client/6.4.21_grnzn755dghydbz4r7eq4dwjoy: + /@storybook/core-client/6.4.21_grqmadm3dljwdof2ubwnv2xdiu: resolution: {integrity: sha512-1zdfhL7ryP5xgcBNuaQplkiPIgPZ2OnIFA1gqun1xl9OBA7K2J115uZ2grQwS7hrhRBqsRIvMv1k9UmAYzXqiw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27128,14 +27181,14 @@ packages: react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: - '@types/react' - /@storybook/core-client/6.4.21_iey2tjbwmr6zthrzfn7qu4ksga: + /@storybook/core-client/6.4.21_twoxoaxtp5i7bwn4ylr3oeiquq: resolution: {integrity: sha512-1zdfhL7ryP5xgcBNuaQplkiPIgPZ2OnIFA1gqun1xl9OBA7K2J115uZ2grQwS7hrhRBqsRIvMv1k9UmAYzXqiw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27166,7 +27219,7 @@ packages: react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -27174,7 +27227,7 @@ packages: - '@types/react' dev: true - /@storybook/core-common/6.4.19_fdtqczkawcrswx4npptvkurkw4: + /@storybook/core-common/6.4.19_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27217,7 +27270,7 @@ packages: express: 4.17.3 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_nsxf7ncibhkvddkocuxjl34lwu + fork-ts-checker-webpack-plugin: 6.5.0_tz7gocjfej627bs3oz6eg63w4q fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 @@ -27233,7 +27286,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -27242,9 +27295,8 @@ packages: - vue-template-compiler - webpack-cli - webpack-command - dev: true - /@storybook/core-common/6.4.19_y3bnzdvsjkpip64pgns7gd2pz4: + /@storybook/core-common/6.4.19_jgxnvbe4faw3ohf4h6p42qq6oy: resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27287,7 +27339,7 @@ packages: express: 4.17.3 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_sczivhyoqpjdcntn6aely22ova + fork-ts-checker-webpack-plugin: 6.5.0_evijigonbo4skk2vlqtwtdqibu fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 @@ -27303,7 +27355,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -27312,8 +27364,9 @@ packages: - vue-template-compiler - webpack-cli - webpack-command + dev: true - /@storybook/core-common/6.4.21_fdtqczkawcrswx4npptvkurkw4: + /@storybook/core-common/6.4.21_3okb5bdjyyeqqpgf7ptkihrkey: resolution: {integrity: sha512-apYT4CTRn0iR3DEf59Sc2i9L1WjbewmzYrmHTjNuygS7sjKxV8nppz60yvtLiHu4AWE+quXL3hen5yW9n9mnjw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27356,7 +27409,7 @@ packages: express: 4.18.2 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_nsxf7ncibhkvddkocuxjl34lwu + fork-ts-checker-webpack-plugin: 6.5.0_tz7gocjfej627bs3oz6eg63w4q fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 @@ -27372,7 +27425,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -27381,9 +27434,8 @@ packages: - vue-template-compiler - webpack-cli - webpack-command - dev: true - /@storybook/core-common/6.4.21_y3bnzdvsjkpip64pgns7gd2pz4: + /@storybook/core-common/6.4.21_jgxnvbe4faw3ohf4h6p42qq6oy: resolution: {integrity: sha512-apYT4CTRn0iR3DEf59Sc2i9L1WjbewmzYrmHTjNuygS7sjKxV8nppz60yvtLiHu4AWE+quXL3hen5yW9n9mnjw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27426,7 +27478,7 @@ packages: express: 4.18.2 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_sczivhyoqpjdcntn6aely22ova + fork-ts-checker-webpack-plugin: 6.5.0_evijigonbo4skk2vlqtwtdqibu fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 @@ -27442,7 +27494,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -27451,6 +27503,7 @@ packages: - vue-template-compiler - webpack-cli - webpack-command + dev: true /@storybook/core-events/6.4.19: resolution: {integrity: sha512-KICzUw6XVQUJzFSCXfvhfHAuyhn4Q5J4IZEfuZkcGJS4ODkrO6tmpdYE5Cfr+so95Nfp0ErWiLUuodBsW9/rtA==} @@ -27462,7 +27515,7 @@ packages: dependencies: core-js: 3.24.0 - /@storybook/core-server/6.4.19_kbufn7ubumy7y62hp4wnmuatau: + /@storybook/core-server/6.4.19_n7ghqshvmroqkfrgzlr362wm3m: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -27479,13 +27532,13 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_kbufn7ubumy7y62hp4wnmuatau - '@storybook/core-client': 6.4.19_grnzn755dghydbz4r7eq4dwjoy - '@storybook/core-common': 6.4.19_y3bnzdvsjkpip64pgns7gd2pz4 + '@storybook/builder-webpack4': 6.4.19_n7ghqshvmroqkfrgzlr362wm3m + '@storybook/core-client': 6.4.19_grqmadm3dljwdof2ubwnv2xdiu + '@storybook/core-common': 6.4.19_3okb5bdjyyeqqpgf7ptkihrkey '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_kbufn7ubumy7y62hp4wnmuatau + '@storybook/manager-webpack4': 6.4.19_n7ghqshvmroqkfrgzlr362wm3m '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -27518,7 +27571,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 @@ -27535,7 +27588,7 @@ packages: - webpack-cli - webpack-command - /@storybook/core-server/6.4.19_zs76nz4gzdx3oneotqbnvvsdca: + /@storybook/core-server/6.4.19_snbo7kqgdcxrhmnlsrcnpyrcfe: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -27552,15 +27605,15 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/builder-webpack5': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/core-client': 6.4.19_iey2tjbwmr6zthrzfn7qu4ksga - '@storybook/core-common': 6.4.19_fdtqczkawcrswx4npptvkurkw4 + '@storybook/builder-webpack4': 6.4.19_52w6muowxodes6gotb7vvotwui + '@storybook/builder-webpack5': 6.4.19_52w6muowxodes6gotb7vvotwui + '@storybook/core-client': 6.4.19_twoxoaxtp5i7bwn4ylr3oeiquq + '@storybook/core-common': 6.4.19_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/manager-webpack5': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y + '@storybook/manager-webpack4': 6.4.19_52w6muowxodes6gotb7vvotwui + '@storybook/manager-webpack5': 6.4.19_52w6muowxodes6gotb7vvotwui '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -27593,7 +27646,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 @@ -27611,7 +27664,7 @@ packages: - webpack-command dev: true - /@storybook/core-server/6.4.21_kbufn7ubumy7y62hp4wnmuatau: + /@storybook/core-server/6.4.21_n7ghqshvmroqkfrgzlr362wm3m: resolution: {integrity: sha512-uOBrLKzERAJvGAtd9ieozoTjEu0Hnr7DnufppG4t14Yu61lcbsT3IzPeZDuFaM3tGjWlNgXIezZ2aBoxTMVokQ==} peerDependencies: '@storybook/builder-webpack5': 6.4.21 @@ -27628,13 +27681,13 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.21_kbufn7ubumy7y62hp4wnmuatau - '@storybook/core-client': 6.4.21_grnzn755dghydbz4r7eq4dwjoy - '@storybook/core-common': 6.4.21_y3bnzdvsjkpip64pgns7gd2pz4 + '@storybook/builder-webpack4': 6.4.21_n7ghqshvmroqkfrgzlr362wm3m + '@storybook/core-client': 6.4.21_grqmadm3dljwdof2ubwnv2xdiu + '@storybook/core-common': 6.4.21_3okb5bdjyyeqqpgf7ptkihrkey '@storybook/core-events': 6.4.21 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.21 - '@storybook/manager-webpack4': 6.4.21_kbufn7ubumy7y62hp4wnmuatau + '@storybook/manager-webpack4': 6.4.21_n7ghqshvmroqkfrgzlr362wm3m '@storybook/node-logger': 6.4.21 '@storybook/semver': 7.3.2 '@storybook/store': 6.4.21_sfoxds7t5ydpegc3knd667wn6m @@ -27667,7 +27720,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 util-deprecate: 1.0.2 watchpack: 2.3.1 webpack: 4.46.0 @@ -27684,7 +27737,7 @@ packages: - webpack-cli - webpack-command - /@storybook/core-server/6.4.21_zs76nz4gzdx3oneotqbnvvsdca: + /@storybook/core-server/6.4.21_snbo7kqgdcxrhmnlsrcnpyrcfe: resolution: {integrity: sha512-uOBrLKzERAJvGAtd9ieozoTjEu0Hnr7DnufppG4t14Yu61lcbsT3IzPeZDuFaM3tGjWlNgXIezZ2aBoxTMVokQ==} peerDependencies: '@storybook/builder-webpack5': 6.4.21 @@ -27701,15 +27754,15 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.21_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/builder-webpack5': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/core-client': 6.4.21_iey2tjbwmr6zthrzfn7qu4ksga - '@storybook/core-common': 6.4.21_fdtqczkawcrswx4npptvkurkw4 + '@storybook/builder-webpack4': 6.4.21_52w6muowxodes6gotb7vvotwui + '@storybook/builder-webpack5': 6.4.19_52w6muowxodes6gotb7vvotwui + '@storybook/core-client': 6.4.21_twoxoaxtp5i7bwn4ylr3oeiquq + '@storybook/core-common': 6.4.21_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/core-events': 6.4.21 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.21 - '@storybook/manager-webpack4': 6.4.21_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/manager-webpack5': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y + '@storybook/manager-webpack4': 6.4.21_52w6muowxodes6gotb7vvotwui + '@storybook/manager-webpack5': 6.4.19_52w6muowxodes6gotb7vvotwui '@storybook/node-logger': 6.4.21 '@storybook/semver': 7.3.2 '@storybook/store': 6.4.21_sfoxds7t5ydpegc3knd667wn6m @@ -27742,7 +27795,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 util-deprecate: 1.0.2 watchpack: 2.3.1 webpack: 4.46.0 @@ -27760,7 +27813,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_4qtj5asobdpzkctfhwxgwpt3ru: + /@storybook/core/6.4.19_ee7algnj2jlym6bdlc6xdedxwi: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -27774,12 +27827,12 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/core-client': 6.4.19_eshzehu67z7j346spvqrcegwoy - '@storybook/core-server': 6.4.19_zs76nz4gzdx3oneotqbnvvsdca + '@storybook/builder-webpack5': 6.4.19_52w6muowxodes6gotb7vvotwui + '@storybook/core-client': 6.4.19_kyquobhd7kgcxjcrdrwfthmy3y + '@storybook/core-server': 6.4.19_snbo7kqgdcxrhmnlsrcnpyrcfe react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - typescript: 4.6.3 + typescript: 4.9.5 webpack: 5.75.0 transitivePeerDependencies: - '@storybook/manager-webpack5' @@ -27795,7 +27848,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_aul5vhzjvlbbpjwuo3uelm2cbe: + /@storybook/core/6.4.19_t657q3l7fsw6m6sy4dxuaynai4: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -27809,11 +27862,11 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.4.19_sljoyztidzjmc3izbzbqqxcgwe - '@storybook/core-server': 6.4.19_kbufn7ubumy7y62hp4wnmuatau + '@storybook/core-client': 6.4.19_oxxsrukc33ww3kuuph5lsifije + '@storybook/core-server': 6.4.19_n7ghqshvmroqkfrgzlr362wm3m react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - typescript: 4.5.4 + typescript: 4.9.5 webpack: 5.74.0 transitivePeerDependencies: - '@storybook/manager-webpack5' @@ -27828,7 +27881,7 @@ packages: - webpack-cli - webpack-command - /@storybook/core/6.4.21_2ed45ukyqipglnyfspxtdtprki: + /@storybook/core/6.4.21_4igbjziew4e4emyhbyoso53lwi: resolution: {integrity: sha512-HNy3L/5stURU5CPyo4Gh/NHhgs6qgvNq82pOr9mhnr2chNOUTh/kaWjrR4k/Mnh8qzItYLs1tpIFKvhclHXAdw==} peerDependencies: '@storybook/builder-webpack5': 6.4.21 @@ -27842,11 +27895,12 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.4.21_grnzn755dghydbz4r7eq4dwjoy - '@storybook/core-server': 6.4.21_kbufn7ubumy7y62hp4wnmuatau + '@storybook/builder-webpack5': 6.4.19_52w6muowxodes6gotb7vvotwui + '@storybook/core-client': 6.4.21_twoxoaxtp5i7bwn4ylr3oeiquq + '@storybook/core-server': 6.4.21_snbo7kqgdcxrhmnlsrcnpyrcfe react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - typescript: 4.5.4 + typescript: 4.9.5 webpack: 4.46.0 transitivePeerDependencies: - '@storybook/manager-webpack5' @@ -27860,8 +27914,9 @@ packages: - vue-template-compiler - webpack-cli - webpack-command + dev: true - /@storybook/core/6.4.21_ammjlh54vrz42cx2pqi4t54awu: + /@storybook/core/6.4.21_xu24havzx2zt2non7xfg2m5f24: resolution: {integrity: sha512-HNy3L/5stURU5CPyo4Gh/NHhgs6qgvNq82pOr9mhnr2chNOUTh/kaWjrR4k/Mnh8qzItYLs1tpIFKvhclHXAdw==} peerDependencies: '@storybook/builder-webpack5': 6.4.21 @@ -27875,12 +27930,11 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y - '@storybook/core-client': 6.4.21_iey2tjbwmr6zthrzfn7qu4ksga - '@storybook/core-server': 6.4.21_zs76nz4gzdx3oneotqbnvvsdca + '@storybook/core-client': 6.4.21_grqmadm3dljwdof2ubwnv2xdiu + '@storybook/core-server': 6.4.21_n7ghqshvmroqkfrgzlr362wm3m react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - typescript: 4.6.3 + typescript: 4.9.5 webpack: 4.46.0 transitivePeerDependencies: - '@storybook/manager-webpack5' @@ -27894,7 +27948,6 @@ packages: - vue-template-compiler - webpack-cli - webpack-command - dev: true /@storybook/csf-tools/6.4.19: resolution: {integrity: sha512-gf/zRhGoAVsFwSyV2tc+jeJfZQkxF6QsaZgbUSe24/IUvGFCT/PS/jZq1qy7dECAwrTOfykgu8juyBtj6WhWyw==} @@ -27959,7 +28012,7 @@ packages: - react-dom dev: true - /@storybook/manager-webpack4/6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y: + /@storybook/manager-webpack4/6.4.19_52w6muowxodes6gotb7vvotwui: resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -27973,8 +28026,8 @@ packages: '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.18.9 '@babel/preset-react': 7.16.7_@babel+core@7.18.9 '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-client': 6.4.19_iey2tjbwmr6zthrzfn7qu4ksga - '@storybook/core-common': 6.4.19_fdtqczkawcrswx4npptvkurkw4 + '@storybook/core-client': 6.4.19_twoxoaxtp5i7bwn4ylr3oeiquq + '@storybook/core-common': 6.4.19_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/node-logger': 6.4.19 '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/ui': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 @@ -27992,7 +28045,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.6.3 + pnp-webpack-plugin: 1.6.4_typescript@4.9.5 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 @@ -28002,7 +28055,7 @@ packages: telejson: 5.3.3 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -28019,7 +28072,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.4.19_kbufn7ubumy7y62hp4wnmuatau: + /@storybook/manager-webpack4/6.4.19_n7ghqshvmroqkfrgzlr362wm3m: resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -28033,8 +28086,8 @@ packages: '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.18.9 '@babel/preset-react': 7.16.7_@babel+core@7.18.9 '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-client': 6.4.19_grnzn755dghydbz4r7eq4dwjoy - '@storybook/core-common': 6.4.19_y3bnzdvsjkpip64pgns7gd2pz4 + '@storybook/core-client': 6.4.19_grqmadm3dljwdof2ubwnv2xdiu + '@storybook/core-common': 6.4.19_3okb5bdjyyeqqpgf7ptkihrkey '@storybook/node-logger': 6.4.19 '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/ui': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 @@ -28052,7 +28105,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.5.4 + pnp-webpack-plugin: 1.6.4_typescript@4.9.5 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 @@ -28062,7 +28115,7 @@ packages: telejson: 5.3.3 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -28078,7 +28131,7 @@ packages: - webpack-cli - webpack-command - /@storybook/manager-webpack4/6.4.21_2twpjxv2ugrn5zfrjen7bwsr6y: + /@storybook/manager-webpack4/6.4.21_52w6muowxodes6gotb7vvotwui: resolution: {integrity: sha512-JhcGU6KtmNQUfSNNgAWIKVKOaupx7+RYw3y6P0JN5km5nzqpipkeJzh+jdMqefJbIRV/psqKm/jpt/pPfaIHyQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -28092,8 +28145,8 @@ packages: '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@storybook/addons': 6.4.21_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-client': 6.4.21_iey2tjbwmr6zthrzfn7qu4ksga - '@storybook/core-common': 6.4.21_fdtqczkawcrswx4npptvkurkw4 + '@storybook/core-client': 6.4.21_twoxoaxtp5i7bwn4ylr3oeiquq + '@storybook/core-common': 6.4.21_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/node-logger': 6.4.21 '@storybook/theming': 6.4.21_sfoxds7t5ydpegc3knd667wn6m '@storybook/ui': 6.4.21_nn45z5sr7igu7sfun6tiae5hx4 @@ -28111,7 +28164,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.6.3 + pnp-webpack-plugin: 1.6.4_typescript@4.9.5 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 @@ -28121,7 +28174,7 @@ packages: telejson: 5.3.3 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -28138,7 +28191,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.4.21_kbufn7ubumy7y62hp4wnmuatau: + /@storybook/manager-webpack4/6.4.21_n7ghqshvmroqkfrgzlr362wm3m: resolution: {integrity: sha512-JhcGU6KtmNQUfSNNgAWIKVKOaupx7+RYw3y6P0JN5km5nzqpipkeJzh+jdMqefJbIRV/psqKm/jpt/pPfaIHyQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -28152,8 +28205,8 @@ packages: '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@storybook/addons': 6.4.21_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-client': 6.4.21_grnzn755dghydbz4r7eq4dwjoy - '@storybook/core-common': 6.4.21_y3bnzdvsjkpip64pgns7gd2pz4 + '@storybook/core-client': 6.4.21_grqmadm3dljwdof2ubwnv2xdiu + '@storybook/core-common': 6.4.21_3okb5bdjyyeqqpgf7ptkihrkey '@storybook/node-logger': 6.4.21 '@storybook/theming': 6.4.21_sfoxds7t5ydpegc3knd667wn6m '@storybook/ui': 6.4.21_wxl36ivhwrw5jb3pb2jgvmgjq4 @@ -28171,7 +28224,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.5.4 + pnp-webpack-plugin: 1.6.4_typescript@4.9.5 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 @@ -28181,7 +28234,7 @@ packages: telejson: 5.3.3 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -28197,7 +28250,7 @@ packages: - webpack-cli - webpack-command - /@storybook/manager-webpack5/6.4.19_2twpjxv2ugrn5zfrjen7bwsr6y: + /@storybook/manager-webpack5/6.4.19_52w6muowxodes6gotb7vvotwui: resolution: {integrity: sha512-hVjWhWAOgWaymBy0HeRskN+MfKLpqLP4Txfw+3Xqg1qplgexV0w2O4BQrS/SNEH4V/1qF9h8XTsk3L3oQIj3Mg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -28211,8 +28264,8 @@ packages: '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core-client': 6.4.19_teatog5wugzxb6vkrfa75itrxy - '@storybook/core-common': 6.4.19_fdtqczkawcrswx4npptvkurkw4 + '@storybook/core-client': 6.4.19_omssc2e4uzqyeqfgrgqhsfshue + '@storybook/core-common': 6.4.19_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/node-logger': 6.4.19 '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/ui': 6.4.19_nn45z5sr7igu7sfun6tiae5hx4 @@ -28238,7 +28291,7 @@ packages: telejson: 5.3.3 terser-webpack-plugin: 5.3.1_webpack@5.70.0 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 5.70.0 webpack-dev-middleware: 4.3.0_webpack@5.70.0 @@ -28279,7 +28332,7 @@ packages: dependencies: core-js: 3.24.0 - /@storybook/preset-create-react-app/4.1.0_ujumslsvp7ztyp4cyxdmxqmjfa: + /@storybook/preset-create-react-app/4.1.0_toosg7fcpy2dyvp4r6gagkuwny: resolution: {integrity: sha512-xMQlWhT8qHBnfrep4g+f2UFndpAiYnhkilHaf081eA9hsnSlj7Z9WKgHC5n09jBhfZpgL5Zf7Mx3lNwhHoEXBw==} peerDependencies: '@babel/core': '*' @@ -28290,12 +28343,12 @@ packages: '@babel/core': 7.20.5 '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_prxwy2zxcolvdag5hfkyuqbcze '@storybook/node-logger': 6.4.19 - '@storybook/react': 6.4.21_sd4ysh5ew7sghqnoje7e4qvhv4 - '@storybook/react-docgen-typescript-plugin': 1.0.2--canary.7.324a727c65a1819f7f3ede5abc1f32d440e4530a.0_ttrao37nuk7vg6nnwicoi3pt2a + '@storybook/react': 6.4.21_hbm3t5634ikvlrv7alx2gv6vkm + '@storybook/react-docgen-typescript-plugin': 1.0.2--canary.7.324a727c65a1819f7f3ede5abc1f32d440e4530a.0_63xtaxbd5aftweb5kajvrft2fm '@types/babel__core': 7.1.19 babel-plugin-react-docgen: 4.2.1 - pnp-webpack-plugin: 1.7.0_typescript@4.5.4 - react-scripts: 5.0.1_k6kqfqo72tcqgn4fymyddvykia + pnp-webpack-plugin: 1.7.0_typescript@4.9.5 + react-scripts: 5.0.1_pbnbv4grzz5lfjq3whhcbdqw4i semver: 7.3.5 transitivePeerDependencies: - '@types/webpack' @@ -28360,7 +28413,7 @@ packages: unfetch: 4.2.0 util-deprecate: 1.0.2 - /@storybook/react-docgen-typescript-plugin/1.0.2--canary.7.324a727c65a1819f7f3ede5abc1f32d440e4530a.0_ttrao37nuk7vg6nnwicoi3pt2a: + /@storybook/react-docgen-typescript-plugin/1.0.2--canary.7.324a727c65a1819f7f3ede5abc1f32d440e4530a.0_63xtaxbd5aftweb5kajvrft2fm: resolution: {integrity: sha512-tnaT0VqSGhmMi/I880aMOToSrNd7XCr1avS/M1tk/+FDO+0GqHXo9abC5sos705ly3Hmi1FxFvHnzV/cvU1JTg==} peerDependencies: typescript: '>= 3.x' @@ -28371,34 +28424,15 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.5.4 + react-docgen-typescript: 2.2.2_typescript@4.9.5 tslib: 2.4.1 - typescript: 4.5.4 + typescript: 4.9.5 webpack: 5.74.0 transitivePeerDependencies: - supports-color dev: true - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.253f8c1.0_nsxf7ncibhkvddkocuxjl34lwu: - resolution: {integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==} - peerDependencies: - typescript: '>= 3.x' - webpack: '>= 4' - dependencies: - debug: 4.3.4 - endent: 2.1.0 - find-cache-dir: 3.3.2 - flat-cache: 3.0.4 - micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.6.3 - tslib: 2.4.1 - typescript: 4.6.3 - webpack: 4.46.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.253f8c1.0_vag2rrccetrnhfgvcymhondcyi: + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.253f8c1.0_evijigonbo4skk2vlqtwtdqibu: resolution: {integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==} peerDependencies: typescript: '>= 3.x' @@ -28409,14 +28443,14 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.5.4 + react-docgen-typescript: 2.2.2_typescript@4.9.5 tslib: 2.4.1 - typescript: 4.5.4 + typescript: 4.9.5 webpack: 4.46.0 transitivePeerDependencies: - supports-color - /@storybook/react/6.4.21_khra7f3zywwoee5j2w3z3fwgaa: + /@storybook/react/6.4.21_hbm3t5634ikvlrv7alx2gv6vkm: resolution: {integrity: sha512-7SJJnEbZ5THQBjor37shxnhXiFTB7g46U68I/PY56A5ZLb4TkorKStrniKgTcxG9xNqQjyxm0S6CICUp9gn8PQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -28431,21 +28465,21 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.17.8 - '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_a3gyllrqvxpec3fpybsrposvju + '@babel/core': 7.20.5 + '@babel/preset-flow': 7.16.7_@babel+core@7.20.5 + '@babel/preset-react': 7.16.7_@babel+core@7.20.5 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_bel723r3ncw6p4u5xohjva2kru '@storybook/addons': 6.4.21_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core': 6.4.21_ammjlh54vrz42cx2pqi4t54awu - '@storybook/core-common': 6.4.21_fdtqczkawcrswx4npptvkurkw4 + '@storybook/core': 6.4.21_xu24havzx2zt2non7xfg2m5f24 + '@storybook/core-common': 6.4.21_3okb5bdjyyeqqpgf7ptkihrkey '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.21 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_nsxf7ncibhkvddkocuxjl34lwu + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_evijigonbo4skk2vlqtwtdqibu '@storybook/semver': 7.3.2 '@storybook/store': 6.4.21_sfoxds7t5ydpegc3knd667wn6m '@types/webpack-env': 1.16.3 babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 + babel-plugin-named-asset-import: 0.3.8_@babel+core@7.20.5 babel-plugin-react-docgen: 4.2.1 core-js: 3.21.1 global: 4.4.0 @@ -28457,7 +28491,7 @@ packages: read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.6.3 + typescript: 4.9.5 webpack: 4.46.0 transitivePeerDependencies: - '@storybook/builder-webpack5' @@ -28478,9 +28512,8 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: true - /@storybook/react/6.4.21_sd4ysh5ew7sghqnoje7e4qvhv4: + /@storybook/react/6.4.21_vu2vux4jkgbzndrkpyhaw2fwzq: resolution: {integrity: sha512-7SJJnEbZ5THQBjor37shxnhXiFTB7g46U68I/PY56A5ZLb4TkorKStrniKgTcxG9xNqQjyxm0S6CICUp9gn8PQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -28495,21 +28528,21 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.20.5 - '@babel/preset-flow': 7.16.7_@babel+core@7.20.5 - '@babel/preset-react': 7.16.7_@babel+core@7.20.5 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_bel723r3ncw6p4u5xohjva2kru + '@babel/core': 7.17.8 + '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_a3gyllrqvxpec3fpybsrposvju '@storybook/addons': 6.4.21_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core': 6.4.21_2ed45ukyqipglnyfspxtdtprki - '@storybook/core-common': 6.4.21_y3bnzdvsjkpip64pgns7gd2pz4 + '@storybook/core': 6.4.21_4igbjziew4e4emyhbyoso53lwi + '@storybook/core-common': 6.4.21_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.21 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_vag2rrccetrnhfgvcymhondcyi + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_evijigonbo4skk2vlqtwtdqibu '@storybook/semver': 7.3.2 '@storybook/store': 6.4.21_sfoxds7t5ydpegc3knd667wn6m '@types/webpack-env': 1.16.3 babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.8_@babel+core@7.20.5 + babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 babel-plugin-react-docgen: 4.2.1 core-js: 3.21.1 global: 4.4.0 @@ -28521,7 +28554,7 @@ packages: read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.5.4 + typescript: 4.9.5 webpack: 4.46.0 transitivePeerDependencies: - '@storybook/builder-webpack5' @@ -28542,6 +28575,7 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve + dev: true /@storybook/router/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-KWWwIzuyeEIWVezkCihwY2A76Il9tUNg0I410g9qT7NrEsKyqXGRYOijWub7c1GGyNjLqz0jtrrehtixMcJkuA==} @@ -29147,7 +29181,7 @@ packages: debug: 4.3.4 pirates: 4.0.5 tslib: 2.4.1 - typescript: 4.8.4 + typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true @@ -30454,7 +30488,7 @@ packages: resolution: {integrity: sha512-fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw==} dev: true - /@typescript-eslint/eslint-plugin/4.33.0_2ijpicueuwjei3grogf73iekcm: + /@typescript-eslint/eslint-plugin/4.33.0_s2qqtxhzmb7vugvfoyripfgp7i: resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -30465,8 +30499,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.33.0_cl6qtdo3npn4kngw26aibg642e - '@typescript-eslint/parser': 4.33.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/experimental-utils': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe + '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe '@typescript-eslint/scope-manager': 4.33.0 debug: 4.3.4 eslint: 7.32.0 @@ -30474,12 +30508,12 @@ packages: ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.3.5 - typescript: 4.3.5 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - /@typescript-eslint/eslint-plugin/5.29.0_yb4yj2f76b5nauodfyweowgpmu: + /@typescript-eslint/eslint-plugin/5.29.0_ztkfd272csi3rqpnooxm5u2ixi: resolution: {integrity: sha512-kgTsISt9pM53yRFQmLZ4npj99yGl3x3Pl7z4eA66OuTzAGC4bQB5H5fuLwPnqTKU3yyrrg4MIhjF17UYnL4c0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30490,23 +30524,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.29.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/parser': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe '@typescript-eslint/scope-manager': 5.29.0 - '@typescript-eslint/type-utils': 5.29.0_cl6qtdo3npn4kngw26aibg642e - '@typescript-eslint/utils': 5.29.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/type-utils': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe + '@typescript-eslint/utils': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe debug: 4.3.4 eslint: 7.32.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.3.5 - typescript: 4.3.5 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.31.0_dmz7yafn47jqok7u4e7fyrrl5i: + /@typescript-eslint/eslint-plugin/5.31.0_2jy2hcts3vekvegukgu76xplri: resolution: {integrity: sha512-VKW4JPHzG5yhYQrQ1AzXgVgX8ZAJEvCz0QI6mLRX4tf7rnFfh5D8SKm0Pq6w5PyNfAWJk6sv313+nEt3ohWMBQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30517,23 +30551,22 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.31.0_7yp3msae2ah6x4svoyguc3s57e + '@typescript-eslint/parser': 5.31.0_bqegqxcnsisudkhpmmezgt6uoa '@typescript-eslint/scope-manager': 5.31.0 - '@typescript-eslint/type-utils': 5.31.0_7yp3msae2ah6x4svoyguc3s57e - '@typescript-eslint/utils': 5.31.0_7yp3msae2ah6x4svoyguc3s57e + '@typescript-eslint/type-utils': 5.31.0_bqegqxcnsisudkhpmmezgt6uoa + '@typescript-eslint/utils': 5.31.0_bqegqxcnsisudkhpmmezgt6uoa debug: 4.3.4 - eslint: 8.30.0 + eslint: 8.20.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.7.4 - typescript: 4.7.4 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/eslint-plugin/5.31.0_jby3hmkqbkoqhgw6he4jh4atly: + /@typescript-eslint/eslint-plugin/5.31.0_incisn6o7qv6qlsy7g6t6fs75q: resolution: {integrity: sha512-VKW4JPHzG5yhYQrQ1AzXgVgX8ZAJEvCz0QI6mLRX4tf7rnFfh5D8SKm0Pq6w5PyNfAWJk6sv313+nEt3ohWMBQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30544,49 +30577,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.31.0_uqvic3pjifzbwcy5z3ixu3wwru + '@typescript-eslint/parser': 5.31.0_req3y6wneysbxs6mlxvssjag2i '@typescript-eslint/scope-manager': 5.31.0 - '@typescript-eslint/type-utils': 5.31.0_uqvic3pjifzbwcy5z3ixu3wwru - '@typescript-eslint/utils': 5.31.0_uqvic3pjifzbwcy5z3ixu3wwru + '@typescript-eslint/type-utils': 5.31.0_req3y6wneysbxs6mlxvssjag2i + '@typescript-eslint/utils': 5.31.0_req3y6wneysbxs6mlxvssjag2i debug: 4.3.4 eslint: 8.30.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.7.2 - typescript: 4.7.2 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.31.0_p4tq3bcgvzxb3ap4y5ma5cgtji: - resolution: {integrity: sha512-VKW4JPHzG5yhYQrQ1AzXgVgX8ZAJEvCz0QI6mLRX4tf7rnFfh5D8SKm0Pq6w5PyNfAWJk6sv313+nEt3ohWMBQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/parser': 5.31.0_usgz66ey7ky77b5itadjl3r2ua - '@typescript-eslint/scope-manager': 5.31.0 - '@typescript-eslint/type-utils': 5.31.0_usgz66ey7ky77b5itadjl3r2ua - '@typescript-eslint/utils': 5.31.0_usgz66ey7ky77b5itadjl3r2ua - debug: 4.3.4 - eslint: 8.20.0 - functional-red-black-tree: 1.0.1 - ignore: 5.2.0 - regexpp: 3.2.0 - semver: 7.3.8 - tsutils: 3.21.0_typescript@4.5.4 - typescript: 4.5.4 - transitivePeerDependencies: - - supports-color - - /@typescript-eslint/experimental-utils/3.10.1_cl6qtdo3npn4kngw26aibg642e: + /@typescript-eslint/experimental-utils/3.10.1_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -30594,7 +30601,7 @@ packages: dependencies: '@types/json-schema': 7.0.11 '@typescript-eslint/types': 3.10.1 - '@typescript-eslint/typescript-estree': 3.10.1_typescript@4.3.5 + '@typescript-eslint/typescript-estree': 3.10.1_typescript@4.9.5 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 2.1.0 @@ -30602,7 +30609,7 @@ packages: - supports-color - typescript - /@typescript-eslint/experimental-utils/4.33.0_cl6qtdo3npn4kngw26aibg642e: + /@typescript-eslint/experimental-utils/4.33.0_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -30611,7 +30618,7 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.3.5 + '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.9.5 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@7.32.0 @@ -30619,32 +30626,32 @@ packages: - supports-color - typescript - /@typescript-eslint/experimental-utils/5.17.0_usgz66ey7ky77b5itadjl3r2ua: + /@typescript-eslint/experimental-utils/5.17.0_bqegqxcnsisudkhpmmezgt6uoa: resolution: {integrity: sha512-U4sM5z0/ymSYqQT6I7lz8l0ZZ9zrya5VIwrwAP5WOJVabVtVsIpTMxPQe+D3qLyePT+VlETUTO2nA1+PufPx9Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.17.0_usgz66ey7ky77b5itadjl3r2ua + '@typescript-eslint/utils': 5.17.0_bqegqxcnsisudkhpmmezgt6uoa eslint: 8.20.0 transitivePeerDependencies: - supports-color - typescript - /@typescript-eslint/experimental-utils/5.18.0_cl6qtdo3npn4kngw26aibg642e: + /@typescript-eslint/experimental-utils/5.18.0_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-hypiw5N0aM2aH91/uMmG7RpyUH3PN/iOhilMwkMFZIbm/Bn/G3ZnbaYdSoAN4PG/XHQjdhBYLi0ZoRZsRYT4hA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.18.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/utils': 5.18.0_jofidmxrjzhj7l6vknpw5ecvfe eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/parser/4.33.0_cl6qtdo3npn4kngw26aibg642e: + /@typescript-eslint/parser/4.33.0_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -30656,14 +30663,14 @@ packages: dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.3.5 + '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.9.5 debug: 4.3.4 eslint: 7.32.0 - typescript: 4.3.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - /@typescript-eslint/parser/5.29.0_cl6qtdo3npn4kngw26aibg642e: + /@typescript-eslint/parser/5.29.0_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30675,15 +30682,15 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.29.0 '@typescript-eslint/types': 5.29.0 - '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.3.5 + '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.9.5 debug: 4.3.4 eslint: 7.32.0 - typescript: 4.3.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.31.0_7yp3msae2ah6x4svoyguc3s57e: + /@typescript-eslint/parser/5.31.0_bqegqxcnsisudkhpmmezgt6uoa: resolution: {integrity: sha512-UStjQiZ9OFTFReTrN+iGrC6O/ko9LVDhreEK5S3edmXgR396JGq7CoX2TWIptqt/ESzU2iRKXAHfSF2WJFcWHw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30695,15 +30702,14 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.31.0 '@typescript-eslint/types': 5.31.0 - '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.7.4 + '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.9.5 debug: 4.3.4 - eslint: 8.30.0 - typescript: 4.7.4 + eslint: 8.20.0 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/parser/5.31.0_uqvic3pjifzbwcy5z3ixu3wwru: + /@typescript-eslint/parser/5.31.0_req3y6wneysbxs6mlxvssjag2i: resolution: {integrity: sha512-UStjQiZ9OFTFReTrN+iGrC6O/ko9LVDhreEK5S3edmXgR396JGq7CoX2TWIptqt/ESzU2iRKXAHfSF2WJFcWHw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30715,30 +30721,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.31.0 '@typescript-eslint/types': 5.31.0 - '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.7.2 + '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.9.5 debug: 4.3.4 eslint: 8.30.0 - typescript: 4.7.2 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/parser/5.31.0_usgz66ey7ky77b5itadjl3r2ua: - resolution: {integrity: sha512-UStjQiZ9OFTFReTrN+iGrC6O/ko9LVDhreEK5S3edmXgR396JGq7CoX2TWIptqt/ESzU2iRKXAHfSF2WJFcWHw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.31.0 - '@typescript-eslint/types': 5.31.0 - '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.5.4 - debug: 4.3.4 - eslint: 8.20.0 - typescript: 4.5.4 + typescript: 4.9.5 transitivePeerDependencies: - supports-color @@ -30779,7 +30765,7 @@ packages: '@typescript-eslint/types': 5.31.0 '@typescript-eslint/visitor-keys': 5.31.0 - /@typescript-eslint/type-utils/5.29.0_cl6qtdo3npn4kngw26aibg642e: + /@typescript-eslint/type-utils/5.29.0_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-JK6bAaaiJozbox3K220VRfCzLa9n0ib/J+FHIwnaV3Enw/TO267qe0pM1b1QrrEuy6xun374XEAsRlA86JJnyg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30789,16 +30775,16 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.29.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/utils': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe debug: 4.3.4 eslint: 7.32.0 - tsutils: 3.21.0_typescript@4.3.5 - typescript: 4.3.5 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.31.0_7yp3msae2ah6x4svoyguc3s57e: + /@typescript-eslint/type-utils/5.31.0_bqegqxcnsisudkhpmmezgt6uoa: resolution: {integrity: sha512-7ZYqFbvEvYXFn9ax02GsPcEOmuWNg+14HIf4q+oUuLnMbpJ6eHAivCg7tZMVwzrIuzX3QCeAOqKoyMZCv5xe+w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30808,16 +30794,15 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.31.0_7yp3msae2ah6x4svoyguc3s57e + '@typescript-eslint/utils': 5.31.0_bqegqxcnsisudkhpmmezgt6uoa debug: 4.3.4 - eslint: 8.30.0 - tsutils: 3.21.0_typescript@4.7.4 - typescript: 4.7.4 + eslint: 8.20.0 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/type-utils/5.31.0_uqvic3pjifzbwcy5z3ixu3wwru: + /@typescript-eslint/type-utils/5.31.0_req3y6wneysbxs6mlxvssjag2i: resolution: {integrity: sha512-7ZYqFbvEvYXFn9ax02GsPcEOmuWNg+14HIf4q+oUuLnMbpJ6eHAivCg7tZMVwzrIuzX3QCeAOqKoyMZCv5xe+w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30827,33 +30812,15 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.31.0_uqvic3pjifzbwcy5z3ixu3wwru + '@typescript-eslint/utils': 5.31.0_req3y6wneysbxs6mlxvssjag2i debug: 4.3.4 eslint: 8.30.0 - tsutils: 3.21.0_typescript@4.7.2 - typescript: 4.7.2 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.31.0_usgz66ey7ky77b5itadjl3r2ua: - resolution: {integrity: sha512-7ZYqFbvEvYXFn9ax02GsPcEOmuWNg+14HIf4q+oUuLnMbpJ6eHAivCg7tZMVwzrIuzX3QCeAOqKoyMZCv5xe+w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/utils': 5.31.0_usgz66ey7ky77b5itadjl3r2ua - debug: 4.3.4 - eslint: 8.20.0 - tsutils: 3.21.0_typescript@4.5.4 - typescript: 4.5.4 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/types/3.10.1: resolution: {integrity: sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} @@ -30880,7 +30847,7 @@ packages: resolution: {integrity: sha512-/f/rMaEseux+I4wmR6mfpM2wvtNZb1p9hAV77hWfuKc3pmaANp5dLAZSiE3/8oXTYTt3uV9KW5yZKJsMievp6g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@typescript-eslint/typescript-estree/3.10.1_typescript@4.3.5: + /@typescript-eslint/typescript-estree/3.10.1_typescript@4.9.5: resolution: {integrity: sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -30896,12 +30863,12 @@ packages: is-glob: 4.0.3 lodash: 4.17.21 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.3.5 - typescript: 4.3.5 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - /@typescript-eslint/typescript-estree/4.33.0_typescript@4.3.5: + /@typescript-eslint/typescript-estree/4.33.0_typescript@4.9.5: resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -30916,12 +30883,12 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.3.5 - typescript: 4.3.5 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - /@typescript-eslint/typescript-estree/5.17.0_typescript@4.5.4: + /@typescript-eslint/typescript-estree/5.17.0_typescript@4.9.5: resolution: {integrity: sha512-X1gtjEcmM7Je+qJRhq7ZAAaNXYhTgqMkR10euC4Si6PIjb+kwEQHSxGazXUQXFyqfEXdkGf6JijUu5R0uceQzg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30936,12 +30903,12 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.5.4 - typescript: 4.5.4 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - /@typescript-eslint/typescript-estree/5.18.0_typescript@4.3.5: + /@typescript-eslint/typescript-estree/5.18.0_typescript@4.9.5: resolution: {integrity: sha512-wa+2VAhOPpZs1bVij9e5gyVu60ReMi/KuOx4LKjGx2Y3XTNUDJgQ+5f77D49pHtqef/klglf+mibuHs9TrPxdQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30956,13 +30923,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.3.5 - typescript: 4.3.5 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.29.0_typescript@4.3.5: + /@typescript-eslint/typescript-estree/5.29.0_typescript@4.9.5: resolution: {integrity: sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -30977,54 +30944,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.3.5 - typescript: 4.3.5 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/typescript-estree/5.31.0_typescript@4.5.4: - resolution: {integrity: sha512-3S625TMcARX71wBc2qubHaoUwMEn+l9TCsaIzYI/ET31Xm2c9YQ+zhGgpydjorwQO9pLfR/6peTzS/0G3J/hDw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.31.0 - '@typescript-eslint/visitor-keys': 5.31.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0_typescript@4.5.4 - typescript: 4.5.4 - transitivePeerDependencies: - - supports-color - - /@typescript-eslint/typescript-estree/5.31.0_typescript@4.7.2: - resolution: {integrity: sha512-3S625TMcARX71wBc2qubHaoUwMEn+l9TCsaIzYI/ET31Xm2c9YQ+zhGgpydjorwQO9pLfR/6peTzS/0G3J/hDw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.31.0 - '@typescript-eslint/visitor-keys': 5.31.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0_typescript@4.7.2 - typescript: 4.7.2 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.31.0_typescript@4.7.4: + /@typescript-eslint/typescript-estree/5.31.0_typescript@4.9.5: resolution: {integrity: sha512-3S625TMcARX71wBc2qubHaoUwMEn+l9TCsaIzYI/ET31Xm2c9YQ+zhGgpydjorwQO9pLfR/6peTzS/0G3J/hDw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -31039,13 +30965,12 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.7.4 - typescript: 4.7.4 + tsutils: 3.21.0_typescript@4.9.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/utils/5.17.0_usgz66ey7ky77b5itadjl3r2ua: + /@typescript-eslint/utils/5.17.0_bqegqxcnsisudkhpmmezgt6uoa: resolution: {integrity: sha512-DVvndq1QoxQH+hFv+MUQHrrWZ7gQ5KcJzyjhzcqB1Y2Xes1UQQkTRPUfRpqhS8mhTWsSb2+iyvDW1Lef5DD7vA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -31054,7 +30979,7 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 5.17.0 '@typescript-eslint/types': 5.17.0 - '@typescript-eslint/typescript-estree': 5.17.0_typescript@4.5.4 + '@typescript-eslint/typescript-estree': 5.17.0_typescript@4.9.5 eslint: 8.20.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.20.0 @@ -31062,7 +30987,7 @@ packages: - supports-color - typescript - /@typescript-eslint/utils/5.18.0_cl6qtdo3npn4kngw26aibg642e: + /@typescript-eslint/utils/5.18.0_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-+hFGWUMMri7OFY26TsOlGa+zgjEy1ssEipxpLjtl4wSll8zy85x0GrUSju/FHdKfVorZPYJLkF3I4XPtnCTewA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -31071,7 +30996,7 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 5.18.0 '@typescript-eslint/types': 5.18.0 - '@typescript-eslint/typescript-estree': 5.18.0_typescript@4.3.5 + '@typescript-eslint/typescript-estree': 5.18.0_typescript@4.9.5 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@7.32.0 @@ -31080,7 +31005,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils/5.29.0_cl6qtdo3npn4kngw26aibg642e: + /@typescript-eslint/utils/5.29.0_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -31089,7 +31014,7 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 5.29.0 '@typescript-eslint/types': 5.29.0 - '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.3.5 + '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.9.5 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@7.32.0 @@ -31098,7 +31023,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils/5.31.0_7yp3msae2ah6x4svoyguc3s57e: + /@typescript-eslint/utils/5.31.0_bqegqxcnsisudkhpmmezgt6uoa: resolution: {integrity: sha512-kcVPdQS6VIpVTQ7QnGNKMFtdJdvnStkqS5LeALr4rcwx11G6OWb2HB17NMPnlRHvaZP38hL9iK8DdE9Fne7NYg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -31107,16 +31032,15 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 5.31.0 '@typescript-eslint/types': 5.31.0 - '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.7.4 - eslint: 8.30.0 + '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.9.5 + eslint: 8.20.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.30.0 + eslint-utils: 3.0.0_eslint@8.20.0 transitivePeerDependencies: - supports-color - typescript - dev: true - /@typescript-eslint/utils/5.31.0_uqvic3pjifzbwcy5z3ixu3wwru: + /@typescript-eslint/utils/5.31.0_req3y6wneysbxs6mlxvssjag2i: resolution: {integrity: sha512-kcVPdQS6VIpVTQ7QnGNKMFtdJdvnStkqS5LeALr4rcwx11G6OWb2HB17NMPnlRHvaZP38hL9iK8DdE9Fne7NYg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -31125,7 +31049,7 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 5.31.0 '@typescript-eslint/types': 5.31.0 - '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.7.2 + '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.9.5 eslint: 8.30.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.30.0 @@ -31134,23 +31058,6 @@ packages: - typescript dev: true - /@typescript-eslint/utils/5.31.0_usgz66ey7ky77b5itadjl3r2ua: - resolution: {integrity: sha512-kcVPdQS6VIpVTQ7QnGNKMFtdJdvnStkqS5LeALr4rcwx11G6OWb2HB17NMPnlRHvaZP38hL9iK8DdE9Fne7NYg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@types/json-schema': 7.0.11 - '@typescript-eslint/scope-manager': 5.31.0 - '@typescript-eslint/types': 5.31.0 - '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.5.4 - eslint: 8.20.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.20.0 - transitivePeerDependencies: - - supports-color - - typescript - /@typescript-eslint/visitor-keys/3.10.1: resolution: {integrity: sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} @@ -31429,7 +31336,7 @@ packages: prettier: 2.7.1 dev: true - /@vue/eslint-config-typescript/11.0.2_adxhicpeghzj7xflzvuh26phpu: + /@vue/eslint-config-typescript/11.0.2_e7nujtl4m5gujhbjzh7ybztlfm: resolution: {integrity: sha512-EiKud1NqlWmSapBFkeSrE994qpKx7/27uCGnhdqzllYDpQZroyX/O6bwjEpeuyKamvLbsGdO6PMR2faIf+zFnw==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -31440,11 +31347,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.31.0_dmz7yafn47jqok7u4e7fyrrl5i - '@typescript-eslint/parser': 5.31.0_7yp3msae2ah6x4svoyguc3s57e + '@typescript-eslint/eslint-plugin': 5.31.0_incisn6o7qv6qlsy7g6t6fs75q + '@typescript-eslint/parser': 5.31.0_req3y6wneysbxs6mlxvssjag2i eslint: 8.30.0 eslint-plugin-vue: 9.8.0_eslint@8.30.0 - typescript: 4.7.4 + typescript: 4.9.5 vue-eslint-parser: 9.1.0_eslint@8.30.0 transitivePeerDependencies: - supports-color @@ -33274,14 +33181,14 @@ packages: engines: {node: '>=0.8'} dev: true - /auto/10.36.5_y4qulqmukjoftrdyqj7awk6qby: + /auto/10.36.5_gdxbtungus7rykd22mbjbmvap4: resolution: {integrity: sha512-BKH2Vetv3Kkrd1COPnpvfm93+p5XlGjmg+EnBYyha6+bpXKUu1rwd3emr+5VLD32jkwoh5UnPJ0/PiMNGVB7vQ==} engines: {node: '>=10.x'} hasBin: true dependencies: - '@auto-it/core': 10.36.5_y4qulqmukjoftrdyqj7awk6qby - '@auto-it/npm': 10.36.5_y4qulqmukjoftrdyqj7awk6qby - '@auto-it/released': 10.36.5_y4qulqmukjoftrdyqj7awk6qby + '@auto-it/core': 10.36.5_gdxbtungus7rykd22mbjbmvap4 + '@auto-it/npm': 10.36.5_gdxbtungus7rykd22mbjbmvap4 + '@auto-it/released': 10.36.5_gdxbtungus7rykd22mbjbmvap4 await-to-js: 3.0.0 chalk: 4.1.2 command-line-application: 0.10.1 @@ -35092,7 +34999,7 @@ packages: mississippi: 3.0.0 mkdirp: 0.5.6 move-concurrently: 1.0.1 - promise-inflight: 1.0.1_bluebird@3.7.2 + promise-inflight: 1.0.1 rimraf: 2.7.1 ssri: 6.0.2 unique-filename: 1.1.1 @@ -36743,7 +36650,7 @@ packages: engines: {node: '>= 0.4.0'} dev: true - /cosmiconfig-typescript-loader/1.0.6_u3pcqfwtcdtahqtopunwgcaiyq: + /cosmiconfig-typescript-loader/1.0.6_pcraivvvcp3hdgpdkddzbjo4ki: resolution: {integrity: sha512-2nEotziYJWtNtoTjKbchj9QrdTT6DBxCvqjNKoDKARw+e2yZmTQCa07uRrykLIZuvSgp69YXLH89UHc0WhdMfQ==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -36752,14 +36659,14 @@ packages: dependencies: '@types/node': 12.20.47 cosmiconfig: 7.1.0 - ts-node: 10.7.0_u3pcqfwtcdtahqtopunwgcaiyq - typescript: 4.3.5 + ts-node: 10.7.0_pcraivvvcp3hdgpdkddzbjo4ki + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' dev: true - /cosmiconfig-typescript-loader/4.3.0_tte6z5bimn4ppusm764epzjmi4: + /cosmiconfig-typescript-loader/4.3.0_5gkmri332dq43fwlysr2filgwm: resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -36770,8 +36677,8 @@ packages: dependencies: '@types/node': 18.11.13 cosmiconfig: 8.0.0 - ts-node: 10.9.1_zwbbn7v4nhzhfdmlr6kgywzsoe - typescript: 4.8.4 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga + typescript: 4.9.5 dev: true /cosmiconfig/5.2.1: @@ -36905,12 +36812,12 @@ packages: antd: '>= 3.0.0' react-scripts: ^3.4.3 dependencies: - '@craco/craco': 6.4.3_xuuxweu7ep5wbn6yf3ru4tnrs4 + '@craco/craco': 6.4.3_u2c7aebudwn7l5c6nel6iah7lm antd: 4.19.3_sfoxds7t5ydpegc3knd667wn6m babel-plugin-import: 1.13.3 craco-less: 1.17.0_d4n5jxessttlcukz6img2ynokm less-vars-to-js: 1.3.0 - react-scripts: 4.0.3_x42bqxgwliwa4f7rcvhhje7sti + react-scripts: 4.0.3_oatgdhaahtizs2uezdzbohxvne transitivePeerDependencies: - webpack dev: true @@ -36921,10 +36828,10 @@ packages: '@craco/craco': ^5.5.0 react-scripts: ^3.3.0 dependencies: - '@craco/craco': 6.4.3_xuuxweu7ep5wbn6yf3ru4tnrs4 + '@craco/craco': 6.4.3_u2c7aebudwn7l5c6nel6iah7lm less: 3.13.1 less-loader: 6.2.0_webpack@4.44.2 - react-scripts: 4.0.3_x42bqxgwliwa4f7rcvhhje7sti + react-scripts: 4.0.3_oatgdhaahtizs2uezdzbohxvne transitivePeerDependencies: - webpack dev: true @@ -39026,7 +38933,7 @@ packages: '@docusaurus/core': ^2.0.0-beta sass: ^1.30.0 dependencies: - '@docusaurus/core': 2.0.0-beta.20_qmhqrjkw7am5ihdtvscs63zssq + '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey sass: 1.52.3 sass-loader: 10.2.1_sass@1.52.3+webpack@5.75.0 transitivePeerDependencies: @@ -40288,8 +40195,8 @@ packages: eslint: ^7.32.0 || ^8.2.0 eslint-plugin-import: ^2.25.3 dependencies: - '@typescript-eslint/eslint-plugin': 5.29.0_yb4yj2f76b5nauodfyweowgpmu - '@typescript-eslint/parser': 5.29.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/eslint-plugin': 5.29.0_ztkfd272csi3rqpnooxm5u2ixi + '@typescript-eslint/parser': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe eslint: 7.32.0 eslint-config-airbnb-base: 15.0.0_hpmu7kn6tcn2vnxpfzvv33bxmy eslint-plugin-import: 2.26.0_yxksxet5hkhlzmpka35q75ehqq @@ -40303,8 +40210,8 @@ packages: eslint: ^7.32.0 || ^8.2.0 eslint-plugin-import: ^2.25.3 dependencies: - '@typescript-eslint/eslint-plugin': 5.31.0_jby3hmkqbkoqhgw6he4jh4atly - '@typescript-eslint/parser': 5.31.0_uqvic3pjifzbwcy5z3ixu3wwru + '@typescript-eslint/eslint-plugin': 5.31.0_incisn6o7qv6qlsy7g6t6fs75q + '@typescript-eslint/parser': 5.31.0_req3y6wneysbxs6mlxvssjag2i eslint: 8.30.0 eslint-config-airbnb-base: 15.0.0_2lbwmhbr7bncddqbzzpg77o75m eslint-plugin-import: 2.26.0_amwc45d5jbtptctknijdgdc3aq @@ -40328,7 +40235,7 @@ packages: eslint: 8.30.0 dev: true - /eslint-config-react-app/6.0.0_xtpchkkfoguevx4foafstb6lxm: + /eslint-config-react-app/6.0.0_mzxs5hcos5szc7p3jodmndxi3m: resolution: {integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -40352,21 +40259,21 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 4.33.0_2ijpicueuwjei3grogf73iekcm - '@typescript-eslint/parser': 4.33.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/eslint-plugin': 4.33.0_s2qqtxhzmb7vugvfoyripfgp7i + '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe babel-eslint: 10.1.0_eslint@7.32.0 confusing-browser-globals: 1.0.11 eslint: 7.32.0 eslint-plugin-flowtype: 5.10.0_eslint@7.32.0 eslint-plugin-import: 2.26.0_ffi3uiz42rv3jyhs6cr7p7qqry - eslint-plugin-jest: 24.7.0_qjd3c73dziab2hfgpqqx3qco7q + eslint-plugin-jest: 24.7.0_bfrijen5mqdzfbbsgrvmb4p2hy eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0 eslint-plugin-react: 7.29.4_eslint@7.32.0 eslint-plugin-react-hooks: 4.4.0_eslint@7.32.0 - eslint-plugin-testing-library: 3.10.2_cl6qtdo3npn4kngw26aibg642e - typescript: 4.3.5 + eslint-plugin-testing-library: 3.10.2_jofidmxrjzhj7l6vknpw5ecvfe + typescript: 4.9.5 - /eslint-config-react-app/7.0.1_bsfequv57jtpbhfwrzz74ucyvy: + /eslint-config-react-app/7.0.1_ofhp53mvpoqlezrt35lmd4tw5q: resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -40379,19 +40286,19 @@ packages: '@babel/core': 7.18.9 '@babel/eslint-parser': 7.17.0_454u7sltq2wfyzqnoclqps3oeu '@rushstack/eslint-patch': 1.1.1 - '@typescript-eslint/eslint-plugin': 5.31.0_p4tq3bcgvzxb3ap4y5ma5cgtji - '@typescript-eslint/parser': 5.31.0_usgz66ey7ky77b5itadjl3r2ua + '@typescript-eslint/eslint-plugin': 5.31.0_2jy2hcts3vekvegukgu76xplri + '@typescript-eslint/parser': 5.31.0_bqegqxcnsisudkhpmmezgt6uoa babel-preset-react-app: 10.0.1 confusing-browser-globals: 1.0.11 eslint: 8.20.0 eslint-plugin-flowtype: 8.0.3_n3er4akugf4ah7gvjx5iifhea4 eslint-plugin-import: 2.26.0_ficupzxy3q6nk56ibvavehtzue - eslint-plugin-jest: 25.7.0_jv7up43ehfztrwcd3hdyoxgn4u + eslint-plugin-jest: 25.7.0_zosmkvaiialmw3l5fwrk5a7jyi eslint-plugin-jsx-a11y: 6.5.1_eslint@8.20.0 eslint-plugin-react: 7.29.4_eslint@8.20.0 eslint-plugin-react-hooks: 4.4.0_eslint@8.20.0 - eslint-plugin-testing-library: 5.1.0_usgz66ey7ky77b5itadjl3r2ua - typescript: 4.5.4 + eslint-plugin-testing-library: 5.1.0_bqegqxcnsisudkhpmmezgt6uoa + typescript: 4.9.5 transitivePeerDependencies: - '@babel/plugin-syntax-flow' - '@babel/plugin-transform-react-jsx' @@ -40450,7 +40357,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.29.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/parser': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe debug: 3.2.7 eslint-import-resolver-node: 0.3.6 eslint-import-resolver-webpack: 0.13.2_cpbkthufuku27qbvucozysaw6q @@ -40477,7 +40384,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 4.33.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -40502,7 +40409,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.31.0_usgz66ey7ky77b5itadjl3r2ua + '@typescript-eslint/parser': 5.31.0_req3y6wneysbxs6mlxvssjag2i debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -40573,7 +40480,7 @@ packages: lodash: 4.17.21 string-natural-compare: 3.0.1 - /eslint-plugin-functional/3.7.2_cl6qtdo3npn4kngw26aibg642e: + /eslint-plugin-functional/3.7.2_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-BuWPOeE0nuXYlZjObYOHnYf7G3iG+sysxw84I579MsrH+hy5XdXb2sdabmXQ5z7eFGCg2/DWNbZ/yz5GAgtcUg==} engines: {node: '>=10.18.0'} peerDependencies: @@ -40586,13 +40493,13 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.33.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/experimental-utils': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe array.prototype.flatmap: 1.2.5 deepmerge: 4.2.2 escape-string-regexp: 4.0.0 eslint: 7.32.0 object.fromentries: 2.0.5 - typescript: 4.3.5 + typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true @@ -40607,7 +40514,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.31.0_uqvic3pjifzbwcy5z3ixu3wwru + '@typescript-eslint/parser': 5.31.0_req3y6wneysbxs6mlxvssjag2i array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 @@ -40638,7 +40545,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 4.33.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 @@ -40668,7 +40575,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.31.0_usgz66ey7ky77b5itadjl3r2ua + '@typescript-eslint/parser': 5.31.0_bqegqxcnsisudkhpmmezgt6uoa array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 @@ -40698,7 +40605,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.29.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/parser': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 @@ -40719,7 +40626,7 @@ packages: - supports-color dev: true - /eslint-plugin-jest/24.7.0_qjd3c73dziab2hfgpqqx3qco7q: + /eslint-plugin-jest/24.7.0_bfrijen5mqdzfbbsgrvmb4p2hy: resolution: {integrity: sha512-wUxdF2bAZiYSKBclsUMrYHH6WxiBreNjyDxbRv345TIvPeoCEgPNEn3Sa+ZrSqsf1Dl9SqqSREXMHExlMMu1DA==} engines: {node: '>=10'} peerDependencies: @@ -40729,14 +40636,14 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 4.33.0_2ijpicueuwjei3grogf73iekcm - '@typescript-eslint/experimental-utils': 4.33.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/eslint-plugin': 4.33.0_s2qqtxhzmb7vugvfoyripfgp7i + '@typescript-eslint/experimental-utils': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript - /eslint-plugin-jest/25.7.0_jv7up43ehfztrwcd3hdyoxgn4u: + /eslint-plugin-jest/25.7.0_zosmkvaiialmw3l5fwrk5a7jyi: resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: @@ -40749,8 +40656,8 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.31.0_p4tq3bcgvzxb3ap4y5ma5cgtji - '@typescript-eslint/experimental-utils': 5.17.0_usgz66ey7ky77b5itadjl3r2ua + '@typescript-eslint/eslint-plugin': 5.31.0_2jy2hcts3vekvegukgu76xplri + '@typescript-eslint/experimental-utils': 5.17.0_bqegqxcnsisudkhpmmezgt6uoa eslint: 8.20.0 jest: 27.5.1 transitivePeerDependencies: @@ -40964,25 +40871,25 @@ packages: lodash: 4.17.21 dev: true - /eslint-plugin-testing-library/3.10.2_cl6qtdo3npn4kngw26aibg642e: + /eslint-plugin-testing-library/3.10.2_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-WAmOCt7EbF1XM8XfbCKAEzAPnShkNSwcIsAD2jHdsMUT9mZJPjLCG7pMzbcC8kK366NOuGip8HKLDC+Xk4yIdA==} engines: {node: ^10.12.0 || >=12.0.0, npm: '>=6'} peerDependencies: eslint: ^5 || ^6 || ^7 dependencies: - '@typescript-eslint/experimental-utils': 3.10.1_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/experimental-utils': 3.10.1_jofidmxrjzhj7l6vknpw5ecvfe eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript - /eslint-plugin-testing-library/5.1.0_usgz66ey7ky77b5itadjl3r2ua: + /eslint-plugin-testing-library/5.1.0_bqegqxcnsisudkhpmmezgt6uoa: resolution: {integrity: sha512-YSNzasJUbyhOTe14ZPygeOBvcPvcaNkwHwrj4vdf+uirr2D32JTDaKi6CP5Os2aWtOcvt4uBSPXp9h5xGoqvWQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.31.0_usgz66ey7ky77b5itadjl3r2ua + '@typescript-eslint/utils': 5.31.0_bqegqxcnsisudkhpmmezgt6uoa eslint: 8.20.0 transitivePeerDependencies: - supports-color @@ -41275,7 +41182,7 @@ packages: glob-parent: 6.0.2 globals: 13.19.0 grapheme-splitter: 1.0.4 - ignore: 5.2.4 + ignore: 5.2.0 import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 @@ -42620,7 +42527,7 @@ packages: /forever-agent/0.6.1: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - /fork-ts-checker-webpack-plugin/4.1.6_i2w66ro7bogjdeazde7gdghjfu: + /fork-ts-checker-webpack-plugin/4.1.6_73mvphemx5yrjoz5ocxp4i3m2y: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -42641,13 +42548,13 @@ packages: minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.3.5 + typescript: 4.9.5 webpack: 4.44.2 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color - /fork-ts-checker-webpack-plugin/4.1.6_nsxf7ncibhkvddkocuxjl34lwu: + /fork-ts-checker-webpack-plugin/4.1.6_evijigonbo4skk2vlqtwtdqibu: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -42667,14 +42574,14 @@ packages: minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.6.3 + typescript: 4.9.5 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: true - /fork-ts-checker-webpack-plugin/4.1.6_sczivhyoqpjdcntn6aely22ova: + /fork-ts-checker-webpack-plugin/4.1.6_tz7gocjfej627bs3oz6eg63w4q: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -42695,7 +42602,7 @@ packages: minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.5.4 + typescript: 4.9.5 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: @@ -42731,7 +42638,7 @@ packages: webpack: 5.28.0 dev: true - /fork-ts-checker-webpack-plugin/6.5.0_7tontwvv733azcydwccxscwgva: + /fork-ts-checker-webpack-plugin/6.5.0_3qtzvrngdwoakdv3xpiihmf3ty: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -42751,7 +42658,7 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 - eslint: 8.30.0 + eslint: 8.20.0 fs-extra: 9.1.0 glob: 7.2.0 memfs: 3.4.1 @@ -42759,11 +42666,10 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - typescript: 4.7.2 + typescript: 4.9.5 webpack: 5.74.0 - dev: false - /fork-ts-checker-webpack-plugin/6.5.0_ck67u22y425l4d5dvfycpurthq: + /fork-ts-checker-webpack-plugin/6.5.0_7tuhpze3ldk5r64y6dj6kgq4dy: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -42783,7 +42689,6 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 - eslint: 8.20.0 fs-extra: 9.1.0 glob: 7.2.0 memfs: 3.4.1 @@ -42791,10 +42696,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - typescript: 4.5.4 - webpack: 5.74.0 + typescript: 4.9.5 + webpack: 5.70.0 + dev: true - /fork-ts-checker-webpack-plugin/6.5.0_funik2ngdz77jpd27pyphay3ey: + /fork-ts-checker-webpack-plugin/6.5.0_evijigonbo4skk2vlqtwtdqibu: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -42814,7 +42720,6 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 - eslint: 8.30.0 fs-extra: 9.1.0 glob: 7.2.0 memfs: 3.4.1 @@ -42822,11 +42727,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - typescript: 4.7.2 - webpack: 5.72.1 - dev: false + typescript: 4.9.5 + webpack: 4.46.0 + dev: true - /fork-ts-checker-webpack-plugin/6.5.0_nsxf7ncibhkvddkocuxjl34lwu: + /fork-ts-checker-webpack-plugin/6.5.0_jvhfchttbmaci3dfh3cf32c7h4: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -42846,6 +42751,7 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 + eslint: 8.30.0 fs-extra: 9.1.0 glob: 7.2.0 memfs: 3.4.1 @@ -42853,11 +42759,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - typescript: 4.6.3 - webpack: 4.46.0 - dev: true + typescript: 4.9.5 + webpack: 5.74.0 + dev: false - /fork-ts-checker-webpack-plugin/6.5.0_ougmcaqwpyw5y5phguoka2ilpy: + /fork-ts-checker-webpack-plugin/6.5.0_pwicrqlawf7bbx3ycltdoxhori: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -42877,6 +42783,7 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 + eslint: 8.30.0 fs-extra: 9.1.0 glob: 7.2.0 memfs: 3.4.1 @@ -42884,11 +42791,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - typescript: 4.6.3 - webpack: 5.70.0 - dev: true + typescript: 4.9.5 + webpack: 5.72.1 + dev: false - /fork-ts-checker-webpack-plugin/6.5.0_sczivhyoqpjdcntn6aely22ova: + /fork-ts-checker-webpack-plugin/6.5.0_tz7gocjfej627bs3oz6eg63w4q: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -42916,7 +42823,7 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - typescript: 4.5.4 + typescript: 4.9.5 webpack: 4.46.0 /fork-ts-checker-webpack-plugin/7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei: @@ -43641,7 +43548,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 5.1.6 + minimatch: 5.1.0 once: 1.4.0 /glob2base/0.0.12: @@ -46694,7 +46601,7 @@ packages: jest-validate: 27.5.1 micromatch: 4.0.5 pretty-format: 27.5.1 - ts-node: 9.1.1_typescript@4.3.5 + ts-node: 9.1.1_typescript@4.9.5 transitivePeerDependencies: - bufferutil - canvas @@ -46774,7 +46681,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_5jl6je33h7rnb4ljevxjnfb6zy + ts-node: 10.9.1_shievopl57bw2yyflx5da526ye transitivePeerDependencies: - bufferutil - canvas @@ -46856,7 +46763,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 9.1.1_typescript@4.6.2 + ts-node: 9.1.1_typescript@4.9.5 transitivePeerDependencies: - bufferutil - canvas @@ -48601,7 +48508,7 @@ packages: engines: {node: '>=4.0'} dependencies: array-includes: 3.1.6 - object.assign: 4.1.4 + object.assign: 4.1.2 /junk/3.1.0: resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} @@ -48880,15 +48787,15 @@ packages: '@lerna/init': 5.6.2 '@lerna/link': 5.6.2 '@lerna/list': 5.6.2 - '@lerna/publish': 5.6.2_nx@15.6.2+typescript@4.8.4 + '@lerna/publish': 5.6.2_nx@15.6.2+typescript@4.9.5 '@lerna/run': 5.6.2 - '@lerna/version': 5.6.2_nx@15.6.2+typescript@4.8.4 - '@nrwl/devkit': 15.6.2_nx@15.6.2+typescript@4.8.4 + '@lerna/version': 5.6.2_nx@15.6.2+typescript@4.9.5 + '@nrwl/devkit': 15.6.2_nx@15.6.2+typescript@4.9.5 import-local: 3.1.0 inquirer: 8.2.5 npmlog: 6.0.2 nx: 15.6.2 - typescript: 4.8.4 + typescript: 4.9.5 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -50617,13 +50524,13 @@ packages: engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 - dev: true /minimatch/5.1.6: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 + dev: true /minimist-options/3.0.2: resolution: {integrity: sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==} @@ -50810,7 +50717,7 @@ packages: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.7 /mkdirp/1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} @@ -51426,7 +51333,7 @@ packages: tslib: 1.14.1 dev: false - /ng-packagr/15.0.0_hhpt7krjbeyj65xxteu6hj5xaa: + /ng-packagr/15.0.0_mhldeuutqtdyc5bpeklotyy3jm: resolution: {integrity: sha512-moEVwbkZm9XnnIt4k1tNDwORCEW0CtfC243Mv+1FUTTVmEjebSVNDLNyzKa0WjwpOrrUP/n/M7xNnxbWp6zI4w==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} hasBin: true @@ -51439,7 +51346,7 @@ packages: tailwindcss: optional: true dependencies: - '@angular/compiler-cli': 15.0.0_wi64dnikphprnhepyj5q2xqyru + '@angular/compiler-cli': 15.1.2_hkrohac3r5tzyiymw7onjymdfe '@rollup/plugin-json': 5.0.1_rollup@3.3.0 '@rollup/plugin-node-resolve': 15.0.1_rollup@3.3.0 ajv: 8.11.0 @@ -51464,7 +51371,7 @@ packages: rxjs: 7.5.6 sass: 1.56.2 tslib: 2.4.0 - typescript: 4.8.4 + typescript: 4.9.5 optionalDependencies: esbuild: 0.15.14 transitivePeerDependencies: @@ -51626,12 +51533,12 @@ packages: /node-gyp-build/4.3.0: resolution: {integrity: sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==} hasBin: true + dev: true + optional: true /node-gyp-build/4.6.0: resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} hasBin: true - dev: false - optional: true /node-gyp/9.0.0: resolution: {integrity: sha512-Ma6p4s+XCTPxCuAMrOA/IJRmVy16R8Sdhtwl4PrCr7IBlj4cPawF0vg/l7nOT1jPbuNS7lIRJpBSvVsXwEZuzw==} @@ -53569,36 +53476,19 @@ packages: engines: {node: '>=4'} dev: true - /pnp-webpack-plugin/1.6.4_typescript@4.3.5: + /pnp-webpack-plugin/1.6.4_typescript@4.9.5: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.3.5 + ts-pnp: 1.2.0_typescript@4.9.5 transitivePeerDependencies: - typescript - /pnp-webpack-plugin/1.6.4_typescript@4.5.4: - resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} - engines: {node: '>=6'} - dependencies: - ts-pnp: 1.2.0_typescript@4.5.4 - transitivePeerDependencies: - - typescript - - /pnp-webpack-plugin/1.6.4_typescript@4.6.3: - resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} - engines: {node: '>=6'} - dependencies: - ts-pnp: 1.2.0_typescript@4.6.3 - transitivePeerDependencies: - - typescript - dev: true - - /pnp-webpack-plugin/1.7.0_typescript@4.5.4: + /pnp-webpack-plugin/1.7.0_typescript@4.9.5: resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.3.5 + ts-pnp: 1.2.0_typescript@4.9.5 transitivePeerDependencies: - typescript dev: true @@ -55674,16 +55564,6 @@ packages: bluebird: optional: true - /promise-inflight/1.0.1_bluebird@3.7.2: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - dependencies: - bluebird: 3.7.2 - /promise-limit/2.7.0: resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==} dev: false @@ -56666,7 +56546,7 @@ packages: peerDependencies: react-scripts: '>=2.1.3' dependencies: - react-scripts: 5.0.1_k6kqfqo72tcqgn4fymyddvykia + react-scripts: 5.0.1_pbnbv4grzz5lfjq3whhcbdqw4i semver: 5.7.1 dev: false @@ -56735,7 +56615,7 @@ packages: react-dom: 17.0.2_react@17.0.2 dev: false - /react-dev-utils/11.0.4_i2w66ro7bogjdeazde7gdghjfu: + /react-dev-utils/11.0.4_73mvphemx5yrjoz5ocxp4i3m2y: resolution: {integrity: sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==} engines: {node: '>=10'} dependencies: @@ -56748,7 +56628,7 @@ packages: escape-string-regexp: 2.0.0 filesize: 6.1.0 find-up: 4.1.0 - fork-ts-checker-webpack-plugin: 4.1.6_i2w66ro7bogjdeazde7gdghjfu + fork-ts-checker-webpack-plugin: 4.1.6_73mvphemx5yrjoz5ocxp4i3m2y global-modules: 2.0.0 globby: 11.0.1 gzip-size: 5.1.1 @@ -56770,7 +56650,7 @@ packages: - vue-template-compiler - webpack - /react-dev-utils/12.0.1_7tontwvv733azcydwccxscwgva: + /react-dev-utils/12.0.1_3qtzvrngdwoakdv3xpiihmf3ty: resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} dependencies: @@ -56783,7 +56663,7 @@ packages: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_7tontwvv733azcydwccxscwgva + fork-ts-checker-webpack-plugin: 6.5.0_3qtzvrngdwoakdv3xpiihmf3ty global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -56804,9 +56684,8 @@ packages: - typescript - vue-template-compiler - webpack - dev: false - /react-dev-utils/12.0.1_ck67u22y425l4d5dvfycpurthq: + /react-dev-utils/12.0.1_jvhfchttbmaci3dfh3cf32c7h4: resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} dependencies: @@ -56819,7 +56698,7 @@ packages: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_ck67u22y425l4d5dvfycpurthq + fork-ts-checker-webpack-plugin: 6.5.0_jvhfchttbmaci3dfh3cf32c7h4 global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -56840,8 +56719,9 @@ packages: - typescript - vue-template-compiler - webpack + dev: false - /react-dev-utils/12.0.1_funik2ngdz77jpd27pyphay3ey: + /react-dev-utils/12.0.1_pwicrqlawf7bbx3ycltdoxhori: resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} dependencies: @@ -56854,7 +56734,7 @@ packages: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_funik2ngdz77jpd27pyphay3ey + fork-ts-checker-webpack-plugin: 6.5.0_pwicrqlawf7bbx3ycltdoxhori global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -56877,20 +56757,12 @@ packages: - webpack dev: false - /react-docgen-typescript/2.2.2_typescript@4.5.4: + /react-docgen-typescript/2.2.2_typescript@4.9.5: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' dependencies: - typescript: 4.5.4 - - /react-docgen-typescript/2.2.2_typescript@4.6.3: - resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} - peerDependencies: - typescript: '>= 4.3.x' - dependencies: - typescript: 4.6.3 - dev: true + typescript: 4.9.5 /react-docgen/5.4.0: resolution: {integrity: sha512-JBjVQ9cahmNlfjMGxWUxJg919xBBKAoy3hgDgKERbR+BcF4ANpDuzWAScC7j27hZfd8sJNmMPOLWo9+vB/XJEQ==} @@ -57263,7 +57135,7 @@ packages: history: 5.3.0 react: 17.0.2 - /react-scripts/4.0.3_x42bqxgwliwa4f7rcvhhje7sti: + /react-scripts/4.0.3_oatgdhaahtizs2uezdzbohxvne: resolution: {integrity: sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==} engines: {node: ^10.12.0 || >=12.0.0} hasBin: true @@ -57277,8 +57149,8 @@ packages: '@babel/core': 7.12.3 '@pmmmwh/react-refresh-webpack-plugin': 0.4.3_t4ezke4netssl24gycl5qjajya '@svgr/webpack': 5.5.0 - '@typescript-eslint/eslint-plugin': 4.33.0_2ijpicueuwjei3grogf73iekcm - '@typescript-eslint/parser': 4.33.0_cl6qtdo3npn4kngw26aibg642e + '@typescript-eslint/eslint-plugin': 4.33.0_s2qqtxhzmb7vugvfoyripfgp7i + '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe babel-eslint: 10.1.0_eslint@7.32.0 babel-jest: 26.6.3_@babel+core@7.12.3 babel-loader: 8.1.0_ijzbfparldiylzlxam7rtsqhk4 @@ -57291,14 +57163,14 @@ packages: dotenv: 8.2.0 dotenv-expand: 5.1.0 eslint: 7.32.0 - eslint-config-react-app: 6.0.0_xtpchkkfoguevx4foafstb6lxm + eslint-config-react-app: 6.0.0_mzxs5hcos5szc7p3jodmndxi3m eslint-plugin-flowtype: 5.10.0_eslint@7.32.0 eslint-plugin-import: 2.26.0_ffi3uiz42rv3jyhs6cr7p7qqry - eslint-plugin-jest: 24.7.0_qjd3c73dziab2hfgpqqx3qco7q + eslint-plugin-jest: 24.7.0_bfrijen5mqdzfbbsgrvmb4p2hy eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0 eslint-plugin-react: 7.29.4_eslint@7.32.0 eslint-plugin-react-hooks: 4.4.0_eslint@7.32.0 - eslint-plugin-testing-library: 3.10.2_cl6qtdo3npn4kngw26aibg642e + eslint-plugin-testing-library: 3.10.2_jofidmxrjzhj7l6vknpw5ecvfe eslint-webpack-plugin: 2.6.0_a7xmpkungfd35is2c4kqy55h3i file-loader: 6.1.1_webpack@4.44.2 fs-extra: 9.1.0 @@ -57310,7 +57182,7 @@ packages: jest-watch-typeahead: 0.6.1_jest@26.6.0 mini-css-extract-plugin: 0.11.3_webpack@4.44.2 optimize-css-assets-webpack-plugin: 5.0.4_webpack@4.44.2 - pnp-webpack-plugin: 1.6.4_typescript@4.3.5 + pnp-webpack-plugin: 1.6.4_typescript@4.9.5 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 3.0.0 postcss-normalize: 8.0.1 @@ -57319,7 +57191,7 @@ packages: prompts: 2.4.0 react: 17.0.2 react-app-polyfill: 2.0.0 - react-dev-utils: 11.0.4_i2w66ro7bogjdeazde7gdghjfu + react-dev-utils: 11.0.4_73mvphemx5yrjoz5ocxp4i3m2y react-refresh: 0.8.3 resolve: 1.18.1 resolve-url-loader: 3.1.4 @@ -57327,8 +57199,8 @@ packages: semver: 7.3.2 style-loader: 1.3.0_webpack@4.44.2 terser-webpack-plugin: 4.2.3_webpack@4.44.2 - ts-pnp: 1.2.0_typescript@4.3.5 - typescript: 4.3.5 + ts-pnp: 1.2.0_typescript@4.9.5 + typescript: 4.9.5 url-loader: 4.1.1_7hroj2mdu577asu2zyhaasbvae webpack: 4.44.2 webpack-dev-server: 3.11.1_webpack@4.44.2 @@ -57357,7 +57229,7 @@ packages: - webpack-hot-middleware - webpack-plugin-serve - /react-scripts/5.0.1_k6kqfqo72tcqgn4fymyddvykia: + /react-scripts/5.0.1_pbnbv4grzz5lfjq3whhcbdqw4i: resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} engines: {node: '>=14.0.0'} hasBin: true @@ -57384,7 +57256,7 @@ packages: dotenv: 10.0.0 dotenv-expand: 5.1.0 eslint: 8.20.0 - eslint-config-react-app: 7.0.1_bsfequv57jtpbhfwrzz74ucyvy + eslint-config-react-app: 7.0.1_ofhp53mvpoqlezrt35lmd4tw5q eslint-webpack-plugin: 3.1.1_6lrbhmgrkfstab745tfy2eb3xq file-loader: 6.2.0_webpack@5.74.0 fs-extra: 10.1.0 @@ -57402,7 +57274,7 @@ packages: prompts: 2.4.2 react: 17.0.2 react-app-polyfill: 3.0.0 - react-dev-utils: 12.0.1_ck67u22y425l4d5dvfycpurthq + react-dev-utils: 12.0.1_3qtzvrngdwoakdv3xpiihmf3ty react-refresh: 0.11.0 resolve: 1.22.1 resolve-url-loader: 4.0.0 @@ -57412,7 +57284,7 @@ packages: style-loader: 3.3.1_webpack@5.74.0 tailwindcss: 3.0.23_autoprefixer@9.8.8 terser-webpack-plugin: 5.3.3_webpack@5.74.0 - typescript: 4.5.4 + typescript: 4.9.5 webpack: 5.74.0 webpack-dev-server: 4.11.1_webpack@5.74.0 webpack-manifest-plugin: 4.1.1_webpack@5.74.0 @@ -58569,7 +58441,7 @@ packages: jest-worker: 26.6.2 rollup: 2.77.2 serialize-javascript: 4.0.0 - terser: 5.15.1 + terser: 5.12.1 /rollup-plugin-terser/7.0.2_rollup@3.7.3: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} @@ -58583,7 +58455,7 @@ packages: terser: 5.12.1 dev: true - /rollup-plugin-typescript2/0.18.1_a3v6d2vuzxz7b3gv6yihseevea: + /rollup-plugin-typescript2/0.18.1_2o3onpjjdk2ee3e6en2nuj4moa: resolution: {integrity: sha512-aR2m5NCCAUV/KpcKgCWX6Giy8rTko9z92b5t0NX9eZyjOftCvcdDFa1C9Ze/9yp590hnRymr5hG0O9SAXi1oUg==} peerDependencies: rollup: '>=0.50.0' @@ -58594,7 +58466,7 @@ packages: rollup: 0.68.2 rollup-pluginutils: 2.3.3 tslib: 1.9.3 - typescript: 4.3.5 + typescript: 4.9.5 dev: true /rollup-pluginutils/2.3.3: @@ -61992,7 +61864,7 @@ packages: dependencies: tslib: 1.14.1 - /ts-jest/27.0.5_5bp5w3iyctn6ezpueukxey34h4: + /ts-jest/27.0.5_2hxkpkn5pxklfqzhyey6ik757y: resolution: {integrity: sha512-lIJApzfTaSSbtlksfFNHkWOzLJuuSm4faFAfo5kvzOiRAuoN4/eKxVJ2zEAho8aecE04qX6K1pAzfH5QHL1/8w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -62020,149 +61892,11 @@ packages: lodash: 4.17.21 make-error: 1.3.6 semver: 7.3.7 - typescript: 4.3.5 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.4_2zv7k5h6rtkokmofpwrobdeggm: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@types/jest': 27.4.1 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.8 - typescript: 4.3.5 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.4_6wduk63hndnifocwptujn7mfjm: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.20.5 - '@types/jest': 27.4.0 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@10.9.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.8 - typescript: 4.1.3 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.4_ahwx3k4a72g2lokpshqlcxbpku: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@types/jest': 27.4.0 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.8 - typescript: 4.6.3 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.4_dvau5igygwpwxmkc64z6cgm2qe: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.20.5 - '@types/jest': 27.4.1 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.8 - typescript: 4.8.4 + typescript: 4.9.5 yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.4_e7edjj3qv32mdmmvbihk7iemnq: + /ts-jest/27.1.4_arli55mex5meswznkaa46qexm4: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -62184,73 +61918,6 @@ packages: optional: true dependencies: '@babel/core': 7.20.5 - '@types/jest': 27.4.0 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.8 - typescript: 4.6.2 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.4_j7nn2i564qi7dqqkhb4klwcx54: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.8 - typescript: 4.3.5 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.4_makj2rl6gt73u7koqro542qsmm: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: '@types/jest': 27.4.1 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -62260,11 +61927,11 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 - typescript: 4.6.2 + typescript: 4.9.5 yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.4_mjytj3422l35p4lu22eg53ghni: + /ts-jest/27.1.4_cnngzrja2umb46xxazlucyx2qu: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -62285,112 +61952,6 @@ packages: esbuild: optional: true dependencies: - '@types/jest': 27.4.0 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.4.7_ts-node@9.1.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.8 - typescript: 4.6.2 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.4_n57wun5nltbvzis3zgtotiy72e: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.20.5 - '@types/jest': 27.4.0 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@7.0.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.8 - typescript: 4.3.5 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.4_pyeptv4an376ndai4k5axbgzye: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.20.5 - '@types/jest': 27.4.1 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 - jest-util: 27.5.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.8 - typescript: 4.6.2 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.4_t4ldjoaolo4tjxxklyv3omdwf4: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.20.5 - '@types/jest': 27.4.1 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 27.5.1_ts-node@9.1.1 @@ -62399,11 +61960,11 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 - typescript: 4.3.5 + typescript: 4.9.5 yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.4_umhwpvuqw4p7q7gqrua2jbjayq: + /ts-jest/27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -62428,17 +61989,17 @@ packages: '@types/jest': 27.4.0 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 - typescript: 4.6.2 + typescript: 4.9.5 yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.4_vqlr6pm7mnv5rngd46vdqt4eby: + /ts-jest/27.1.4_mgebd74qm74dqwjbo2fclp5ei4: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -62468,11 +62029,80 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 - typescript: 4.6.2 + typescript: 4.9.5 yargs-parser: 20.2.9 dev: true - /ts-jest/29.0.3_5j3kjjyuuqltckznwqj6jmtvtm: + /ts-jest/27.1.4_nbjllzzdoewiqiaqtdm64bcnbu: + resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: '*' + jest: ^27.0.0 + typescript: '>=3.8 <5.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/jest': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@types/jest': 27.4.1 + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 27.5.1_ts-node@9.1.1 + jest-util: 27.5.1 + json5: 2.2.1 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.8 + typescript: 4.9.5 + yargs-parser: 20.2.9 + dev: true + + /ts-jest/27.1.4_oh6gyf2pdnadazgaopxviptjum: + resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: '*' + jest: ^27.0.0 + typescript: '>=3.8 <5.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/jest': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@babel/core': 7.20.5 + '@types/jest': 27.4.0 + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 27.4.7_ts-node@9.1.1 + jest-util: 27.5.1 + json5: 2.2.1 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.8 + typescript: 4.9.5 + yargs-parser: 20.2.9 + dev: true + + /ts-jest/29.0.3_frfgizeupuj2jmtaxidt2dfubm: resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -62502,11 +62132,11 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 - typescript: 4.1.3 + typescript: 4.9.5 yargs-parser: 21.1.1 dev: true - /ts-jest/29.0.3_apl2kovhlf4augjpviu3seobxq: + /ts-jest/29.0.3_hs4up5u4ilfjpkjmianwa2scsy: resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -62536,12 +62166,12 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 - typescript: 4.6.3 + typescript: 4.9.5 yargs-parser: 21.1.1 dev: true - /ts-loader/8.3.0_vhanpkig4omek67hjhmtrlsh2y: - resolution: {integrity: sha512-MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag==} + /ts-loader/8.4.0_hhrrucqyg4eysmfpujvov2ym5u: + resolution: {integrity: sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==} engines: {node: '>=10.0.0'} peerDependencies: typescript: '*' @@ -62552,11 +62182,11 @@ packages: loader-utils: 2.0.2 micromatch: 4.0.5 semver: 7.3.8 - typescript: 4.3.5 + typescript: 4.9.5 webpack: 5.75.0 dev: true - /ts-loader/9.2.8_vhanpkig4omek67hjhmtrlsh2y: + /ts-loader/9.2.8_hhrrucqyg4eysmfpujvov2ym5u: resolution: {integrity: sha512-gxSak7IHUuRtwKf3FIPSW1VpZcqF9+MBrHOvBp9cjHh+525SjtCIJKVGjRKIAfxBwDGDGCFF00rTfzB1quxdSw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -62564,10 +62194,10 @@ packages: webpack: ^5.0.0 dependencies: chalk: 4.1.2 - enhanced-resolve: 5.9.3 + enhanced-resolve: 5.10.0 micromatch: 4.0.5 - semver: 7.3.7 - typescript: 4.3.5 + semver: 7.3.8 + typescript: 4.9.5 webpack: 5.75.0 dev: true @@ -62580,38 +62210,7 @@ packages: dev: false optional: true - /ts-node/10.7.0_5rym3avuyj3s6vack3xet4fl34: - resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.7.0 - '@tsconfig/node10': 1.0.8 - '@tsconfig/node12': 1.0.9 - '@tsconfig/node14': 1.0.1 - '@tsconfig/node16': 1.0.2 - '@types/node': 18.11.13 - acorn: 8.7.1 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.6.3 - v8-compile-cache-lib: 3.0.0 - yn: 3.1.1 - dev: false - - /ts-node/10.7.0_u3pcqfwtcdtahqtopunwgcaiyq: + /ts-node/10.7.0_pcraivvvcp3hdgpdkddzbjo4ki: resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} hasBin: true peerDependencies: @@ -62637,12 +62236,12 @@ packages: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.3.5 + typescript: 4.9.5 v8-compile-cache-lib: 3.0.0 yn: 3.1.1 dev: true - /ts-node/10.9.1_5jl6je33h7rnb4ljevxjnfb6zy: + /ts-node/10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -62661,19 +62260,18 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 14.18.12 + '@types/node': 18.11.13 acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.1.3 + typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true - /ts-node/10.9.1_zwbbn7v4nhzhfdmlr6kgywzsoe: + /ts-node/10.9.1_shievopl57bw2yyflx5da526ye: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -62692,14 +62290,14 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 18.11.13 + '@types/node': 14.18.12 acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.8.4 + typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true @@ -62713,45 +62311,13 @@ packages: buffer-from: 1.1.2 diff: 3.5.0 make-error: 1.3.6 - minimist: 1.2.6 + minimist: 1.2.7 mkdirp: 0.5.6 source-map-support: 0.5.21 yn: 2.0.0 dev: true - /ts-node/9.1.1_typescript@4.3.5: - resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} - engines: {node: '>=10.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' - dependencies: - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - source-map-support: 0.5.21 - typescript: 4.3.5 - yn: 3.1.1 - dev: true - - /ts-node/9.1.1_typescript@4.6.2: - resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} - engines: {node: '>=10.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' - dependencies: - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - source-map-support: 0.5.21 - typescript: 4.6.2 - yn: 3.1.1 - dev: true - - /ts-node/9.1.1_typescript@4.6.3: + /ts-node/9.1.1_typescript@4.9.5: resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} hasBin: true @@ -62763,38 +62329,11 @@ packages: diff: 4.0.2 make-error: 1.3.6 source-map-support: 0.5.21 - typescript: 4.6.3 + typescript: 4.9.5 yn: 3.1.1 dev: true - /ts-node/9.1.1_typescript@4.8.4: - resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} - engines: {node: '>=10.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' - dependencies: - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - source-map-support: 0.5.21 - typescript: 4.8.4 - yn: 3.1.1 - dev: true - - /ts-pnp/1.2.0_typescript@4.3.5: - resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} - engines: {node: '>=6'} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - typescript: 4.3.5 - - /ts-pnp/1.2.0_typescript@4.5.4: + /ts-pnp/1.2.0_typescript@4.9.5: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -62803,19 +62342,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.5.4 - - /ts-pnp/1.2.0_typescript@4.6.3: - resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} - engines: {node: '>=6'} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - typescript: 4.6.3 - dev: true + typescript: 4.9.5 /tsconfig-paths-webpack-plugin/3.5.1: resolution: {integrity: sha512-n5CMlUUj+N5pjBhBACLq4jdr9cPTitySCjIosoQm0zwK99gmrcTGAfY9CwxRFT9+9OleNWXPRUcxsKP4AYExxQ==} @@ -62896,43 +62423,14 @@ packages: /tslib/2.4.1: resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} - /tsutils/3.21.0_typescript@4.3.5: + /tsutils/3.21.0_typescript@4.9.5: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.3.5 - - /tsutils/3.21.0_typescript@4.5.4: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - dependencies: - tslib: 1.14.1 - typescript: 4.5.4 - - /tsutils/3.21.0_typescript@4.7.2: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - dependencies: - tslib: 1.14.1 - typescript: 4.7.2 - dev: true - - /tsutils/3.21.0_typescript@4.7.4: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - dependencies: - tslib: 1.14.1 - typescript: 4.7.4 - dev: true + typescript: 4.9.5 /tty-browserify/0.0.0: resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} @@ -63069,7 +62567,7 @@ packages: /typedarray/0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - /typedoc/0.23.24_typescript@4.1.3: + /typedoc/0.23.24_typescript@4.9.5: resolution: {integrity: sha512-bfmy8lNQh+WrPYcJbtjQ6JEEsVl/ce1ZIXyXhyW+a1vFrjO39t6J8sL/d6FfAGrJTc7McCXgk9AanYBSNvLdIA==} engines: {node: '>= 14.14'} hasBin: true @@ -63080,107 +62578,19 @@ packages: marked: 4.2.12 minimatch: 5.1.6 shiki: 0.12.1 - typescript: 4.1.3 - dev: true - - /typedoc/0.23.24_typescript@4.3.5: - resolution: {integrity: sha512-bfmy8lNQh+WrPYcJbtjQ6JEEsVl/ce1ZIXyXhyW+a1vFrjO39t6J8sL/d6FfAGrJTc7McCXgk9AanYBSNvLdIA==} - engines: {node: '>= 14.14'} - hasBin: true - peerDependencies: - typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x - dependencies: - lunr: 2.3.9 - marked: 4.2.12 - minimatch: 5.1.6 - shiki: 0.12.1 - typescript: 4.3.5 - dev: true - - /typedoc/0.23.24_typescript@4.6.2: - resolution: {integrity: sha512-bfmy8lNQh+WrPYcJbtjQ6JEEsVl/ce1ZIXyXhyW+a1vFrjO39t6J8sL/d6FfAGrJTc7McCXgk9AanYBSNvLdIA==} - engines: {node: '>= 14.14'} - hasBin: true - peerDependencies: - typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x - dependencies: - lunr: 2.3.9 - marked: 4.2.12 - minimatch: 5.1.6 - shiki: 0.12.1 - typescript: 4.6.2 - dev: true - - /typedoc/0.23.24_typescript@4.6.3: - resolution: {integrity: sha512-bfmy8lNQh+WrPYcJbtjQ6JEEsVl/ce1ZIXyXhyW+a1vFrjO39t6J8sL/d6FfAGrJTc7McCXgk9AanYBSNvLdIA==} - engines: {node: '>= 14.14'} - hasBin: true - peerDependencies: - typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x - dependencies: - lunr: 2.3.9 - marked: 4.2.12 - minimatch: 5.1.6 - shiki: 0.12.1 - typescript: 4.6.3 - dev: true - - /typedoc/0.23.24_typescript@4.8.4: - resolution: {integrity: sha512-bfmy8lNQh+WrPYcJbtjQ6JEEsVl/ce1ZIXyXhyW+a1vFrjO39t6J8sL/d6FfAGrJTc7McCXgk9AanYBSNvLdIA==} - engines: {node: '>= 14.14'} - hasBin: true - peerDependencies: - typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x - dependencies: - lunr: 2.3.9 - marked: 4.2.12 - minimatch: 5.1.6 - shiki: 0.12.1 - typescript: 4.8.4 + typescript: 4.9.5 dev: true /typescript-memoize/1.1.0: resolution: {integrity: sha512-LQPKVXK8QrBBkL/zclE6YgSWn0I8ew5m0Lf+XL00IwMhlotqRLlzHV+BRrljVQIc+NohUAuQP7mg4HQwrx5Xbg==} dev: true - /typescript/4.1.3: - resolution: {integrity: sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - /typescript/4.2.3: resolution: {integrity: sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /typescript/4.3.5: - resolution: {integrity: sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==} - engines: {node: '>=4.2.0'} - hasBin: true - - /typescript/4.5.4: - resolution: {integrity: sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==} - engines: {node: '>=4.2.0'} - hasBin: true - - /typescript/4.6.2: - resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - - /typescript/4.6.3: - resolution: {integrity: sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==} - engines: {node: '>=4.2.0'} - hasBin: true - - /typescript/4.7.2: - resolution: {integrity: sha512-Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A==} - engines: {node: '>=4.2.0'} - hasBin: true - /typescript/4.7.4: resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} engines: {node: '>=4.2.0'} @@ -63193,6 +62603,11 @@ packages: hasBin: true dev: true + /typescript/4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true + /typical/4.0.0: resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} engines: {node: '>=8'} @@ -63897,10 +63312,10 @@ packages: /v8-compile-cache-lib/3.0.0: resolution: {integrity: sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA==} + dev: true /v8-compile-cache-lib/3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: true /v8-compile-cache/2.3.0: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} @@ -64144,7 +63559,7 @@ packages: he: 1.2.0 dev: true - /vue-tsc/1.0.14_typescript@4.7.4: + /vue-tsc/1.0.14_typescript@4.9.5: resolution: {integrity: sha512-HeqtyxMrSRUCnU5nxB0lQc3o7zirMppZ/V6HLL3l4FsObGepH3A3beNmNehpLQs0Gt7DkSWVi3CpVCFgrf+/sQ==} hasBin: true peerDependencies: @@ -64152,7 +63567,7 @@ packages: dependencies: '@volar/vue-language-core': 1.0.14 '@volar/vue-typescript': 1.0.14 - typescript: 4.7.4 + typescript: 4.9.5 dev: true /vue-tsc/1.0.9_typescript@4.7.4: @@ -65401,7 +64816,7 @@ packages: dev: false /wordwrap/1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + resolution: {integrity: sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=} /wordwrapjs/4.0.1: resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} @@ -66142,7 +65557,7 @@ packages: fd-slicer: 1.1.0 /yn/2.0.0: - resolution: {integrity: sha1-5a2ryKz0CPY4X8dklWhMiOavaJo=} + resolution: {integrity: sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ==} engines: {node: '>=4'} dev: true diff --git a/providers/apns/package.json b/providers/apns/package.json index 6828da72e8d..e30482864ac 100644 --- a/providers/apns/package.json +++ b/providers/apns/package.json @@ -49,7 +49,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/burst-sms/package.json b/providers/burst-sms/package.json index 3d773c6a9fa..427a2e21a44 100644 --- a/providers/burst-sms/package.json +++ b/providers/burst-sms/package.json @@ -52,7 +52,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2", + "typescript": "4.9.5", "uuid": "^9.0.0" }, "files": [ diff --git a/providers/discord/package.json b/providers/discord/package.json index 2133a68c82e..25c467658d1 100644 --- a/providers/discord/package.json +++ b/providers/discord/package.json @@ -51,7 +51,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/emailjs/package.json b/providers/emailjs/package.json index e5f73313202..00534978cd4 100644 --- a/providers/emailjs/package.json +++ b/providers/emailjs/package.json @@ -64,7 +64,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/expo/package.json b/providers/expo/package.json index 97bb5783c1d..414e86bea84 100644 --- a/providers/expo/package.json +++ b/providers/expo/package.json @@ -51,7 +51,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/fcm/package.json b/providers/fcm/package.json index 564990c5d02..fe47c47c4d4 100644 --- a/providers/fcm/package.json +++ b/providers/fcm/package.json @@ -54,7 +54,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/firetext/package.json b/providers/firetext/package.json index 2d24b81c501..14d37942193 100644 --- a/providers/firetext/package.json +++ b/providers/firetext/package.json @@ -54,7 +54,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/gupshup/package.json b/providers/gupshup/package.json index 7fb791d0d8c..30a39759336 100644 --- a/providers/gupshup/package.json +++ b/providers/gupshup/package.json @@ -52,7 +52,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/infobip/package.json b/providers/infobip/package.json index 7e78795c91c..d95ece2b9ea 100644 --- a/providers/infobip/package.json +++ b/providers/infobip/package.json @@ -51,7 +51,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/mailersend/package.json b/providers/mailersend/package.json index 1be0a7a5b50..4020f07aa2e 100644 --- a/providers/mailersend/package.json +++ b/providers/mailersend/package.json @@ -51,7 +51,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/mailgun/package.json b/providers/mailgun/package.json index bbf1ffbb543..9545a40682a 100644 --- a/providers/mailgun/package.json +++ b/providers/mailgun/package.json @@ -65,7 +65,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/mailjet/package.json b/providers/mailjet/package.json index 61def8e6c57..a7bbc635a9a 100644 --- a/providers/mailjet/package.json +++ b/providers/mailjet/package.json @@ -52,7 +52,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/mandrill/package.json b/providers/mandrill/package.json index dd67b5d220d..733fad6c574 100644 --- a/providers/mandrill/package.json +++ b/providers/mandrill/package.json @@ -61,7 +61,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/ms-teams/package.json b/providers/ms-teams/package.json index f205db1c60c..97fb817c596 100644 --- a/providers/ms-teams/package.json +++ b/providers/ms-teams/package.json @@ -51,7 +51,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2", + "typescript": "4.9.5", "uuid": "^9.0.0" }, "files": [ diff --git a/providers/netcore/package.json b/providers/netcore/package.json index 4fab8df4eb5..e92e9e9aabd 100644 --- a/providers/netcore/package.json +++ b/providers/netcore/package.json @@ -64,7 +64,7 @@ "ts-jest": "^27.0.7", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/nexmo/package.json b/providers/nexmo/package.json index cb42628cb98..ee190491413 100644 --- a/providers/nexmo/package.json +++ b/providers/nexmo/package.json @@ -51,7 +51,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/nodemailer/package.json b/providers/nodemailer/package.json index 321326d6e11..5a78873585c 100644 --- a/providers/nodemailer/package.json +++ b/providers/nodemailer/package.json @@ -65,7 +65,7 @@ "ts-jest": "^27.0.7", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/outlook365/package.json b/providers/outlook365/package.json index 4ddb7f6a230..c644c9b0f11 100644 --- a/providers/outlook365/package.json +++ b/providers/outlook365/package.json @@ -51,7 +51,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/plivo/package.json b/providers/plivo/package.json index 9a67b30ffcd..0bf741e0437 100644 --- a/providers/plivo/package.json +++ b/providers/plivo/package.json @@ -63,7 +63,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/postmark/package.json b/providers/postmark/package.json index aab11f25f6f..8264c2f921b 100644 --- a/providers/postmark/package.json +++ b/providers/postmark/package.json @@ -64,7 +64,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/sendgrid/package.json b/providers/sendgrid/package.json index d55e43802ae..3dea5d2a17a 100644 --- a/providers/sendgrid/package.json +++ b/providers/sendgrid/package.json @@ -64,7 +64,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/sendinblue/package.json b/providers/sendinblue/package.json index 0580b7480ea..8769e42e512 100644 --- a/providers/sendinblue/package.json +++ b/providers/sendinblue/package.json @@ -52,7 +52,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/slack/package.json b/providers/slack/package.json index a38b361e083..8390b6485c8 100644 --- a/providers/slack/package.json +++ b/providers/slack/package.json @@ -52,7 +52,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.3.5" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/sms77/package.json b/providers/sms77/package.json index 36b7843c6a4..546a5794db0 100644 --- a/providers/sms77/package.json +++ b/providers/sms77/package.json @@ -53,7 +53,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/sns/package.json b/providers/sns/package.json index d8a129841bc..fac486f3f90 100644 --- a/providers/sns/package.json +++ b/providers/sns/package.json @@ -51,7 +51,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/sparkpost/package.json b/providers/sparkpost/package.json index c66c2e64105..f3bb9d46d0b 100644 --- a/providers/sparkpost/package.json +++ b/providers/sparkpost/package.json @@ -52,7 +52,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/telnyx/package.json b/providers/telnyx/package.json index 53bf466af10..fbb2143eaba 100644 --- a/providers/telnyx/package.json +++ b/providers/telnyx/package.json @@ -51,7 +51,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/termii/package.json b/providers/termii/package.json index 039773dfb2e..c72e9008f30 100644 --- a/providers/termii/package.json +++ b/providers/termii/package.json @@ -52,7 +52,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", diff --git a/providers/twilio/package.json b/providers/twilio/package.json index 447ec821438..4baee131aed 100644 --- a/providers/twilio/package.json +++ b/providers/twilio/package.json @@ -63,7 +63,7 @@ "ts-jest": "^27.0.5", "ts-node": "^9.0.0", "typedoc": "^0.23.0", - "typescript": "4.6.2" + "typescript": "4.9.5" }, "files": [ "build/main", From 346fb3f8a21d5d70ce7df954b551b91ea62b9439 Mon Sep 17 00:00:00 2001 From: p-fernandez Date: Thu, 2 Feb 2023 15:59:01 +0000 Subject: [PATCH 06/40] feat(infra): upgrade dependencies according typescript upgrade --- apps/web/src/App.tsx | 2 +- .../notification-center-angular/angular.json | 3 + .../notification-center-angular/package.json | 14 +- pnpm-lock.yaml | 269 ++++++------------ 4 files changed, 103 insertions(+), 185 deletions(-) diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx index 262c2f6983a..7059dadd39c 100644 --- a/apps/web/src/App.tsx +++ b/apps/web/src/App.tsx @@ -58,7 +58,7 @@ if (SENTRY_DSN) { beforeSend(event: Sentry.Event) { const logRocketSession = LogRocket.sessionURL; - if (logRocketSession !== null || event !== '' || event !== undefined) { + if (logRocketSession !== null || (event as string) !== '' || event !== undefined) { /* * Must ignore the next line as this variable could be null but * can not be null because of the check in the if statement above. diff --git a/packages/notification-center-angular/angular.json b/packages/notification-center-angular/angular.json index be942a24ec8..3bd0836892c 100644 --- a/packages/notification-center-angular/angular.json +++ b/packages/notification-center-angular/angular.json @@ -33,5 +33,8 @@ } } } + }, + "cli": { + "analytics": false } } diff --git a/packages/notification-center-angular/package.json b/packages/notification-center-angular/package.json index 988b522f508..25b179533e1 100644 --- a/packages/notification-center-angular/package.json +++ b/packages/notification-center-angular/package.json @@ -31,11 +31,11 @@ } }, "dependencies": { - "@angular/common": "^15.0.0", - "@angular/compiler": "^15.0.0", - "@angular/core": "^15.0.0", - "@angular/platform-browser": "^15.0.0", - "@angular/platform-browser-dynamic": "^15.0.0", + "@angular/common": "~15.0.0", + "@angular/compiler": "~15.0.0", + "@angular/core": "~15.0.0", + "@angular/platform-browser": "~15.0.0", + "@angular/platform-browser-dynamic": "~15.0.0", "@novu/notification-center": "^0.11.0", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -45,7 +45,7 @@ "devDependencies": { "@angular-devkit/build-angular": "^15.0.0", "@angular/cli": "~15.1.0", - "@angular/compiler-cli": "^15.0.0", + "@angular/compiler-cli": "~15.1.0", "@types/jasmine": "~4.3.0", "jasmine-core": "~4.5.0", "karma": "~6.4.0", @@ -54,7 +54,7 @@ "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "~2.0.0", "ng-packagr": "^15.0.0", - "typescript": "~4.9.0" + "typescript": "4.9.5" }, "gitHead": "1a8fa1bd98790810d7fb69c4dc0e82d33c20eec2" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a87bc0ecc54..33caae4ad2b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1691,7 +1691,7 @@ importers: '@types/node': 14.18.12 codecov: 3.8.3 cz-conventional-changelog: 3.3.0 - jest: 27.5.1_ts-node@10.9.1 + jest: 27.5.1 npm-run-all: 4.1.5 open-cli: 6.0.1 rimraf: 3.0.2 @@ -1817,12 +1817,12 @@ importers: specifiers: '@angular-devkit/build-angular': ^15.0.0 '@angular/cli': ~15.1.0 - '@angular/common': ^15.0.0 - '@angular/compiler': ^15.0.0 - '@angular/compiler-cli': ^15.0.0 - '@angular/core': ^15.0.0 - '@angular/platform-browser': ^15.0.0 - '@angular/platform-browser-dynamic': ^15.0.0 + '@angular/common': ~15.0.0 + '@angular/compiler': ~15.0.0 + '@angular/compiler-cli': ~15.1.0 + '@angular/core': ~15.0.0 + '@angular/platform-browser': ~15.0.0 + '@angular/platform-browser-dynamic': ~15.0.0 '@novu/notification-center': ^0.11.0 '@types/jasmine': ~4.3.0 jasmine-core: ~4.5.0 @@ -1835,7 +1835,7 @@ importers: react: ^17.0.1 react-dom: ^17.0.1 tslib: ^2.3.0 - typescript: ~4.9.0 + typescript: 4.9.5 zone.js: ~0.12.0 dependencies: '@angular/common': 15.0.0_6bfwd3ph3sdhhp7azeptlw637y @@ -1941,7 +1941,7 @@ importers: '@types/node': 14.18.12 codecov: 3.8.3 cz-conventional-changelog: 3.3.0 - jest: 27.5.1_ts-node@10.9.1 + jest: 27.5.1 npm-run-all: 4.1.5 open-cli: 6.0.1 rimraf: 3.0.2 @@ -8274,6 +8274,17 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helpers/7.20.1: + resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helpers/7.20.6: resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==} engines: {node: '>=6.9.0'} @@ -19004,51 +19015,6 @@ packages: - ts-node - utf-8-validate - /@jest/core/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/console': 27.5.1 - '@jest/reporters': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.11.13 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - emittery: 0.8.1 - exit: 0.1.2 - graceful-fs: 4.2.10 - jest-changed-files: 27.5.1 - jest-config: 27.5.1_ts-node@10.9.1 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-resolve-dependencies: 27.5.1 - jest-runner: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - jest-watcher: 27.5.1 - micromatch: 4.0.5 - rimraf: 3.0.2 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - /@jest/core/27.5.1_ts-node@7.0.1: resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -46392,36 +46358,6 @@ packages: - ts-node - utf-8-validate - /jest-cli/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 27.5.1_ts-node@10.9.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.10 - import-local: 3.1.0 - jest-config: 27.5.1_ts-node@10.9.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - prompts: 2.4.2 - yargs: 16.2.0 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - /jest-cli/27.5.1_ts-node@7.0.1: resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -46648,47 +46584,6 @@ packages: - supports-color - utf-8-validate - /jest-config/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@jest/test-sequencer': 27.5.1 - '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.17.8 - chalk: 4.1.2 - ci-info: 3.3.0 - deepmerge: 4.2.2 - glob: 7.2.0 - graceful-fs: 4.2.9 - jest-circus: 27.5.1 - jest-environment-jsdom: 27.5.1 - jest-environment-node: 27.5.1 - jest-get-type: 27.5.1 - jest-jasmine2: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runner: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 27.5.1 - slash: 3.0.0 - strip-json-comments: 3.1.1 - ts-node: 10.9.1_shievopl57bw2yyflx5da526ye - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - /jest-config/27.5.1_ts-node@7.0.1: resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -48092,27 +47987,6 @@ packages: - ts-node - utf-8-validate - /jest/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 27.5.1_ts-node@10.9.1 - import-local: 3.1.0 - jest-cli: 27.5.1_ts-node@10.9.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - /jest/27.5.1_ts-node@7.0.1: resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -61999,6 +61873,42 @@ packages: yargs-parser: 20.2.9 dev: true + /ts-jest/27.1.4_gxxm7iira7qywlxitjbf2xjjqa: + resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: '*' + jest: ^27.0.0 + typescript: '>=3.8 <5.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/jest': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@babel/core': 7.20.5 + '@types/jest': 27.4.0 + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 27.5.1_ts-node@9.1.1 +>>>>>>> 62c6b5d63 (feat(infra): upgrade dependencies according typescript upgrade) + jest-util: 27.5.1 + json5: 2.2.1 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.8 + typescript: 4.6.3 + yargs-parser: 20.2.9 + dev: true + /ts-jest/27.1.4_mgebd74qm74dqwjbo2fclp5ei4: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -62102,6 +62012,42 @@ packages: yargs-parser: 20.2.9 dev: true + /ts-jest/29.0.3_apl2kovhlf4augjpviu3seobxq: + resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} +>>>>>>> 62c6b5d63 (feat(infra): upgrade dependencies according typescript upgrade) + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: '*' + jest: ^27.0.0 + typescript: '>=3.8 <5.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/jest': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@babel/core': 7.20.5 + '@types/jest': 27.4.0 + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 27.4.7_ts-node@9.1.1 + jest-util: 27.5.1 + json5: 2.2.1 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.8 + typescript: 4.9.5 + yargs-parser: 20.2.9 + dev: true + /ts-jest/29.0.3_frfgizeupuj2jmtaxidt2dfubm: resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -62271,37 +62217,6 @@ packages: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - /ts-node/10.9.1_shievopl57bw2yyflx5da526ye: - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.8 - '@tsconfig/node12': 1.0.9 - '@tsconfig/node14': 1.0.1 - '@tsconfig/node16': 1.0.2 - '@types/node': 14.18.12 - acorn: 8.8.1 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.9.5 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - dev: true - /ts-node/7.0.1: resolution: {integrity: sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw==} engines: {node: '>=4.2.0'} From 27dbb32c275c645f74b4693c869a4c2d346855ef Mon Sep 17 00:00:00 2001 From: Zac Clifton Date: Thu, 2 Feb 2023 13:26:27 -0500 Subject: [PATCH 07/40] fix(logrocket): remove email if it is not present in user responce due to logrockets limits --- .../layout/components/HeaderNav.tsx | 26 +++++++++++++------ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/apps/web/src/components/layout/components/HeaderNav.tsx b/apps/web/src/components/layout/components/HeaderNav.tsx index 11c2ae82ae5..101dbeb4ab1 100644 --- a/apps/web/src/components/layout/components/HeaderNav.tsx +++ b/apps/web/src/components/layout/components/HeaderNav.tsx @@ -53,14 +53,24 @@ export function HeaderNav({}: Props) { if (LOGROCKET_ID) { useEffect(() => { if (currentUser && currentOrganization) { - let email = currentUser?.email; - email ??= ' '; - LogRocket.identify(currentUser?._id, { - name: currentUser?.firstName + ' ' + currentUser?.lastName, - email: email, - organizationId: currentOrganization._id, - organization: currentOrganization.name, - }); + let logrocketTraits; + + if (currentUser?.email !== undefined) { + logrocketTraits = { + name: currentUser?.firstName + ' ' + currentUser?.lastName, + organizationId: currentOrganization._id, + organization: currentOrganization.name, + email: currentUser?.email ? currentUser?.email : ' ', + }; + } else { + logrocketTraits = { + name: currentUser?.firstName + ' ' + currentUser?.lastName, + organizationId: currentOrganization._id, + organization: currentOrganization.name, + }; + } + + LogRocket.identify(currentUser?._id, logrocketTraits); } }, [currentUser, currentOrganization]); } From af10b3dcec29a09d49e0c6cba1fb8d5e0478a895 Mon Sep 17 00:00:00 2001 From: p-fernandez Date: Thu, 2 Feb 2023 17:33:44 +0000 Subject: [PATCH 08/40] fix(infra): upgrade ts-node for compatibility with upgraded ts version --- _templates/provider/new/package.ejs.t | 4 +- apps/api/package.json | 4 +- apps/inbound-mail/package.json | 4 +- apps/webhook/package.json | 4 +- apps/ws/package.json | 4 +- docs/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- libs/dal/package.json | 2 +- libs/embed/package.json | 2 +- libs/testing/package.json | 2 +- package.json | 2 +- packages/application-generic/package.json | 2 +- packages/cli/package.json | 4 +- packages/nest/package.json | 2 +- .../notification-center-angular/package.json | 14 +- packages/notification-center-vue/package.json | 2 +- packages/notification-center/package.json | 2 +- pnpm-lock.yaml | 3745 ++++++++++++----- providers/apns/package.json | 2 +- providers/burst-sms/package.json | 2 +- providers/clickatell/package.json | 3 +- providers/discord/package.json | 2 +- providers/emailjs/package.json | 2 +- providers/expo/package.json | 2 +- providers/fcm/package.json | 2 +- providers/firetext/package.json | 2 +- providers/gupshup/package.json | 2 +- providers/infobip/package.json | 2 +- providers/mailersend/package.json | 2 +- providers/mailgun/package.json | 2 +- providers/mailjet/package.json | 2 +- providers/mandrill/package.json | 2 +- providers/ms-teams/package.json | 2 +- providers/netcore/package.json | 2 +- providers/nexmo/package.json | 2 +- providers/nodemailer/package.json | 2 +- providers/outlook365/package.json | 2 +- providers/plivo/package.json | 2 +- providers/postmark/package.json | 2 +- providers/sendgrid/package.json | 2 +- providers/sendinblue/package.json | 2 +- providers/ses/package.json | 4 +- providers/slack/package.json | 2 +- providers/sms77/package.json | 2 +- providers/sns/package.json | 2 +- providers/sparkpost/package.json | 2 +- providers/telnyx/package.json | 2 +- providers/termii/package.json | 2 +- providers/twilio/package.json | 2 +- 50 files changed, 2821 insertions(+), 1049 deletions(-) diff --git a/_templates/provider/new/package.ejs.t b/_templates/provider/new/package.ejs.t index 1dcde120ede..02a389502a1 100644 --- a/_templates/provider/new/package.ejs.t +++ b/_templates/provider/new/package.ejs.t @@ -52,9 +52,9 @@ "open-cli": "^6.0.1", "prettier": "^2.1.1", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.19.0", - "typescript": "4.6.2", + "typescript": "4.9.5", "rimraf": "^3.0.2" }, "files": [ diff --git a/apps/api/package.json b/apps/api/package.json index 5a37ee4d2f0..014b66c50a3 100644 --- a/apps/api/package.json +++ b/apps/api/package.json @@ -133,8 +133,8 @@ "mocha": "^8.1.1", "nodemon": "^2.0.3", "sinon": "^9.2.4", - "ts-loader": "9.2.8", - "ts-node": "^9.0.0", + "ts-loader": "~9.2.8", + "ts-node": "~10.9.1", "tsconfig-paths": "3.14.1", "typescript": "4.9.5" }, diff --git a/apps/inbound-mail/package.json b/apps/inbound-mail/package.json index 91c3cd79c12..a82f1dade15 100644 --- a/apps/inbound-mail/package.json +++ b/apps/inbound-mail/package.json @@ -48,8 +48,8 @@ "nodemon": "^2.0.7", "prettier": "^2.1.2", "ts-jest": "^27.0.7", - "ts-loader": "^8.0.8", - "ts-node": "^9.0.0", + "ts-loader": "~9.2.8", + "ts-node": "~10.9.1", "tsconfig-paths": "^3.9.0", "typescript": "4.9.5" } diff --git a/apps/webhook/package.json b/apps/webhook/package.json index ccd54000a56..f02e933f393 100644 --- a/apps/webhook/package.json +++ b/apps/webhook/package.json @@ -70,8 +70,8 @@ "sinon": "^9.2.4", "supertest": "^6.0.0", "ts-jest": "^27.0.7", - "ts-loader": "^8.0.8", - "ts-node": "^9.0.0", + "ts-loader": "~9.2.8", + "ts-node": "~10.9.1", "tsconfig-paths": "^3.9.0", "typescript": "4.9.5" } diff --git a/apps/ws/package.json b/apps/ws/package.json index 2a42f8d0d56..92c6f88363f 100644 --- a/apps/ws/package.json +++ b/apps/ws/package.json @@ -69,8 +69,8 @@ "prettier": "^2.1.2", "supertest": "^6.0.0", "ts-jest": "^27.0.7", - "ts-loader": "^8.0.8", - "ts-node": "^9.0.0", + "ts-loader": "~9.2.8", + "ts-node": "~10.9.1", "tsconfig-paths": "^3.9.0", "typescript": "4.9.5" }, diff --git a/docs/package.json b/docs/package.json index 2de5a8bb488..c83b6a4c8e1 100644 --- a/docs/package.json +++ b/docs/package.json @@ -61,7 +61,7 @@ "stylelint-config-standard": "^25.0.0", "stylelint-order": "^5.0.0", "stylelint-scss": "^4.2.0", - "typescript": "^4.6.4" + "typescript": "4.9.5" }, "browserslist": { "production": [ diff --git a/examples/angular-notification-center-example/package.json b/examples/angular-notification-center-example/package.json index e6bc2601993..0346838f8c2 100644 --- a/examples/angular-notification-center-example/package.json +++ b/examples/angular-notification-center-example/package.json @@ -35,6 +35,6 @@ "karma-coverage": "~2.2.0", "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "~2.0.0", - "typescript": "~4.8.2" + "typescript": "4.9.5" } } diff --git a/examples/vue-notification-center-example/package.json b/examples/vue-notification-center-example/package.json index b58d7ddb868..675fa66829f 100644 --- a/examples/vue-notification-center-example/package.json +++ b/examples/vue-notification-center-example/package.json @@ -19,7 +19,7 @@ "@vitejs/plugin-vue-jsx": "^2.0.1", "@vue/tsconfig": "^0.1.3", "npm-run-all": "^4.1.5", - "typescript": "~4.7.4", + "typescript": "4.9.5", "vite": "^3.1.8", "vue-tsc": "^1.0.8" }, diff --git a/libs/dal/package.json b/libs/dal/package.json index 830fa8bddd7..13d44eb7faa 100644 --- a/libs/dal/package.json +++ b/libs/dal/package.json @@ -63,7 +63,7 @@ "apollo-boost": "0.4.9", "eslint-plugin-prettier": "^3.4.0", "nodemon": "^2.0.3", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "tsconfig-paths": "^3.9.0", "typescript": "4.9.5" }, diff --git a/libs/embed/package.json b/libs/embed/package.json index fab9a204cab..63b59fe6719 100644 --- a/libs/embed/package.json +++ b/libs/embed/package.json @@ -123,7 +123,7 @@ "shelljs": "^0.8.3", "travis-deploy-once": "^5.0.9", "ts-jest": "^27.1.3", - "ts-node": "^7.0.1", + "ts-node": "~10.9.1", "tslib": "^2.3.1", "typescript": "4.9.5" }, diff --git a/libs/testing/package.json b/libs/testing/package.json index b1a0d501016..fb00695c73a 100644 --- a/libs/testing/package.json +++ b/libs/testing/package.json @@ -51,7 +51,7 @@ "apollo-boost": "0.4.9", "eslint-plugin-prettier": "^3.4.0", "nodemon": "^2.0.3", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "tsconfig-paths": "^3.9.0", "typescript": "4.9.5" }, diff --git a/package.json b/package.json index 69a69d32784..520808ae665 100644 --- a/package.json +++ b/package.json @@ -131,7 +131,7 @@ "stop-only": "^3.1.2", "tar": "^6.1.11", "ts-jest": "27.0.5", - "ts-node": "^9.1.1", + "ts-node": "~10.9.1", "typescript": "4.9.5", "wait-port": "^0.3.0" }, diff --git a/packages/application-generic/package.json b/packages/application-generic/package.json index 584bc5fe9bd..b6643fb640c 100644 --- a/packages/application-generic/package.json +++ b/packages/application-generic/package.json @@ -84,7 +84,7 @@ "rimraf": "^3.0.2", "sinon": "^9.2.4", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/packages/cli/package.json b/packages/cli/package.json index 4b2cd4e6315..7bfa524c1ab 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -27,7 +27,7 @@ "@types/inquirer": "^8.2.0", "@types/mocha": "9.1.1", "nodemon": "^2.0.15", - "typescript": "^4.5.5" + "typescript": "4.9.5" }, "dependencies": { "@novu/shared": "^0.11.0", @@ -44,7 +44,7 @@ "jwt-decode": "^3.1.2", "open": "^8.4.0", "ora": "^5.4.1", - "ts-node": "^10.5.0", + "ts-node": "~10.9.1", "uuid": "^9.0.0" }, "gitHead": "e1055f2fd2f0ec9a85d64b271c7d5824bdb381d0" diff --git a/packages/nest/package.json b/packages/nest/package.json index 24816fcd3a0..b01942364fc 100644 --- a/packages/nest/package.json +++ b/packages/nest/package.json @@ -52,7 +52,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/packages/notification-center-angular/package.json b/packages/notification-center-angular/package.json index 25b179533e1..ee08cff3d2f 100644 --- a/packages/notification-center-angular/package.json +++ b/packages/notification-center-angular/package.json @@ -31,11 +31,11 @@ } }, "dependencies": { - "@angular/common": "~15.0.0", - "@angular/compiler": "~15.0.0", - "@angular/core": "~15.0.0", - "@angular/platform-browser": "~15.0.0", - "@angular/platform-browser-dynamic": "~15.0.0", + "@angular/common": "~15.1.0", + "@angular/compiler": "~15.1.0", + "@angular/core": "~15.1.0", + "@angular/platform-browser": "~15.1.0", + "@angular/platform-browser-dynamic": "~15.1.0", "@novu/notification-center": "^0.11.0", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -43,7 +43,7 @@ "zone.js": "~0.12.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^15.0.0", + "@angular-devkit/build-angular": "~15.1.0", "@angular/cli": "~15.1.0", "@angular/compiler-cli": "~15.1.0", "@types/jasmine": "~4.3.0", @@ -53,7 +53,7 @@ "karma-coverage": "~2.2.0", "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "~2.0.0", - "ng-packagr": "^15.0.0", + "ng-packagr": "~15.1.0", "typescript": "4.9.5" }, "gitHead": "1a8fa1bd98790810d7fb69c4dc0e82d33c20eec2" diff --git a/packages/notification-center-vue/package.json b/packages/notification-center-vue/package.json index a187f70dc60..7ccc75e43a1 100644 --- a/packages/notification-center-vue/package.json +++ b/packages/notification-center-vue/package.json @@ -40,7 +40,7 @@ "eslint-plugin-vue": "^9.3.0", "npm-run-all": "^4.1.5", "prettier": "^2.7.1", - "typescript": "~4.9.0", + "typescript": "4.9.5", "vite": "^4.0.0", "vue": "^3.2.45", "vue-tsc": "^1.0.12" diff --git a/packages/notification-center/package.json b/packages/notification-center/package.json index bebb6f41ee1..da5a49ee0dd 100644 --- a/packages/notification-center/package.json +++ b/packages/notification-center/package.json @@ -59,7 +59,7 @@ "rollup-plugin-terser": "^7.0.2", "ts-jest": "^29.0.3", "tslib": "^2.3.1", - "typescript": "^4.4.4" + "typescript": "4.9.5" }, "peerDependencies": { "react": ">=16.8.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 33caae4ad2b..e61376b1fa5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -72,7 +72,7 @@ importers: stop-only: ^3.1.2 tar: ^6.1.11 ts-jest: 27.0.5 - ts-node: ^9.1.1 + ts-node: ~10.9.1 tslib: ^2.0.0 typescript: 4.9.5 wait-port: ^0.3.0 @@ -87,12 +87,12 @@ importers: '@commitlint/config-conventional': 17.4.2 '@cspell/eslint-plugin': 6.14.3 '@nrwl/cli': 13.10.6 - '@nrwl/eslint-plugin-nx': 13.10.6_fkaxtw3iwc36oe2k5ldj4prhim - '@nrwl/jest': 13.10.6_nx@14.5.10+ts-node@9.1.1 - '@nrwl/linter': 13.10.6_f7pzrhfctnesxmnbiwt5xcr6ki + '@nrwl/eslint-plugin-nx': 13.10.6_sbod56dxmv36jb46oeyep6liwq + '@nrwl/jest': 13.10.6_nx@14.5.10+ts-node@10.9.1 + '@nrwl/linter': 13.10.6_sifbhchsd562o4dkysdeyelsei '@nrwl/nx-cloud': 13.2.1_chalk@4.1.2+rxjs@6.5.5 '@nrwl/tao': 13.10.6 - '@nrwl/workspace': 13.10.6_ytufk5dow5t2kzcvjl63xtkwwa + '@nrwl/workspace': 13.10.6_p7jts4dkwrs72euapyxm2hnvs4 '@octokit/core': 3.6.0 '@pnpm/filter-workspace-packages': 4.4.35_@pnpm+logger@4.0.0 '@pnpm/logger': 4.0.0 @@ -131,7 +131,7 @@ importers: husky: 8.0.1 hygen: 6.2.0_2n7boyzr6bebiv55d56maw7y34 inquirer: 8.2.5 - jest: 27.2.3_ts-node@9.1.1 + jest: 27.2.3_ts-node@10.9.1 jira-prepare-commit-msg: 1.7.2 lerna: 5.6.2 lint-staged: 10.5.4 @@ -146,8 +146,8 @@ importers: shelljs: 0.8.5 stop-only: 3.1.2 tar: 6.1.11 - ts-jest: 27.0.5_2hxkpkn5pxklfqzhyey6ik757y - ts-node: 9.1.1_typescript@4.9.5 + ts-jest: 27.0.5_ohnaagtittsob4iczpbr2edvza + ts-node: 10.9.1_263kxb4upkllfszsccwxso4xq4 typescript: 4.9.5 wait-port: 0.3.0 @@ -259,8 +259,8 @@ importers: sinon: ^9.2.4 slugify: ^1.4.6 swagger-ui-express: ^4.4.0 - ts-loader: 9.2.8 - ts-node: ^9.0.0 + ts-loader: ~9.2.8 + ts-node: ~10.9.1 tsconfig-paths: 3.14.1 twilio: ^3.72.0 typescript: 4.9.5 @@ -376,7 +376,7 @@ importers: nodemon: 2.0.15 sinon: 9.2.4 ts-loader: 9.2.8_hhrrucqyg4eysmfpujvov2ym5u - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_shievopl57bw2yyflx5da526ye tsconfig-paths: 3.14.1 typescript: 4.9.5 @@ -407,8 +407,8 @@ importers: smtp-server: ^1.4.0 spamc: 0.0.5 ts-jest: ^27.0.7 - ts-loader: ^8.0.8 - ts-node: ^9.0.0 + ts-loader: ~9.2.8 + ts-node: ~10.9.1 tsconfig-paths: ^3.9.0 typescript: 4.9.5 winston: ^1.0.0 @@ -440,8 +440,8 @@ importers: nodemon: 2.0.15 prettier: 2.7.1 ts-jest: 27.1.4_cnngzrja2umb46xxazlucyx2qu - ts-loader: 8.4.0_hhrrucqyg4eysmfpujvov2ym5u - ts-node: 9.1.1_typescript@4.9.5 + ts-loader: 9.2.8_hhrrucqyg4eysmfpujvov2ym5u + ts-node: 10.9.1_shievopl57bw2yyflx5da526ye tsconfig-paths: 3.14.1 typescript: 4.9.5 @@ -559,16 +559,16 @@ importers: zod: ^3.17.3 dependencies: '@ant-design/icons': 4.7.0_sfoxds7t5ydpegc3knd667wn6m - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.20.5 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.20.12 '@cypress/react': 7.0.2_ruijhr2oz5fcnnlwuxcoqw7tii '@cypress/webpack-dev-server': 3.1.2_webpack@5.74.0 '@editorjs/editorjs': 2.23.2 '@editorjs/paragraph': 2.8.0 - '@emotion/babel-plugin': 11.7.2_@babel+core@7.20.5 - '@emotion/react': 11.8.2_qpyltmt7eqg3kkwslsanwllogq - '@emotion/styled': 11.8.1_aleq7ve4hptaezxvbvcsphpvb4 + '@emotion/babel-plugin': 11.7.2_@babel+core@7.20.12 + '@emotion/react': 11.8.2_uxyt6yxd7k52w2brmbg65a2dw4 + '@emotion/styled': 11.8.1_nvzpjvd4u4t6xef4ctbu72flfm '@handlebars/parser': 2.1.0 '@hookform/resolvers': 2.9.1_react-hook-form@7.34.0 '@mantine/core': 5.8.4_7yfpip2uxrysi7ib5qzo3w6tfe @@ -644,18 +644,18 @@ importers: zod: 3.17.3 devDependencies: '@babel/polyfill': 7.12.1 - '@babel/preset-env': 7.16.11_@babel+core@7.20.5 - '@babel/preset-react': 7.16.7_@babel+core@7.20.5 - '@babel/preset-typescript': 7.16.7_@babel+core@7.20.5 + '@babel/preset-env': 7.16.11_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 '@babel/runtime': 7.17.8 '@novu/dal': link:../../libs/dal '@novu/testing': link:../../libs/testing '@storybook/addon-actions': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 - '@storybook/addon-essentials': 6.4.19_47iqxj5iozjgqrbctm5xbfsyvi + '@storybook/addon-essentials': 6.4.19_e36mvjwfyx7yr6tmxte2zzv6vi '@storybook/addon-links': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/node-logger': 6.4.19 - '@storybook/preset-create-react-app': 4.1.0_toosg7fcpy2dyvp4r6gagkuwny - '@storybook/react': 6.4.21_hbm3t5634ikvlrv7alx2gv6vkm + '@storybook/preset-create-react-app': 4.1.0_wc2heeo5pv4ilbxedgirnwbb7y + '@storybook/react': 6.4.21_yhub4ygavw57xa3uqe4k2wd3ji '@testing-library/jest-dom': 4.2.4 '@types/testing-library__jest-dom': 5.14.5 cypress: 12.1.0 @@ -720,8 +720,8 @@ importers: socket.io: ^4.5.4 supertest: ^6.0.0 ts-jest: ^27.0.7 - ts-loader: ^8.0.8 - ts-node: ^9.0.0 + ts-loader: ~9.2.8 + ts-node: ~10.9.1 tsconfig-paths: ^3.9.0 typescript: 4.9.5 dependencies: @@ -767,15 +767,15 @@ importers: '@types/supertest': 2.0.12 chai: 4.3.6 cross-env: 7.0.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 mocha: 8.4.0 nodemon: 2.0.15 prettier: 2.7.1 sinon: 9.2.4 supertest: 6.2.2 ts-jest: 27.1.4_nbjllzzdoewiqiaqtdm64bcnbu - ts-loader: 8.4.0_hhrrucqyg4eysmfpujvov2ym5u - ts-node: 9.1.1_typescript@4.9.5 + ts-loader: 9.2.8_hhrrucqyg4eysmfpujvov2ym5u + ts-node: 10.9.1_shievopl57bw2yyflx5da526ye tsconfig-paths: 3.14.1 typescript: 4.9.5 @@ -836,9 +836,9 @@ importers: webpack-dev-server: 4.11.1 dependencies: '@ant-design/icons': 4.7.0_sfoxds7t5ydpegc3knd667wn6m - '@emotion/react': 11.10.5_ocag5ie7gjuvrh3tafxbn74hti - '@emotion/styled': 11.8.1_7al4caiehbpd3fwc5j37u6ghte - '@mantine/core': 4.1.0_x46aqxej6irzqwrc3h5ps4rd6a + '@emotion/react': 11.10.5_mk6db2egckiugg7v365a42dwcm + '@emotion/styled': 11.8.1_6pyqqf3gsgk64dc57nzribe7em + '@mantine/core': 4.1.0_n3u4m3zikqrlgvnttxvs7tpocy '@mantine/hooks': 4.1.0_react@17.0.2 '@novu/notification-center': link:../../packages/notification-center '@novu/shared': link:../../libs/shared @@ -867,7 +867,7 @@ importers: webfontloader: 1.6.28 devDependencies: '@craco/craco': 6.4.3_u2c7aebudwn7l5c6nel6iah7lm - '@emotion/babel-plugin': 11.10.5_@babel+core@7.20.5 + '@emotion/babel-plugin': 11.10.5_@babel+core@7.20.12 '@faker-js/faker': 6.1.1 '@novu/dal': link:../../libs/dal '@novu/testing': link:../../libs/testing @@ -936,8 +936,8 @@ importers: socket.io: ^4.5.4 supertest: ^6.0.0 ts-jest: ^27.0.7 - ts-loader: ^8.0.8 - ts-node: ^9.0.0 + ts-loader: ~9.2.8 + ts-node: ~10.9.1 tsconfig-paths: ^3.9.0 typescript: 4.9.5 dependencies: @@ -981,13 +981,13 @@ importers: '@types/socket.io': 2.1.13 '@types/supertest': 2.0.12 cross-env: 7.0.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 nodemon: 2.0.15 prettier: 2.6.1 supertest: 6.2.2 ts-jest: 27.1.4_nbjllzzdoewiqiaqtdm64bcnbu - ts-loader: 8.4.0_hhrrucqyg4eysmfpujvov2ym5u - ts-node: 9.1.1_typescript@4.9.5 + ts-loader: 9.2.8_hhrrucqyg4eysmfpujvov2ym5u + ts-node: 10.9.1_shievopl57bw2yyflx5da526ye tsconfig-paths: 3.14.1 typescript: 4.9.5 @@ -1026,7 +1026,7 @@ importers: stylelint-config-standard: ^25.0.0 stylelint-order: ^5.0.0 stylelint-scss: ^4.2.0 - typescript: ^4.6.4 + typescript: 4.9.5 url-loader: ^4.1.1 dependencies: '@docusaurus/core': 2.0.0-beta.20_3okb5bdjyyeqqpgf7ptkihrkey @@ -1060,7 +1060,7 @@ importers: sass-loader: 13.0.0_sass@1.52.3+webpack@5.75.0 stylelint: 14.9.1 stylelint-config-recess-order: 3.0.0_stylelint@14.9.1 - stylelint-config-recommended-scss: 6.0.0_pddp3xp6kckfhyuzrpyoasgypq + stylelint-config-recommended-scss: 6.0.0_uw7nz5xqcmvtvz7g4i6uisa5x4 stylelint-config-standard: 25.0.0_stylelint@14.9.1 stylelint-order: 5.0.0_stylelint@14.9.1 stylelint-scss: 4.2.0_stylelint@14.9.1 @@ -1090,7 +1090,7 @@ importers: karma-jasmine-html-reporter: ~2.0.0 rxjs: ~7.5.0 tslib: ^2.3.0 - typescript: ~4.8.2 + typescript: 4.9.5 zone.js: ~0.12.0 dependencies: '@angular/animations': 15.0.0_@angular+core@15.0.0 @@ -1107,9 +1107,9 @@ importers: tslib: 2.4.0 zone.js: 0.12.0 devDependencies: - '@angular-devkit/build-angular': 15.0.0_hdty2734xg3e6awctjcuqdo2tm + '@angular-devkit/build-angular': 15.0.0_oljuxzb6hvp53jbx7ku73hrmla '@angular/cli': 15.0.3_chokidar@3.5.3 - '@angular/compiler-cli': 15.0.0_wi64dnikphprnhepyj5q2xqyru + '@angular/compiler-cli': 15.0.0_hkrohac3r5tzyiymw7onjymdfe '@types/jasmine': 4.3.0 jasmine-core: 4.5.0 karma: 6.4.1 @@ -1117,7 +1117,7 @@ importers: karma-coverage: 2.2.0 karma-jasmine: 5.1.0_karma@6.4.1 karma-jasmine-html-reporter: 2.0.0_uk6l45dlsjldsnfgnal4othgyq - typescript: 4.8.4 + typescript: 4.9.5 examples/vue-notification-center-example: specifiers: @@ -1127,7 +1127,7 @@ importers: '@vitejs/plugin-vue-jsx': ^2.0.1 '@vue/tsconfig': ^0.1.3 npm-run-all: ^4.1.5 - typescript: ~4.7.4 + typescript: 4.9.5 vite: ^3.1.8 vue: ^3.2.41 vue-tsc: ^1.0.8 @@ -1140,9 +1140,9 @@ importers: '@vitejs/plugin-vue-jsx': 2.1.1_vite@3.2.4+vue@3.2.45 '@vue/tsconfig': 0.1.3_@types+node@16.18.3 npm-run-all: 4.1.5 - typescript: 4.7.4 + typescript: 4.9.5 vite: 3.2.4_@types+node@16.18.3 - vue-tsc: 1.0.9_typescript@4.7.4 + vue-tsc: 1.0.9_typescript@4.9.5 libs/dal: specifiers: @@ -1184,7 +1184,7 @@ importers: rimraf: ^3.0.2 superagent-defaults: ^0.1.14 supertest: ^5.0.0 - ts-node: ^9.0.0 + ts-node: ~10.9.1 tsconfig-paths: ^3.9.0 twilio: ^3.62.0 typescript: 4.9.5 @@ -1231,7 +1231,7 @@ importers: apollo-boost: 0.4.9_graphql@15.8.0 eslint-plugin-prettier: 3.4.1_fqyzhpusvewbsl54pqqbxqaegm nodemon: 2.0.15 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_shievopl57bw2yyflx5da526ye tsconfig-paths: 3.14.1 typescript: 4.9.5 @@ -1272,7 +1272,7 @@ importers: shelljs: ^0.8.3 travis-deploy-once: ^5.0.9 ts-jest: ^27.1.3 - ts-node: ^7.0.1 + ts-node: ~10.9.1 tslib: ^2.3.1 typescript: 4.9.5 dependencies: @@ -1293,8 +1293,8 @@ importers: cz-conventional-changelog: 2.1.0 http-server: 0.13.0 husky: 1.3.1 - jest: 27.5.1_ts-node@7.0.1 - jest-config: 27.5.1_ts-node@7.0.1 + jest: 27.5.1_ts-node@10.9.1 + jest-config: 27.5.1_ts-node@10.9.1 lint-staged: 8.2.1 lodash.camelcase: 4.3.0 prettier: 1.19.1 @@ -1311,8 +1311,8 @@ importers: semantic-release: 19.0.3 shelljs: 0.8.5 travis-deploy-once: 5.0.11 - ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m - ts-node: 7.0.1 + ts-jest: 27.1.4_cezqjwcjtt4cfdltrwurxhordi + ts-node: 10.9.1_shievopl57bw2yyflx5da526ye tslib: 2.3.1 typescript: 4.9.5 @@ -1364,7 +1364,7 @@ importers: rimraf: ^3.0.2 superagent-defaults: ^0.1.14 supertest: ^5.0.0 - ts-node: ^9.0.0 + ts-node: ~10.9.1 tsconfig-paths: ^3.9.0 typescript: 4.9.5 uuid: ^8.3.0 @@ -1398,7 +1398,7 @@ importers: apollo-boost: 0.4.9_graphql@15.8.0 eslint-plugin-prettier: 3.4.1_fqyzhpusvewbsl54pqqbxqaegm nodemon: 2.0.15 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_shievopl57bw2yyflx5da526ye tsconfig-paths: 3.14.1 typescript: 4.9.5 @@ -1452,7 +1452,7 @@ importers: rimraf: ^3.0.2 sinon: ^9.2.4 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -1497,7 +1497,7 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 @@ -1505,7 +1505,7 @@ importers: rimraf: 3.0.2 sinon: 9.2.4 ts-jest: 27.1.4_mgebd74qm74dqwjbo2fclp5ei4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -1530,8 +1530,8 @@ importers: nodemon: ^2.0.15 open: ^8.4.0 ora: ^5.4.1 - ts-node: ^10.5.0 - typescript: ^4.5.5 + ts-node: ~10.9.1 + typescript: 4.9.5 uuid: ^9.0.0 dependencies: '@novu/shared': link:../../libs/shared @@ -1604,13 +1604,13 @@ importers: '@tanstack/query-core': 4.15.1 socket.io-client: 4.5.4 devDependencies: - '@babel/preset-env': 7.19.4_@babel+core@7.20.5 - '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5 + '@babel/preset-env': 7.19.4_@babel+core@7.20.12 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 '@types/jest': 29.2.3 '@types/node': 14.18.12 jest: 29.3.1_@types+node@14.18.12 jest-environment-jsdom: 29.3.1 - ts-jest: 29.0.3_frfgizeupuj2jmtaxidt2dfubm + ts-jest: 29.0.3_emtz7bspl3w44yuglrfo66r3kq typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -1631,7 +1631,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -1644,14 +1644,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -1754,7 +1754,7 @@ importers: socket.io-client: 4.5.4 ts-jest: ^29.0.3 tslib: ^2.3.1 - typescript: ^4.4.4 + typescript: 4.9.5 webfontloader: ^1.6.28 dependencies: '@emotion/css': 11.10.5_@babel+core@7.17.8 @@ -1815,14 +1815,14 @@ importers: packages/notification-center-angular: specifiers: - '@angular-devkit/build-angular': ^15.0.0 + '@angular-devkit/build-angular': ~15.1.0 '@angular/cli': ~15.1.0 - '@angular/common': ~15.0.0 - '@angular/compiler': ~15.0.0 + '@angular/common': ~15.1.0 + '@angular/compiler': ~15.1.0 '@angular/compiler-cli': ~15.1.0 - '@angular/core': ~15.0.0 - '@angular/platform-browser': ~15.0.0 - '@angular/platform-browser-dynamic': ~15.0.0 + '@angular/core': ~15.1.0 + '@angular/platform-browser': ~15.1.0 + '@angular/platform-browser-dynamic': ~15.1.0 '@novu/notification-center': ^0.11.0 '@types/jasmine': ~4.3.0 jasmine-core: ~4.5.0 @@ -1831,27 +1831,27 @@ importers: karma-coverage: ~2.2.0 karma-jasmine: ~5.1.0 karma-jasmine-html-reporter: ~2.0.0 - ng-packagr: ^15.0.0 + ng-packagr: ~15.1.0 react: ^17.0.1 react-dom: ^17.0.1 tslib: ^2.3.0 typescript: 4.9.5 zone.js: ~0.12.0 dependencies: - '@angular/common': 15.0.0_6bfwd3ph3sdhhp7azeptlw637y - '@angular/compiler': 15.0.0_@angular+core@15.0.0 - '@angular/core': 15.0.0_rxjs@7.8.0+zone.js@0.12.0 - '@angular/platform-browser': 15.0.0_7psesmusmj4excifnjgc7jfosa - '@angular/platform-browser-dynamic': 15.0.0_pulbxwlpifslvvthxw6am5bday + '@angular/common': 15.1.2_77moedl5bs7lqwcv53ddrcqlqi + '@angular/compiler': 15.1.2_@angular+core@15.1.2 + '@angular/core': 15.1.2_rxjs@7.8.0+zone.js@0.12.0 + '@angular/platform-browser': 15.1.2_uv6uyeurdrzrhsp6bgc27pnjdu + '@angular/platform-browser-dynamic': 15.1.2_nvxdb5l45salvpcyi4ujzyiawy '@novu/notification-center': link:../notification-center react: 17.0.2 react-dom: 17.0.2_react@17.0.2 tslib: 2.4.0 zone.js: 0.12.0 devDependencies: - '@angular-devkit/build-angular': 15.0.0_ovja46kpjfqakqqk4boxxohaai - '@angular/cli': 15.1.2_chokidar@3.5.3 - '@angular/compiler-cli': 15.1.2_hkrohac3r5tzyiymw7onjymdfe + '@angular-devkit/build-angular': 15.1.4_lxvwtqumbnosanp4rqg2vthfci + '@angular/cli': 15.1.4_chokidar@3.5.3 + '@angular/compiler-cli': 15.1.2_qbb6prygfkdcmogcfoew4a7yfy '@types/jasmine': 4.3.0 jasmine-core: 4.5.0 karma: 6.4.1 @@ -1859,7 +1859,7 @@ importers: karma-coverage: 2.2.0 karma-jasmine: 5.1.0_karma@6.4.1 karma-jasmine-html-reporter: 2.0.0_uk6l45dlsjldsnfgnal4othgyq - ng-packagr: 15.0.0_mhldeuutqtdyc5bpeklotyy3jm + ng-packagr: 15.1.1_mhldeuutqtdyc5bpeklotyy3jm typescript: 4.9.5 packages/notification-center-vue: @@ -1880,12 +1880,12 @@ importers: prettier: ^2.7.1 react: ^17.0.1 react-dom: ^17.0.1 - typescript: ~4.9.0 + typescript: 4.9.5 vite: ^4.0.0 vue: ^3.2.45 vue-tsc: ^1.0.12 dependencies: - '@emotion/css': 11.10.5_@babel+core@7.20.5 + '@emotion/css': 11.10.5_@babel+core@7.20.12 '@novu/notification-center': link:../notification-center floating-vue: '@github.com/LetItRock/floating-vue/raw/main/packages/floating-vue/floating-vue-2.0.0-beta.21.tgz_vue@3.2.45' react: 17.0.2 @@ -1966,7 +1966,7 @@ importers: open-cli: ^6.0.1 prettier: ^2.1.1 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -1979,13 +1979,13 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 - ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-jest: 27.1.4_rx2nkp4acdg4mhmzm5oop3yrke + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2007,7 +2007,7 @@ importers: qs: ^6.11.0 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 uuid: ^9.0.0 @@ -2022,14 +2022,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 uuid: 9.0.0 @@ -2051,8 +2051,9 @@ importers: open-cli: ^6.0.1 prettier: ^2.1.1 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 + typescript: 4.9.5 dependencies: '@novu/stateless': link:../../packages/stateless axios: 0.27.2 @@ -2064,14 +2065,15 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 + typescript: 4.9.5 providers/discord: specifiers: @@ -2090,7 +2092,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2103,14 +2105,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2131,7 +2133,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2144,14 +2146,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2172,7 +2174,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2185,14 +2187,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2216,7 +2218,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2231,7 +2233,7 @@ importers: cz-conventional-changelog: 3.3.0 eslint: 7.32.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 jest-node-exports-resolver: 1.1.6 npm-run-all: 4.1.5 nyc: 15.1.0 @@ -2239,7 +2241,7 @@ importers: prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2263,7 +2265,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2279,14 +2281,14 @@ importers: cz-conventional-changelog: 3.3.0 fetch-mock: 9.11.0_node-fetch@3.2.10 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2308,7 +2310,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2322,14 +2324,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.2 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2350,7 +2352,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2363,14 +2365,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2391,7 +2393,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2404,14 +2406,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2434,7 +2436,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2449,14 +2451,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2478,7 +2480,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2492,14 +2494,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m - ts-node: 9.1.1_typescript@4.9.5 + ts-jest: 27.1.4_cezqjwcjtt4cfdltrwurxhordi + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2522,7 +2524,7 @@ importers: prettier: 2.4.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2537,14 +2539,14 @@ importers: eslint: 8.18.0 eslint-plugin-eslint-comments: 3.2.0_eslint@8.18.0 gh-pages: 3.2.3 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.4.1 rimraf: 3.0.2 ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2565,7 +2567,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 uuid: ^9.0.0 @@ -2579,14 +2581,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 uuid: 9.0.0 @@ -2608,7 +2610,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.7 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2621,14 +2623,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2649,7 +2651,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2662,14 +2664,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2691,7 +2693,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.7 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2705,14 +2707,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2733,7 +2735,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2746,14 +2748,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2774,7 +2776,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2787,14 +2789,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2815,7 +2817,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2828,14 +2830,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2856,7 +2858,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2869,14 +2871,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2898,7 +2900,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2912,14 +2914,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2941,9 +2943,9 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 - typescript: ^4.4.3 + typescript: ^4.9.5 dependencies: '@aws-sdk/client-ses': 3.48.0 '@novu/stateless': link:../../packages/stateless @@ -2955,14 +2957,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 - ts-jest: 27.1.4_mgebd74qm74dqwjbo2fclp5ei4 - ts-node: 9.1.1_typescript@4.9.5 + ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -2984,7 +2986,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -2998,14 +3000,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -3028,7 +3030,7 @@ importers: rimraf: ^3.0.2 sms77-client: ^2.14.0 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -3043,14 +3045,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -3071,7 +3073,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -3084,14 +3086,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -3113,7 +3115,7 @@ importers: rimraf: ^3.0.2 sparkpost: ^2.1.4 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -3127,14 +3129,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.7.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -3155,7 +3157,7 @@ importers: rimraf: ^3.0.2 telnyx: ^1.23.0 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -3168,14 +3170,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -3197,7 +3199,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 typedoc: ^0.23.0 typescript: 4.9.5 dependencies: @@ -3211,14 +3213,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.2 rimraf: 3.0.2 ts-jest: 27.1.4_arli55mex5meswznkaa46qexm4 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -3238,7 +3240,7 @@ importers: prettier: ^2.1.1 rimraf: ^3.0.2 ts-jest: ^27.0.5 - ts-node: ^9.0.0 + ts-node: ~10.9.1 twilio: ^3.67.2 typedoc: ^0.23.0 typescript: 4.9.5 @@ -3252,14 +3254,14 @@ importers: cspell: 4.2.8 cz-conventional-changelog: 3.3.0 gh-pages: 3.2.3 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 npm-run-all: 4.1.5 nyc: 15.1.0 open-cli: 6.0.1 prettier: 2.6.1 rimraf: 3.0.2 ts-jest: 27.1.4_oh6gyf2pdnadazgaopxviptjum - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga typedoc: 0.23.24_typescript@4.9.5 typescript: 4.9.5 @@ -3413,17 +3415,17 @@ packages: - chokidar dev: true - /@angular-devkit/architect/0.1501.2_chokidar@3.5.3: - resolution: {integrity: sha512-AfORVGLN0FBIUXO3FkfGOKu+Gz6oJjF8Bu8cPn27duiI0wszxGNY3fATKwbSg7JcKx1oQS/G7RjyC5OiTA6a0Q==} + /@angular-devkit/architect/0.1501.4_chokidar@3.5.3: + resolution: {integrity: sha512-PE0CqPaNzcz8yHEuJwqtKxYvXX9hgWWvC6hI2DWKtC+5WgJLAYJNEGofXQRc227Nj+YySEYUUo8Ja8SYl3lDxA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 15.1.2_chokidar@3.5.3 + '@angular-devkit/core': 15.1.4_chokidar@3.5.3 rxjs: 6.6.7 transitivePeerDependencies: - chokidar dev: true - /@angular-devkit/build-angular/15.0.0_hdty2734xg3e6awctjcuqdo2tm: + /@angular-devkit/build-angular/15.0.0_oljuxzb6hvp53jbx7ku73hrmla: resolution: {integrity: sha512-sF8c4oewwpKPlLkMMDBIM/qQ+LQHv308JvyWV2VKaph3IWI2TZQP4n5024/XaFvBEz0/2sHDWTMcGTKlZ7ZC0w==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -3456,7 +3458,7 @@ packages: '@angular-devkit/architect': 0.1500.0_chokidar@3.5.3 '@angular-devkit/build-webpack': 0.1500.0_oc46zsvsns3nh7f43oasdmifbu '@angular-devkit/core': 15.0.0_chokidar@3.5.3 - '@angular/compiler-cli': 15.0.0_wi64dnikphprnhepyj5q2xqyru + '@angular/compiler-cli': 15.0.0_hkrohac3r5tzyiymw7onjymdfe '@babel/core': 7.20.2 '@babel/generator': 7.20.4 '@babel/helper-annotate-as-pure': 7.18.6 @@ -3467,7 +3469,7 @@ packages: '@babel/runtime': 7.20.1 '@babel/template': 7.18.10 '@discoveryjs/json-ext': 0.5.7 - '@ngtools/webpack': 15.0.0_5zngmbtjuimwhcm2k2vrvrqtg4 + '@ngtools/webpack': 15.0.0_2qp4owkmcvpl4vfm27b26llswm ansi-colors: 4.1.3 autoprefixer: 10.4.13_postcss@8.4.19 babel-loader: 9.1.0_npabyccmuonwo2rku4k53xo3hi @@ -3509,7 +3511,7 @@ packages: text-table: 0.2.0 tree-kill: 1.2.2 tslib: 2.4.1 - typescript: 4.8.4 + typescript: 4.9.5 webpack: 5.75.0_esbuild@0.15.13 webpack-dev-middleware: 5.3.3_webpack@5.75.0 webpack-dev-server: 4.11.1_webpack@5.75.0 @@ -3532,8 +3534,8 @@ packages: - webpack-cli dev: true - /@angular-devkit/build-angular/15.0.0_ovja46kpjfqakqqk4boxxohaai: - resolution: {integrity: sha512-sF8c4oewwpKPlLkMMDBIM/qQ+LQHv308JvyWV2VKaph3IWI2TZQP4n5024/XaFvBEz0/2sHDWTMcGTKlZ7ZC0w==} + /@angular-devkit/build-angular/15.1.4_lxvwtqumbnosanp4rqg2vthfci: + resolution: {integrity: sha512-+vubHYyQn8HJ+uJQndr8xFlX6C7y1kdnzTiKgx6QFvA5sd/IhXXzsnDd1wFer1lCrZ+1qgfhG9HI/RL3cBeKrA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: '@angular/compiler-cli': ^15.0.0 @@ -3544,7 +3546,7 @@ packages: ng-packagr: ^15.0.0 protractor: ^7.0.0 tailwindcss: ^2.0.0 || ^3.0.0 - typescript: ~4.8.2 + typescript: '>=4.8.2 <5.0' peerDependenciesMeta: '@angular/localize': optional: true @@ -3562,32 +3564,32 @@ packages: optional: true dependencies: '@ampproject/remapping': 2.2.0 - '@angular-devkit/architect': 0.1500.0_chokidar@3.5.3 - '@angular-devkit/build-webpack': 0.1500.0_oc46zsvsns3nh7f43oasdmifbu - '@angular-devkit/core': 15.0.0_chokidar@3.5.3 - '@angular/compiler-cli': 15.1.2_hkrohac3r5tzyiymw7onjymdfe - '@babel/core': 7.20.2 - '@babel/generator': 7.20.4 + '@angular-devkit/architect': 0.1501.4_chokidar@3.5.3 + '@angular-devkit/build-webpack': 0.1501.4_oc46zsvsns3nh7f43oasdmifbu + '@angular-devkit/core': 15.1.4_chokidar@3.5.3 + '@angular/compiler-cli': 15.1.2_qbb6prygfkdcmogcfoew4a7yfy + '@babel/core': 7.20.12 + '@babel/generator': 7.20.7 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.2 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.2 - '@babel/preset-env': 7.20.2_@babel+core@7.20.2 - '@babel/runtime': 7.20.1 - '@babel/template': 7.18.10 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.12 + '@babel/preset-env': 7.20.2_@babel+core@7.20.12 + '@babel/runtime': 7.20.7 + '@babel/template': 7.20.7 '@discoveryjs/json-ext': 0.5.7 - '@ngtools/webpack': 15.0.0_bjue2ethgri63kwe4dwyrlafsm + '@ngtools/webpack': 15.1.4_bjue2ethgri63kwe4dwyrlafsm ansi-colors: 4.1.3 - autoprefixer: 10.4.13_postcss@8.4.19 - babel-loader: 9.1.0_npabyccmuonwo2rku4k53xo3hi + autoprefixer: 10.4.13_postcss@8.4.21 + babel-loader: 9.1.2_la66t7xldg4uecmyawueag5wkm babel-plugin-istanbul: 6.1.1 browserslist: 4.21.4 - cacache: 17.0.2 + cacache: 17.0.4 chokidar: 3.5.3 copy-webpack-plugin: 11.0.0_webpack@5.75.0 critters: 0.0.16 - css-loader: 6.7.1_webpack@5.75.0 - esbuild-wasm: 0.15.13 + css-loader: 6.7.3_webpack@5.75.0 + esbuild-wasm: 0.16.17 glob: 8.0.3 https-proxy-agent: 5.0.1 inquirer: 8.2.4 @@ -3598,35 +3600,34 @@ packages: less-loader: 11.1.0_less@4.1.3+webpack@5.75.0 license-webpack-plugin: 4.0.2_webpack@5.75.0 loader-utils: 3.2.1 - magic-string: 0.26.7 - mini-css-extract-plugin: 2.6.1_webpack@5.75.0 - ng-packagr: 15.0.0_mhldeuutqtdyc5bpeklotyy3jm + magic-string: 0.27.0 + mini-css-extract-plugin: 2.7.2_webpack@5.75.0 + ng-packagr: 15.1.1_mhldeuutqtdyc5bpeklotyy3jm open: 8.4.0 ora: 5.4.1 parse5-html-rewriting-stream: 6.0.1 piscina: 3.2.0 - postcss: 8.4.19 - postcss-loader: 7.0.1_upg3rk2kpasnbk27hkqapxaxfq - regenerator-runtime: 0.13.10 + postcss: 8.4.21 + postcss-loader: 7.0.2_6jdsrmfenkuhhw3gx4zvjlznce resolve-url-loader: 5.0.0 rxjs: 6.6.7 - sass: 1.56.1 - sass-loader: 13.2.0_sass@1.56.1+webpack@5.75.0 + sass: 1.57.1 + sass-loader: 13.2.0_sass@1.57.1+webpack@5.75.0 semver: 7.3.8 source-map-loader: 4.0.1_webpack@5.75.0 source-map-support: 0.5.21 - terser: 5.15.1 + terser: 5.16.1 text-table: 0.2.0 tree-kill: 1.2.2 tslib: 2.4.1 typescript: 4.9.5 - webpack: 5.75.0_esbuild@0.15.13 - webpack-dev-middleware: 5.3.3_webpack@5.75.0 + webpack: 5.75.0_esbuild@0.16.17 + webpack-dev-middleware: 6.0.1_webpack@5.75.0 webpack-dev-server: 4.11.1_webpack@5.75.0 webpack-merge: 5.8.0 webpack-subresource-integrity: 5.1.0_webpack@5.75.0 optionalDependencies: - esbuild: 0.15.13 + esbuild: 0.16.17 transitivePeerDependencies: - '@swc/core' - bluebird @@ -3657,6 +3658,21 @@ packages: - chokidar dev: true + /@angular-devkit/build-webpack/0.1501.4_oc46zsvsns3nh7f43oasdmifbu: + resolution: {integrity: sha512-rJ7KTBDW0UHgVJjQ23qJfGun+pDX3ZG2z0OtsskdsOI62SAvW1cVLuS50ICTcWW6gtcDO0R/6Q1RLbaV1JHZ5A==} + engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + peerDependencies: + webpack: ^5.30.0 + webpack-dev-server: ^4.0.0 + dependencies: + '@angular-devkit/architect': 0.1501.4_chokidar@3.5.3 + rxjs: 6.6.7 + webpack: 5.75.0_esbuild@0.16.17 + webpack-dev-server: 4.11.1_webpack@5.75.0 + transitivePeerDependencies: + - chokidar + dev: true + /@angular-devkit/core/11.2.4: resolution: {integrity: sha512-98mGDV4XtKWiQ/2D6yzvOHrnJovXchaAN9AjscAHd2an8Fkiq72d9m2wREpk+2J40NWTDB6J5iesTh3qbi8+CA==} engines: {node: '>= 10.13.0', npm: ^6.11.0 || ^7.5.6, yarn: '>= 1.13.0'} @@ -3746,8 +3762,8 @@ packages: source-map: 0.7.4 dev: true - /@angular-devkit/core/15.1.2_chokidar@3.5.3: - resolution: {integrity: sha512-wkLZYvTZt30Ge6Z83Gxsr6mO1TIHCu3SImdE0zwW63EdU9o1NYkU74z1D9VUZ9Up7uHi1cHs/dssbxUuZ4eWOA==} + /@angular-devkit/core/15.1.4_chokidar@3.5.3: + resolution: {integrity: sha512-PW5MRmd9DHJR4FaXchwQtj9pXnsghSTnwRvfZeCRNYgU2sv0DKyTV+YTSJB+kNXnoPNG1Je6amDEkiXecpspXg==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: chokidar: ^3.5.2 @@ -3849,11 +3865,11 @@ packages: - chokidar dev: true - /@angular-devkit/schematics/15.1.2_chokidar@3.5.3: - resolution: {integrity: sha512-HjJPm+4SS5TdAHHvdpXLv25wsvwVOn5RYs0A9MazTndlm80ct3PKeYUgakNDRFjRj8uORNlJMKmQIIhUSDjFsw==} + /@angular-devkit/schematics/15.1.4_chokidar@3.5.3: + resolution: {integrity: sha512-jpddxo9Qd2yRQ1t9FLhAx5S+luz6HkyhDytq0LFKbxf9ikf1J4oy9riPBFl4pRmrNARWcHZ6GbD20/Ky8PjmXQ==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 15.1.2_chokidar@3.5.3 + '@angular-devkit/core': 15.1.4_chokidar@3.5.3 jsonc-parser: 3.2.0 magic-string: 0.27.0 ora: 5.4.1 @@ -3901,15 +3917,15 @@ packages: - supports-color dev: true - /@angular/cli/15.1.2_chokidar@3.5.3: - resolution: {integrity: sha512-h42k410W6PPnz9KjX8dCtruMqf1mHgIf7UWrLa8icKpk03U2SIgoJzaXgY/spSHiMGIdDnY1dAYKWV0GQS4zEg==} + /@angular/cli/15.1.4_chokidar@3.5.3: + resolution: {integrity: sha512-ebZiI4arb9wtOUMmTyUvjgDovmwpY8hmGLbkKZiEmAX8+2gbl4e97M+zd0SICZDU8bu5VcpoP6Q3Qb6vVjab9A==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true dependencies: - '@angular-devkit/architect': 0.1501.2_chokidar@3.5.3 - '@angular-devkit/core': 15.1.2_chokidar@3.5.3 - '@angular-devkit/schematics': 15.1.2_chokidar@3.5.3 - '@schematics/angular': 15.1.2_chokidar@3.5.3 + '@angular-devkit/architect': 0.1501.4_chokidar@3.5.3 + '@angular-devkit/core': 15.1.4_chokidar@3.5.3 + '@angular-devkit/schematics': 15.1.4_chokidar@3.5.3 + '@schematics/angular': 15.1.4_chokidar@3.5.3 '@yarnpkg/lockfile': 1.1.0 ansi-colors: 4.1.3 ini: 3.0.1 @@ -3930,31 +3946,31 @@ packages: - supports-color dev: true - /@angular/common/15.0.0_6bfwd3ph3sdhhp7azeptlw637y: + /@angular/common/15.0.0_udk3bsk46pcospqdnjcqej46we: resolution: {integrity: sha512-8NVZE4tSDFQ8YzCFb1BiDDfVdVDZWoP4Z35K0PcjpGromTFs3qKk/Ho0JCdmFTU+yfXLMZe/OsYZoE2mMKGChQ==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} peerDependencies: '@angular/core': 15.0.0 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/core': 15.0.0_rxjs@7.8.0+zone.js@0.12.0 - rxjs: 7.8.0 + '@angular/core': 15.0.0_rxjs@7.5.6+zone.js@0.12.0 + rxjs: 7.5.6 tslib: 2.4.1 dev: false - /@angular/common/15.0.0_udk3bsk46pcospqdnjcqej46we: - resolution: {integrity: sha512-8NVZE4tSDFQ8YzCFb1BiDDfVdVDZWoP4Z35K0PcjpGromTFs3qKk/Ho0JCdmFTU+yfXLMZe/OsYZoE2mMKGChQ==} + /@angular/common/15.1.2_77moedl5bs7lqwcv53ddrcqlqi: + resolution: {integrity: sha512-1Ra6EoaZjPcdDsGBge3qSajO1ECYceX+2EWHdjvJ9ZEIaXsLNFMQBUMgJnjsnrojs9Gd3bxJ0WHkahij5/8WNA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} peerDependencies: - '@angular/core': 15.0.0 + '@angular/core': 15.1.2 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/core': 15.0.0_rxjs@7.5.6+zone.js@0.12.0 - rxjs: 7.5.6 + '@angular/core': 15.1.2_rxjs@7.8.0+zone.js@0.12.0 + rxjs: 7.8.0 tslib: 2.4.1 dev: false - /@angular/compiler-cli/15.0.0_wi64dnikphprnhepyj5q2xqyru: + /@angular/compiler-cli/15.0.0_hkrohac3r5tzyiymw7onjymdfe: resolution: {integrity: sha512-q0NS3xLZAB/rak486lOqJd6IT1pIYsUBuYgPXyqjrq/iKt7t+T4juVZMJZpNZOxeBurPeGWpPpJ1Kn1BeqlAmQ==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} hasBin: true @@ -3972,13 +3988,13 @@ packages: semver: 7.3.7 sourcemap-codec: 1.4.8 tslib: 2.4.1 - typescript: 4.8.4 + typescript: 4.9.5 yargs: 17.5.1 transitivePeerDependencies: - supports-color dev: true - /@angular/compiler-cli/15.1.2_hkrohac3r5tzyiymw7onjymdfe: + /@angular/compiler-cli/15.1.2_qbb6prygfkdcmogcfoew4a7yfy: resolution: {integrity: sha512-gAqbQSKI4oeboh0UKsFdaEoST9IBVzqeckJzSTwAGxJeS33IM7Jjo3LViqHuzQyWKXe6srkci0LD4C2Mrj4kfQ==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} hasBin: true @@ -3986,7 +4002,7 @@ packages: '@angular/compiler': 15.1.2 typescript: '>=4.8.2 <5.0' dependencies: - '@angular/compiler': 15.0.0_@angular+core@15.0.0 + '@angular/compiler': 15.1.2_@angular+core@15.1.2 '@babel/core': 7.19.3 '@jridgewell/sourcemap-codec': 1.4.14 chokidar: 3.5.3 @@ -4011,7 +4027,19 @@ packages: '@angular/core': optional: true dependencies: - '@angular/core': 15.0.0_rxjs@7.8.0+zone.js@0.12.0 + '@angular/core': 15.0.0_rxjs@7.5.6+zone.js@0.12.0 + tslib: 2.4.1 + + /@angular/compiler/15.1.2_@angular+core@15.1.2: + resolution: {integrity: sha512-hKlr1i61a2Gl0h53goSSUbZmzNgdC1zAHu+Ws0+1Qfv9cDgg1aVphFGFMdV0kbjLV+k7LyFjj5EgWU48o5UXww==} + engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + peerDependencies: + '@angular/core': 15.1.2 + peerDependenciesMeta: + '@angular/core': + optional: true + dependencies: + '@angular/core': 15.1.2_rxjs@7.8.0+zone.js@0.12.0 tslib: 2.4.1 /@angular/core/15.0.0_rxjs@7.5.6+zone.js@0.12.0: @@ -4024,10 +4052,9 @@ packages: rxjs: 7.5.6 tslib: 2.4.1 zone.js: 0.12.0 - dev: false - /@angular/core/15.0.0_rxjs@7.8.0+zone.js@0.12.0: - resolution: {integrity: sha512-Hek8L/1XrU1LPN4qmKJiNdYz96ju/yPWvrFjqvrDHjWEenIfxjJohjRwL+ZzICZiEwfnR6y3QGvv4OBY96oTGw==} + /@angular/core/15.1.2_rxjs@7.8.0+zone.js@0.12.0: + resolution: {integrity: sha512-K9pz6Bq6RuY/OWhKLZT1JQvk4orvU9wozgXY8cZaOGmNCQQ7sJv5zGkO5csO6o1ON1v/AHowrP/FAF1i8tml5g==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} peerDependencies: rxjs: ^6.5.3 || ^7.4.0 @@ -4074,26 +4101,26 @@ packages: '@angular/core': 15.0.0 '@angular/platform-browser': 15.0.0 dependencies: - '@angular/common': 15.0.0_6bfwd3ph3sdhhp7azeptlw637y + '@angular/common': 15.0.0_udk3bsk46pcospqdnjcqej46we '@angular/compiler': 15.0.0_@angular+core@15.0.0 - '@angular/core': 15.0.0_rxjs@7.8.0+zone.js@0.12.0 - '@angular/platform-browser': 15.0.0_7psesmusmj4excifnjgc7jfosa + '@angular/core': 15.0.0_rxjs@7.5.6+zone.js@0.12.0 + '@angular/platform-browser': 15.0.0_qbiqfif4udibgvsmhnccc7le2y tslib: 2.4.1 dev: false - /@angular/platform-browser/15.0.0_7psesmusmj4excifnjgc7jfosa: - resolution: {integrity: sha512-N+Ct6c3gj17a/X5MDi+Zc3BFnHv0AnGQ5k5pvo3BasesEf0dmXSXzTtv28Z/gS5qFK/0i9h8QvfKrRsNSPM78A==} + /@angular/platform-browser-dynamic/15.1.2_nvxdb5l45salvpcyi4ujzyiawy: + resolution: {integrity: sha512-JBSRYeaW+Vb/lKXwxgrU8m42Avxjwmx8vGRp/krJfhh4KL9CJ84zf7Ldxb0sCv06kGdu6vbOUasNGDdgIQfdOQ==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} peerDependencies: - '@angular/animations': 15.0.0 - '@angular/common': 15.0.0 - '@angular/core': 15.0.0 - peerDependenciesMeta: - '@angular/animations': - optional: true + '@angular/common': 15.1.2 + '@angular/compiler': 15.1.2 + '@angular/core': 15.1.2 + '@angular/platform-browser': 15.1.2 dependencies: - '@angular/common': 15.0.0_6bfwd3ph3sdhhp7azeptlw637y - '@angular/core': 15.0.0_rxjs@7.8.0+zone.js@0.12.0 + '@angular/common': 15.1.2_77moedl5bs7lqwcv53ddrcqlqi + '@angular/compiler': 15.1.2_@angular+core@15.1.2 + '@angular/core': 15.1.2_rxjs@7.8.0+zone.js@0.12.0 + '@angular/platform-browser': 15.1.2_uv6uyeurdrzrhsp6bgc27pnjdu tslib: 2.4.1 dev: false @@ -4114,6 +4141,22 @@ packages: tslib: 2.4.1 dev: false + /@angular/platform-browser/15.1.2_uv6uyeurdrzrhsp6bgc27pnjdu: + resolution: {integrity: sha512-eWyfUOFZ05vB0UfPUTPK7pPJZjFtbGZlJOea3IUqEohuyRqq3CqYCrv7SVXGKQVOx1qRA0Ckr9FOB8/qYbTq1A==} + engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + peerDependencies: + '@angular/animations': 15.1.2 + '@angular/common': 15.1.2 + '@angular/core': 15.1.2 + peerDependenciesMeta: + '@angular/animations': + optional: true + dependencies: + '@angular/common': 15.1.2_77moedl5bs7lqwcv53ddrcqlqi + '@angular/core': 15.1.2_rxjs@7.8.0+zone.js@0.12.0 + tslib: 2.4.1 + dev: false + /@angular/router/15.0.0_od7x7eiknzykqzej2fiuwvnwva: resolution: {integrity: sha512-dm70pydJKmYsb52BWGeemfRHYUcizszAgCZ/XRfooS9t82dn7rr4f/Mz6bTPadT6sGCO/asOKLYo7gxeEZTQaQ==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} @@ -6946,6 +6989,10 @@ packages: resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} engines: {node: '>=6.9.0'} + /@babel/compat-data/7.20.14: + resolution: {integrity: sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==} + engines: {node: '>=6.9.0'} + /@babel/core/7.12.3: resolution: {integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==} engines: {node: '>=6.9.0'} @@ -7065,14 +7112,14 @@ packages: dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.3 - '@babel/helper-module-transforms': 7.20.2 - '@babel/helpers': 7.20.6 - '@babel/parser': 7.20.5 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/generator': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.19.3 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.13 + '@babel/parser': 7.20.15 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -7082,6 +7129,28 @@ packages: - supports-color dev: true + /@babel/core/7.20.12: + resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.13 + '@babel/parser': 7.20.15 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + /@babel/core/7.20.2: resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} engines: {node: '>=6.9.0'} @@ -7181,6 +7250,14 @@ packages: '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 + /@babel/generator/7.20.7: + resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + /@babel/helper-annotate-as-pure/7.16.7: resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} engines: {node: '>=6.9.0'} @@ -7231,14 +7308,14 @@ packages: browserslist: 4.20.2 semver: 6.3.0 - /@babel/helper-compilation-targets/7.17.7_@babel+core@7.20.5: + /@babel/helper-compilation-targets/7.17.7_@babel+core@7.20.12: resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.17.7 - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-validator-option': 7.16.7 browserslist: 4.20.2 semver: 6.3.0 @@ -7294,6 +7371,18 @@ packages: browserslist: 4.21.3 semver: 6.3.0 + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.20.12 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 + semver: 6.3.0 + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.20.5: resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} engines: {node: '>=6.9.0'} @@ -7305,6 +7394,7 @@ packages: '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.3 semver: 6.3.0 + dev: true /@babel/helper-compilation-targets/7.19.3_@babel+core@7.18.9: resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==} @@ -7318,14 +7408,14 @@ packages: browserslist: 4.21.4 semver: 6.3.0 - /@babel/helper-compilation-targets/7.19.3_@babel+core@7.20.5: + /@babel/helper-compilation-targets/7.19.3_@babel+core@7.20.12: resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.20.1 - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 @@ -7344,14 +7434,14 @@ packages: semver: 6.3.0 dev: false - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.3: + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.12: resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.20.1 - '@babel/core': 7.19.3 + '@babel/core': 7.20.12 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 @@ -7382,6 +7472,33 @@ packages: browserslist: 4.21.4 semver: 6.3.0 + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.19.3: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.14 + '@babel/core': 7.19.3 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + lru-cache: 5.1.1 + semver: 6.3.0 + dev: true + + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.14 + '@babel/core': 7.20.12 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + lru-cache: 5.1.1 + semver: 6.3.0 + /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.8: resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==} engines: {node: '>=6.9.0'} @@ -7434,13 +7551,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.20.5: + /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.20.12: resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.16.7 '@babel/helper-function-name': 7.16.7 @@ -7539,6 +7656,24 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-create-class-features-plugin/7.20.2_@babel+core@7.20.12: + resolution: {integrity: sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-split-export-declaration': 7.18.6 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-create-class-features-plugin/7.20.2_@babel+core@7.20.2: resolution: {integrity: sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==} engines: {node: '>=6.9.0'} @@ -7605,6 +7740,17 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.2.1 + /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.20.12: + resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.2.1 + dev: true + /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.20.5: resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==} engines: {node: '>=6.9.0'} @@ -7647,6 +7793,17 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.2.1 + /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.20.12: + resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.2.1 + dev: true + /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.20.5: resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==} engines: {node: '>=6.9.0'} @@ -7689,6 +7846,17 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.2.1 + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.20.12: + resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.2.1 + dev: true + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} engines: {node: '>=6.9.0'} @@ -7796,6 +7964,23 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.20.12: + resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.20.12 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/traverse': 7.18.9 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.20.5: resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} peerDependencies: @@ -7812,6 +7997,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.18.9: resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} @@ -7829,6 +8015,22 @@ packages: - supports-color dev: false + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12: + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.2: resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: @@ -8007,6 +8209,21 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-module-transforms/7.20.11: + resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-simple-access': 7.20.2 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 + transitivePeerDependencies: + - supports-color + /@babel/helper-module-transforms/7.20.2: resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} engines: {node: '>=6.9.0'} @@ -8083,6 +8300,21 @@ packages: - supports-color dev: false + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-wrap-function': 7.19.0 + '@babel/types': 7.20.5 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} @@ -8274,16 +8506,15 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helpers/7.20.1: - resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} + /@babel/helpers/7.20.13: + resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color - dev: true /@babel/helpers/7.20.6: resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==} @@ -8317,6 +8548,13 @@ packages: dependencies: '@babel/types': 7.20.2 + /@babel/parser/7.20.15: + resolution: {integrity: sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.20.7 + /@babel/parser/7.20.3: resolution: {integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==} engines: {node: '>=6.0.0'} @@ -8340,13 +8578,13 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.20.5: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -8389,6 +8627,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -8419,16 +8667,16 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.17.8 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.20.5: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.20.5 + '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.20.12 dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.5: @@ -8478,6 +8726,18 @@ packages: '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.9 dev: false + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.12 + dev: true + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} engines: {node: '>=6.9.0'} @@ -8514,16 +8774,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.20.5: + /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.20.12: resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-remap-async-to-generator': 7.16.8 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 transitivePeerDependencies: - supports-color dev: true @@ -8584,17 +8844,32 @@ packages: - supports-color dev: false - /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.20.5: + /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.20.12: resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.12: + resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 transitivePeerDependencies: - supports-color dev: true @@ -8628,6 +8903,21 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.8: resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} engines: {node: '>=6.9.0'} @@ -8640,14 +8930,14 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.20.5: + /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.16.7 transitivePeerDependencies: - supports-color @@ -8704,6 +8994,19 @@ packages: - supports-color dev: false + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -8742,16 +9045,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.20.5: + /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.20.12: resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 transitivePeerDependencies: - supports-color dev: true @@ -8811,6 +9114,20 @@ packages: - supports-color dev: false + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} @@ -8914,6 +9231,17 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.9 + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} engines: {node: '>=6.9.0'} @@ -8936,6 +9264,17 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} @@ -8987,15 +9326,15 @@ packages: '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.8 - /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.20.5: + /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 dev: true /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.5: @@ -9041,6 +9380,17 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} @@ -9072,15 +9422,15 @@ packages: '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.8 - /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.20.5: + /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 dev: true /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.5: @@ -9126,6 +9476,17 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} @@ -9157,15 +9518,15 @@ packages: '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.8 - /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.20.5: + /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 dev: true /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.5: @@ -9211,6 +9572,17 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} @@ -9242,15 +9614,15 @@ packages: '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8 - /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.20.5: + /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 dev: true /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.5: @@ -9296,6 +9668,17 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -9348,6 +9731,17 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.9 + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} engines: {node: '>=6.9.0'} @@ -9370,6 +9764,17 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} @@ -9427,18 +9832,18 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.18.9 - /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.20.5: + /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.20.12: resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.17.7 - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 dev: true /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.5: @@ -9496,18 +9901,32 @@ packages: '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.18.9 dev: false - /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.20.5: + /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.20.12: resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.19.4 - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.12 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.12: + resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.1 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.12 dev: true /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.2: @@ -9568,6 +9987,17 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.9 + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} engines: {node: '>=6.9.0'} @@ -9590,6 +10020,17 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} @@ -9622,16 +10063,16 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8 - /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.20.5: + /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.17.8: resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==} @@ -9667,6 +10108,18 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 + /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.20.12: + resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.20.5: resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==} engines: {node: '>=6.9.0'} @@ -9691,6 +10144,18 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} engines: {node: '>=6.9.0'} @@ -9726,14 +10191,14 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.20.5: + /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.20.12: resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.16.7 transitivePeerDependencies: - supports-color @@ -9790,6 +10255,19 @@ packages: - supports-color dev: false + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -9829,17 +10307,17 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.20.5: + /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.5 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 transitivePeerDependencies: - supports-color dev: true @@ -9903,6 +10381,21 @@ packages: - supports-color dev: false + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} @@ -9995,6 +10488,17 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} @@ -10049,6 +10553,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12: + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.2: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -10131,6 +10644,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12: + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.2: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: @@ -10176,6 +10698,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12: + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -10247,6 +10779,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: @@ -10307,6 +10848,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -10334,6 +10884,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==} engines: {node: '>=6.9.0'} @@ -10382,16 +10941,26 @@ packages: '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.20.5: + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.19.0 dev: true + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12: + resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} @@ -10476,6 +11045,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -10529,13 +11107,13 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.20.5: + /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.17.8: @@ -10557,6 +11135,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} @@ -10609,6 +11196,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12: + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -10659,6 +11255,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -10709,6 +11314,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12: + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -10767,6 +11381,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -10817,6 +11440,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -10867,6 +11499,14 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -10912,6 +11552,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12: + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -10968,6 +11618,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12: + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} @@ -11015,6 +11675,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==} engines: {node: '>=6.9.0'} @@ -11033,6 +11703,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.20.5: resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} engines: {node: '>=6.9.0'} @@ -11080,13 +11760,13 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -11129,6 +11809,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} @@ -11161,13 +11851,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.20.5: + /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.20.12: resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-remap-async-to-generator': 7.16.8 @@ -11230,6 +11920,20 @@ packages: - supports-color dev: false + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} @@ -11257,6 +11961,20 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.8: resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} engines: {node: '>=6.9.0'} @@ -11285,6 +12003,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} engines: {node: '>=6.9.0'} @@ -11305,6 +12033,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -11342,13 +12080,13 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -11391,6 +12129,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-block-scoping/7.20.2_@babel+core@7.20.12: + resolution: {integrity: sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-block-scoping/7.20.2_@babel+core@7.20.2: resolution: {integrity: sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==} engines: {node: '>=6.9.0'} @@ -11446,13 +12194,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-classes/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-classes/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.16.7 '@babel/helper-function-name': 7.16.7 @@ -11541,15 +12289,15 @@ packages: - supports-color dev: false - /@babel/plugin-transform-classes/7.19.0_@babel+core@7.20.5: + /@babel/plugin-transform-classes/7.19.0_@babel+core@7.20.12: resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.20.5 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.20.12 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-optimise-call-expression': 7.18.6 @@ -11561,6 +12309,26 @@ packages: - supports-color dev: true + /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.12: + resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.12 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.2: resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==} engines: {node: '>=6.9.0'} @@ -11609,13 +12377,13 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -11658,6 +12426,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} @@ -11695,13 +12473,13 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.20.5: + /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.20.12: resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -11744,16 +12522,26 @@ packages: '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/plugin-transform-destructuring/7.19.4_@babel+core@7.20.5: + /@babel/plugin-transform-destructuring/7.19.4_@babel+core@7.20.12: resolution: {integrity: sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.19.0 dev: true + /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.12: + resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.2: resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} engines: {node: '>=6.9.0'} @@ -11804,6 +12592,17 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.18.9 '@babel/helper-plugin-utils': 7.16.7 + /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} engines: {node: '>=6.9.0'} @@ -11846,6 +12645,17 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -11876,13 +12686,13 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -11925,6 +12735,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} @@ -11975,6 +12795,17 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} engines: {node: '>=6.9.0'} @@ -11997,6 +12828,17 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} @@ -12029,6 +12871,16 @@ packages: '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8 dev: true + /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.20.12 + /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} engines: {node: '>=6.9.0'} @@ -12057,13 +12909,13 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -12106,6 +12958,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.2: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} @@ -12159,6 +13021,18 @@ packages: '@babel/helper-function-name': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.20.12 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} engines: {node: '>=6.9.0'} @@ -12183,6 +13057,18 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.12 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} @@ -12215,13 +13101,13 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-literals/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-literals/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -12264,6 +13150,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} @@ -12311,6 +13207,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} engines: {node: '>=6.9.0'} @@ -12331,6 +13237,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -12363,13 +13279,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-transforms': 7.18.9 '@babel/helper-plugin-utils': 7.16.7 babel-plugin-dynamic-import-node: 2.3.3 @@ -12432,13 +13348,13 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-transforms': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 babel-plugin-dynamic-import-node: 2.3.3 @@ -12446,6 +13362,19 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.12: + resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} engines: {node: '>=6.9.0'} @@ -12485,13 +13414,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.20.5: + /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.20.12: resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-transforms': 7.18.9 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-simple-access': 7.17.7 @@ -12559,13 +13488,13 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-transforms': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-simple-access': 7.18.6 @@ -12574,6 +13503,20 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.12: + resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} engines: {node: '>=6.9.0'} @@ -12616,13 +13559,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.20.5: + /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.20.12: resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-module-transforms': 7.18.9 '@babel/helper-plugin-utils': 7.16.7 @@ -12695,13 +13638,13 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.20.5: + /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.20.12: resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 @@ -12711,6 +13654,21 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.12: + resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-identifier': 7.19.1 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} engines: {node: '>=6.9.0'} @@ -12752,13 +13710,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-transforms': 7.18.9 '@babel/helper-plugin-utils': 7.16.7 transitivePeerDependencies: @@ -12816,6 +13774,19 @@ packages: - supports-color dev: false + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} @@ -12850,14 +13821,14 @@ packages: '@babel/core': 7.17.8 '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.8 - /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.20.5: + /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.20.12: resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.20.12 dev: true /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.5: @@ -12903,6 +13874,17 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.20.12: + resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.20.2: resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} engines: {node: '>=6.9.0'} @@ -12933,13 +13915,13 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -12982,6 +13964,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} @@ -13038,6 +14030,19 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.18.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} engines: {node: '>=6.9.0'} @@ -13064,6 +14069,19 @@ packages: - supports-color dev: false + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.19.1 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} @@ -13116,13 +14134,13 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -13165,6 +14183,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.20.12: + resolution: {integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.20.2: resolution: {integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==} engines: {node: '>=6.9.0'} @@ -13212,6 +14240,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} engines: {node: '>=6.9.0'} @@ -13232,6 +14270,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -13298,6 +14346,15 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.5: resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} @@ -13335,14 +14392,14 @@ packages: '@babel/core': 7.18.9 '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.18.9 - /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.20.12 /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} @@ -13403,17 +14460,17 @@ packages: '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.18.9 '@babel/types': 7.18.9 - /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.20.5: + /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.20.12: resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.20.5 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.20.12 '@babel/types': 7.18.9 /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.18.9: @@ -13430,6 +14487,19 @@ packages: '@babel/types': 7.20.5 dev: false + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.12: + resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 + '@babel/types': 7.20.5 + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.5: resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} engines: {node: '>=6.9.0'} @@ -13474,13 +14544,13 @@ packages: '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-plugin-utils': 7.20.2 @@ -13514,13 +14584,13 @@ packages: '@babel/core': 7.17.8 regenerator-transform: 0.14.5 - /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 regenerator-transform: 0.14.5 dev: true @@ -13567,6 +14637,17 @@ packages: regenerator-transform: 0.15.0 dev: false + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + regenerator-transform: 0.15.0 + dev: true + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} @@ -13597,13 +14678,13 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -13646,6 +14727,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} @@ -13665,18 +14756,18 @@ packages: '@babel/core': 7.20.5 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-runtime/7.17.0_@babel+core@7.20.5: + /@babel/plugin-transform-runtime/7.17.0_@babel+core@7.20.12: resolution: {integrity: sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.20.5 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.20.5 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.20.5 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.20.12 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.20.12 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.20.12 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -13716,6 +14807,23 @@ packages: - supports-color dev: false + /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.12: + resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} engines: {node: '>=6.9.0'} @@ -13777,6 +14885,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} engines: {node: '>=6.9.0'} @@ -13797,6 +14915,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} @@ -13836,13 +14964,13 @@ packages: '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - /@babel/plugin-transform-spread/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-spread/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 dev: true @@ -13890,6 +15018,17 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 dev: false + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.12: + resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + dev: true + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} engines: {node: '>=6.9.0'} @@ -13939,6 +15078,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} engines: {node: '>=6.9.0'} @@ -13959,6 +15108,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -13996,13 +15155,13 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -14045,6 +15204,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} @@ -14073,13 +15242,13 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.20.5: + /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 dev: true @@ -14122,6 +15291,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} @@ -14181,16 +15360,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.20.5: + /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.20.12: resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.20.5 + '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.20.12 transitivePeerDependencies: - supports-color dev: true @@ -14209,6 +15388,20 @@ packages: - supports-color dev: false + /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.20.12: + resolution: {integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.20.5: resolution: {integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==} engines: {node: '>=6.9.0'} @@ -14278,6 +15471,16 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} engines: {node: '>=6.9.0'} @@ -14298,6 +15501,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12: + resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.2: resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} @@ -14348,6 +15561,17 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.9 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.20.5: resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} engines: {node: '>=6.9.0'} @@ -14370,6 +15594,17 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} @@ -14483,85 +15718,85 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-env/7.16.11_@babel+core@7.20.5: + /@babel/preset-env/7.16.11_@babel+core@7.20.12: resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.17.7 - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.20.5 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.20.5 - '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.5 - '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.20.5 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.20.5 - '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.20.5 - '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.20.5 - '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.20.5 - '@babel/preset-modules': 0.1.5_@babel+core@7.20.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.20.12 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.20.12 + '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.12 + '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.20.12 + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.20.12 + '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.20.12 + '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.20.12 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.12 '@babel/types': 7.17.0 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.20.5 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.20.5 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.20.5 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.20.12 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.20.12 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.20.12 core-js-compat: 3.21.1 semver: 6.3.0 transitivePeerDependencies: @@ -14911,86 +16146,172 @@ packages: - supports-color dev: false - /@babel/preset-env/7.19.4_@babel+core@7.20.5: + /@babel/preset-env/7.19.4_@babel+core@7.20.12: resolution: {integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.19.4 - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.20.5 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.20.5 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.20.5 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.5 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.5 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.5 - '@babel/preset-modules': 0.1.5_@babel+core@7.20.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.20.12 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.20.12 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.20.12 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.20.12 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.20.12 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.12 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.12 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.12 '@babel/types': 7.19.4 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.5 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.5 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.5 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 + core-js-compat: 3.25.5 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-env/7.20.2_@babel+core@7.20.12: + resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.1 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.12 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.12 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.12 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.12 + '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.12 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.20.12 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.12 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.12 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.12 + '@babel/types': 7.20.5 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 core-js-compat: 3.25.5 semver: 6.3.0 transitivePeerDependencies: @@ -15180,16 +16501,16 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8 dev: true - /@babel/preset-flow/7.16.7_@babel+core@7.20.5: + /@babel/preset-flow/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.20.5 + '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.20.12 /@babel/preset-modules/0.1.5_@babel+core@7.17.8: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -15228,6 +16549,19 @@ packages: '@babel/types': 7.20.5 esutils: 2.0.3 + /@babel/preset-modules/0.1.5_@babel+core@7.20.12: + resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 + '@babel/types': 7.20.5 + esutils: 2.0.3 + dev: true + /@babel/preset-modules/0.1.5_@babel+core@7.20.2: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: @@ -15296,19 +16630,19 @@ packages: '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.9 '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.18.9 - /@babel/preset-react/7.16.7_@babel+core@7.20.5: + /@babel/preset-react/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.20.5 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.20.12 /@babel/preset-react/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} @@ -15379,16 +16713,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-typescript/7.16.7_@babel+core@7.20.5: + /@babel/preset-typescript/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.20.5 + '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.20.12 transitivePeerDependencies: - supports-color dev: true @@ -15407,6 +16741,20 @@ packages: - supports-color dev: false + /@babel/preset-typescript/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-transform-typescript': 7.19.3_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/preset-typescript/7.18.6_@babel+core@7.20.5: resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} @@ -15486,6 +16834,13 @@ packages: dependencies: regenerator-runtime: 0.13.10 + /@babel/runtime/7.20.7: + resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.11 + dev: true + /@babel/template/7.16.7: resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} engines: {node: '>=6.9.0'} @@ -15510,6 +16865,14 @@ packages: '@babel/parser': 7.18.9 '@babel/types': 7.20.2 + /@babel/template/7.20.7: + resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.20.15 + '@babel/types': 7.20.7 + /@babel/traverse/7.17.3: resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==} engines: {node: '>=6.9.0'} @@ -15596,6 +16959,23 @@ packages: transitivePeerDependencies: - supports-color + /@babel/traverse/7.20.13: + resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.7 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.20.15 + '@babel/types': 7.20.7 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/traverse/7.20.5: resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==} engines: {node: '>=6.9.0'} @@ -15669,6 +17049,14 @@ packages: '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 + /@babel/types/7.20.7: + resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + /@base2/pretty-print-object/1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} @@ -17672,14 +19060,14 @@ packages: stylis: 4.1.3 dev: false - /@emotion/babel-plugin/11.10.5_@babel+core@7.20.5: + /@emotion/babel-plugin/11.10.5_@babel+core@7.20.12: resolution: {integrity: sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 '@babel/runtime': 7.20.1 '@emotion/hash': 0.9.0 '@emotion/memoize': 0.8.0 @@ -17711,14 +19099,14 @@ packages: stylis: 4.0.13 dev: false - /@emotion/babel-plugin/11.7.2_@babel+core@7.20.5: + /@emotion/babel-plugin/11.7.2_@babel+core@7.20.12: resolution: {integrity: sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-imports': 7.16.7 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.20.5 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.20.12 '@babel/runtime': 7.17.8 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.5 @@ -17795,7 +19183,7 @@ packages: '@emotion/utils': 1.2.0 dev: false - /@emotion/css/11.10.5_@babel+core@7.20.5: + /@emotion/css/11.10.5_@babel+core@7.20.12: resolution: {integrity: sha512-maJy0wG82hWsiwfJpc3WrYsyVwUbdu+sdIseKUB+/OLjB8zgc3tqkT6eO0Yt0AhIkJwGGnmMY/xmQwEAgQ4JHA==} peerDependencies: '@babel/core': ^7.0.0 @@ -17803,8 +19191,8 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.20.5 - '@emotion/babel-plugin': 11.10.5_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@emotion/babel-plugin': 11.10.5_@babel+core@7.20.12 '@emotion/cache': 11.10.5 '@emotion/serialize': 1.1.1 '@emotion/sheet': 1.2.1 @@ -17863,7 +19251,7 @@ packages: react: 17.0.2 dev: false - /@emotion/react/11.10.5_ocag5ie7gjuvrh3tafxbn74hti: + /@emotion/react/11.10.5_mk6db2egckiugg7v365a42dwcm: resolution: {integrity: sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==} peerDependencies: '@babel/core': ^7.0.0 @@ -17875,9 +19263,9 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/runtime': 7.20.1 - '@emotion/babel-plugin': 11.10.5_@babel+core@7.20.5 + '@emotion/babel-plugin': 11.10.5_@babel+core@7.20.12 '@emotion/cache': 11.10.5 '@emotion/serialize': 1.1.1 '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2 @@ -17888,7 +19276,7 @@ packages: react: 17.0.2 dev: false - /@emotion/react/11.8.2_qpyltmt7eqg3kkwslsanwllogq: + /@emotion/react/11.8.2_uxyt6yxd7k52w2brmbg65a2dw4: resolution: {integrity: sha512-+1bcHBaNJv5nkIIgnGKVsie3otS0wF9f1T1hteF3WeVvMNQEtfZ4YyFpnphGoot3ilU/wWMgP2SgIDuHLE/wAA==} peerDependencies: '@babel/core': ^7.0.0 @@ -17900,9 +19288,9 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/runtime': 7.18.3 - '@emotion/babel-plugin': 11.7.2_@babel+core@7.20.5 + '@emotion/babel-plugin': 11.7.2_@babel+core@7.20.12 '@emotion/cache': 11.7.1 '@emotion/serialize': 1.0.2 '@emotion/utils': 1.1.0 @@ -17975,7 +19363,7 @@ packages: babel-plugin-emotion: 10.2.2 react: 17.0.2 - /@emotion/styled/11.8.1_7al4caiehbpd3fwc5j37u6ghte: + /@emotion/styled/11.8.1_6pyqqf3gsgk64dc57nzribe7em: resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -17988,18 +19376,18 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/runtime': 7.18.3 - '@emotion/babel-plugin': 11.7.2_@babel+core@7.20.5 + '@emotion/babel-plugin': 11.7.2_@babel+core@7.20.12 '@emotion/is-prop-valid': 1.1.2 - '@emotion/react': 11.10.5_ocag5ie7gjuvrh3tafxbn74hti + '@emotion/react': 11.10.5_mk6db2egckiugg7v365a42dwcm '@emotion/serialize': 1.0.2 '@emotion/utils': 1.1.0 '@types/react': 17.0.53 react: 17.0.2 dev: false - /@emotion/styled/11.8.1_aleq7ve4hptaezxvbvcsphpvb4: + /@emotion/styled/11.8.1_nvzpjvd4u4t6xef4ctbu72flfm: resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -18012,11 +19400,11 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/runtime': 7.18.3 - '@emotion/babel-plugin': 11.7.2_@babel+core@7.20.5 + '@emotion/babel-plugin': 11.7.2_@babel+core@7.20.12 '@emotion/is-prop-valid': 1.1.2 - '@emotion/react': 11.8.2_qpyltmt7eqg3kkwslsanwllogq + '@emotion/react': 11.8.2_uxyt6yxd7k52w2brmbg65a2dw4 '@emotion/serialize': 1.0.2 '@emotion/utils': 1.1.0 '@types/react': 17.0.43 @@ -18114,6 +19502,15 @@ packages: dev: true optional: true + /@esbuild/android-arm/0.16.17: + resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + /@esbuild/android-arm/0.16.9: resolution: {integrity: sha512-kW5ccqWHVOOTGUkkJbtfoImtqu3kA1PFkivM+9QPFSHphPfPBlBalX9eDRqPK+wHCqKhU48/78T791qPgC9e9A==} engines: {node: '>=12'} @@ -18123,6 +19520,15 @@ packages: dev: true optional: true + /@esbuild/android-arm64/0.16.17: + resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + /@esbuild/android-arm64/0.16.9: resolution: {integrity: sha512-ndIAZJUeLx4O+4AJbFQCurQW4VRUXjDsUvt1L+nP8bVELOWdmdCEOtlIweCUE6P+hU0uxYbEK2AEP0n5IVQvhg==} engines: {node: '>=12'} @@ -18132,6 +19538,15 @@ packages: dev: true optional: true + /@esbuild/android-x64/0.16.17: + resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + /@esbuild/android-x64/0.16.9: resolution: {integrity: sha512-UbMcJB4EHrAVOnknQklREPgclNU2CPet2h+sCBCXmF2mfoYWopBn/CfTfeyOkb/JglOcdEADqAljFndMKnFtOw==} engines: {node: '>=12'} @@ -18141,6 +19556,15 @@ packages: dev: true optional: true + /@esbuild/darwin-arm64/0.16.17: + resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@esbuild/darwin-arm64/0.16.9: resolution: {integrity: sha512-d7D7/nrt4CxPul98lx4PXhyNZwTYtbdaHhOSdXlZuu5zZIznjqtMqLac8Bv+IuT6SVHiHUwrkL6ywD7mOgLW+A==} engines: {node: '>=12'} @@ -18150,6 +19574,15 @@ packages: dev: true optional: true + /@esbuild/darwin-x64/0.16.17: + resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@esbuild/darwin-x64/0.16.9: resolution: {integrity: sha512-LZc+Wlz06AkJYtwWsBM3x2rSqTG8lntDuftsUNQ3fCx9ZttYtvlDcVtgb+NQ6t9s6K5No5zutN3pcjZEC2a4iQ==} engines: {node: '>=12'} @@ -18159,6 +19592,15 @@ packages: dev: true optional: true + /@esbuild/freebsd-arm64/0.16.17: + resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/freebsd-arm64/0.16.9: resolution: {integrity: sha512-gIj0UQZlQo93CHYouHKkpzP7AuruSaMIm1etcWIxccFEVqCN1xDr6BWlN9bM+ol/f0W9w3hx3HDuEwcJVtGneQ==} engines: {node: '>=12'} @@ -18168,6 +19610,15 @@ packages: dev: true optional: true + /@esbuild/freebsd-x64/0.16.17: + resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/freebsd-x64/0.16.9: resolution: {integrity: sha512-GNors4vaMJ7lzGOuhzNc7jvgsQZqErGA8rsW+nck8N1nYu86CvsJW2seigVrQQWOV4QzEP8Zf3gm+QCjA2hnBQ==} engines: {node: '>=12'} @@ -18177,6 +19628,15 @@ packages: dev: true optional: true + /@esbuild/linux-arm/0.16.17: + resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-arm/0.16.9: resolution: {integrity: sha512-cNx1EF99c2t1Ztn0lk9N+MuwBijGF8mH6nx9GFsB3e0lpUpPkCE/yt5d+7NP9EwJf5uzqdjutgVYoH1SNqzudA==} engines: {node: '>=12'} @@ -18186,6 +19646,15 @@ packages: dev: true optional: true + /@esbuild/linux-arm64/0.16.17: + resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-arm64/0.16.9: resolution: {integrity: sha512-YPxQunReYp8RQ1FvexFrOEqqf+nLbS3bKVZF5FRT2uKM7Wio7BeATqAwO02AyrdSEntt3I5fhFsujUChIa8CZg==} engines: {node: '>=12'} @@ -18195,6 +19664,15 @@ packages: dev: true optional: true + /@esbuild/linux-ia32/0.16.17: + resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-ia32/0.16.9: resolution: {integrity: sha512-zb12ixDIKNwFpIqR00J88FFitVwOEwO78EiUi8wi8FXlmSc3GtUuKV/BSO+730Kglt0B47+ZrJN1BhhOxZaVrw==} engines: {node: '>=12'} @@ -18222,6 +19700,15 @@ packages: dev: true optional: true + /@esbuild/linux-loong64/0.16.17: + resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-loong64/0.16.9: resolution: {integrity: sha512-X8te4NLxtHiNT6H+4Pfm5RklzItA1Qy4nfyttihGGX+Koc53Ar20ViC+myY70QJ8PDEOehinXZj/F7QK3A+MKQ==} engines: {node: '>=12'} @@ -18231,6 +19718,15 @@ packages: dev: true optional: true + /@esbuild/linux-mips64el/0.16.17: + resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-mips64el/0.16.9: resolution: {integrity: sha512-ZqyMDLt02c5smoS3enlF54ndK5zK4IpClLTxF0hHfzHJlfm4y8IAkIF8LUW0W7zxcKy7oAwI7BRDqeVvC120SA==} engines: {node: '>=12'} @@ -18240,6 +19736,15 @@ packages: dev: true optional: true + /@esbuild/linux-ppc64/0.16.17: + resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-ppc64/0.16.9: resolution: {integrity: sha512-k+ca5W5LDBEF3lfDwMV6YNXwm4wEpw9krMnNvvlNz3MrKSD2Eb2c861O0MaKrZkG/buTQAP4vkavbLwgIe6xjg==} engines: {node: '>=12'} @@ -18249,6 +19754,15 @@ packages: dev: true optional: true + /@esbuild/linux-riscv64/0.16.17: + resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-riscv64/0.16.9: resolution: {integrity: sha512-GuInVdogjmg9DhgkEmNipHkC+3tzkanPJzgzTC2ihsvrruLyFoR1YrTGixblNSMPudQLpiqkcwGwwe0oqfrvfA==} engines: {node: '>=12'} @@ -18258,6 +19772,15 @@ packages: dev: true optional: true + /@esbuild/linux-s390x/0.16.17: + resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-s390x/0.16.9: resolution: {integrity: sha512-49wQ0aYkvwXonGsxc7LuuLNICMX8XtO92Iqmug5Qau0kpnV6SP34jk+jIeu4suHwAbSbRhVFtDv75yRmyfQcHw==} engines: {node: '>=12'} @@ -18267,6 +19790,15 @@ packages: dev: true optional: true + /@esbuild/linux-x64/0.16.17: + resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-x64/0.16.9: resolution: {integrity: sha512-Nx4oKEAJ6EcQlt4dK7qJyuZUoXZG7CAeY22R7rqZijFzwFfMOD+gLP56uV7RrV86jGf8PeRY8TBsRmOcZoG42w==} engines: {node: '>=12'} @@ -18276,6 +19808,15 @@ packages: dev: true optional: true + /@esbuild/netbsd-x64/0.16.17: + resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/netbsd-x64/0.16.9: resolution: {integrity: sha512-d0WnpgJ+FTiMZXEQ1NOv9+0gvEhttbgKEvVqWWAtl1u9AvlspKXbodKHzQ5MLP6YV1y52Xp+p8FMYqj8ykTahg==} engines: {node: '>=12'} @@ -18285,6 +19826,15 @@ packages: dev: true optional: true + /@esbuild/openbsd-x64/0.16.17: + resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/openbsd-x64/0.16.9: resolution: {integrity: sha512-jccK11278dvEscHFfMk5EIPjF4wv1qGD0vps7mBV1a6TspdR36O28fgPem/SA/0pcsCPHjww5ouCLwP+JNAFlw==} engines: {node: '>=12'} @@ -18294,6 +19844,15 @@ packages: dev: true optional: true + /@esbuild/sunos-x64/0.16.17: + resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + /@esbuild/sunos-x64/0.16.9: resolution: {integrity: sha512-OetwTSsv6mIDLqN7I7I2oX9MmHGwG+AP+wKIHvq+6sIHwcPPJqRx+DJB55jy9JG13CWcdcQno/7V5MTJ5a0xfQ==} engines: {node: '>=12'} @@ -18303,6 +19862,15 @@ packages: dev: true optional: true + /@esbuild/win32-arm64/0.16.17: + resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@esbuild/win32-arm64/0.16.9: resolution: {integrity: sha512-tKSSSK6unhxbGbHg+Cc+JhRzemkcsX0tPBvG0m5qsWbkShDK9c+/LSb13L18LWVdOQZwuA55Vbakxmt6OjBDOQ==} engines: {node: '>=12'} @@ -18312,6 +19880,15 @@ packages: dev: true optional: true + /@esbuild/win32-ia32/0.16.17: + resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@esbuild/win32-ia32/0.16.9: resolution: {integrity: sha512-ZTQ5vhNS5gli0KK8I6/s6+LwXmNEfq1ftjnSVyyNm33dBw8zDpstqhGXYUbZSWWLvkqiRRjgxgmoncmi6Yy7Ng==} engines: {node: '>=12'} @@ -18321,6 +19898,15 @@ packages: dev: true optional: true + /@esbuild/win32-x64/0.16.17: + resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@esbuild/win32-x64/0.16.9: resolution: {integrity: sha512-C4ZX+YFIp6+lPrru3tpH6Gaapy8IBRHw/e7l63fzGDhn/EaiGpQgbIlT5paByyy+oMvRFQoxxyvC4LE0AjJMqQ==} engines: {node: '>=12'} @@ -19015,52 +20601,7 @@ packages: - ts-node - utf-8-validate - /@jest/core/27.5.1_ts-node@7.0.1: - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/console': 27.5.1 - '@jest/reporters': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.11.13 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - emittery: 0.8.1 - exit: 0.1.2 - graceful-fs: 4.2.10 - jest-changed-files: 27.5.1 - jest-config: 27.5.1_ts-node@7.0.1 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-resolve-dependencies: 27.5.1 - jest-runner: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - jest-watcher: 27.5.1 - micromatch: 4.0.5 - rimraf: 3.0.2 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - - /@jest/core/27.5.1_ts-node@9.1.1: + /@jest/core/27.5.1_ts-node@10.9.1: resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -19081,7 +20622,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 27.5.1 - jest-config: 27.5.1_ts-node@9.1.1 + jest-config: 27.5.1_ts-node@10.9.1 jest-haste-map: 27.5.1 jest-message-util: 27.5.1 jest-regex-util: 27.5.1 @@ -20410,7 +21951,7 @@ packages: - debug dev: false - /@mantine/core/4.1.0_x46aqxej6irzqwrc3h5ps4rd6a: + /@mantine/core/4.1.0_n3u4m3zikqrlgvnttxvs7tpocy: resolution: {integrity: sha512-uEHGssKveDgGHhbBrgVqp8o12m0oQGLBKH3D8bkrca1GB905ZHuj8CG+i/ojBhqdalfUwqcYGRpwwALtD+XfJg==} peerDependencies: '@mantine/hooks': 4.1.0 @@ -20418,7 +21959,7 @@ packages: react-dom: '>=16.8.0' dependencies: '@mantine/hooks': 4.1.0_react@17.0.2 - '@mantine/styles': 4.1.0_rkg64escktrums3qkwbdabzlbe + '@mantine/styles': 4.1.0_ttjdmxhtyfhxbpfkd56ldyjbni '@popperjs/core': 2.11.4 '@radix-ui/react-scroll-area': 0.1.4_react@17.0.2 clsx: 1.1.1 @@ -20550,14 +22091,14 @@ packages: react-dom: 17.0.2_react@17.0.2 dev: false - /@mantine/styles/4.1.0_rkg64escktrums3qkwbdabzlbe: + /@mantine/styles/4.1.0_ttjdmxhtyfhxbpfkd56ldyjbni: resolution: {integrity: sha512-mWFNSE5DqE/5C9TDYIkQVbTef8QyWnW8a8MADHl6S52K0iGU8nqw4jnyozB+6y9JEIxdl+sp0o16L2JnAsq7bA==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: '@emotion/cache': 11.7.1 - '@emotion/react': 11.10.5_ocag5ie7gjuvrh3tafxbn74hti + '@emotion/react': 11.10.5_mk6db2egckiugg7v365a42dwcm '@emotion/serialize': 1.1.1 '@emotion/utils': 1.1.0 clsx: 1.1.1 @@ -20576,7 +22117,7 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@emotion/react': 11.8.2_qpyltmt7eqg3kkwslsanwllogq + '@emotion/react': 11.8.2_uxyt6yxd7k52w2brmbg65a2dw4 clsx: 1.1.1 csstype: 3.0.9 react: 17.0.2 @@ -21833,7 +23374,7 @@ packages: newrelic: 9.7.5 dev: false - /@ngtools/webpack/15.0.0_5zngmbtjuimwhcm2k2vrvrqtg4: + /@ngtools/webpack/15.0.0_2qp4owkmcvpl4vfm27b26llswm: resolution: {integrity: sha512-pI/Ul9mgE98bjPkUiNRLXIn3ulmUgJMD4Zj8RUUk55gTg3IJygyaag/l/C5e7StKMWygHdnvQgU63U360zqEiQ==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -21841,22 +23382,22 @@ packages: typescript: ~4.8.2 webpack: ^5.54.0 dependencies: - '@angular/compiler-cli': 15.0.0_wi64dnikphprnhepyj5q2xqyru - typescript: 4.8.4 + '@angular/compiler-cli': 15.0.0_hkrohac3r5tzyiymw7onjymdfe + typescript: 4.9.5 webpack: 5.75.0_esbuild@0.15.13 dev: true - /@ngtools/webpack/15.0.0_bjue2ethgri63kwe4dwyrlafsm: - resolution: {integrity: sha512-pI/Ul9mgE98bjPkUiNRLXIn3ulmUgJMD4Zj8RUUk55gTg3IJygyaag/l/C5e7StKMWygHdnvQgU63U360zqEiQ==} + /@ngtools/webpack/15.1.4_bjue2ethgri63kwe4dwyrlafsm: + resolution: {integrity: sha512-IvKXK8AvPlLkP99Uf0RL1EHlcsXNQd86II9HsLjupUtmFC/pPuDWrRFMP9bjWUMh2ZeYpgUeEAbcCH3doSrdIA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: '@angular/compiler-cli': ^15.0.0 - typescript: ~4.8.2 + typescript: '>=4.8.2 <5.0' webpack: ^5.54.0 dependencies: - '@angular/compiler-cli': 15.1.2_hkrohac3r5tzyiymw7onjymdfe + '@angular/compiler-cli': 15.1.2_qbb6prygfkdcmogcfoew4a7yfy typescript: 4.9.5 - webpack: 5.75.0_esbuild@0.15.13 + webpack: 5.75.0_esbuild@0.16.17 dev: true /@nodelib/fs.scandir/2.1.5: @@ -22195,7 +23736,7 @@ packages: - typescript dev: true - /@nrwl/eslint-plugin-nx/13.10.6_fkaxtw3iwc36oe2k5ldj4prhim: + /@nrwl/eslint-plugin-nx/13.10.6_sbod56dxmv36jb46oeyep6liwq: resolution: {integrity: sha512-vZ7m0cJsiNZTyllm86fQnw3fVSmNK/11RIaymHttNVgVAHCPH/uZ22XZ1fNMagNcbY/MVEPIpfrHJwiG0uxkng==} peerDependencies: '@typescript-eslint/parser': ~5.18.0 @@ -22205,7 +23746,7 @@ packages: optional: true dependencies: '@nrwl/devkit': 13.10.6_nx@14.5.10 - '@nrwl/workspace': 13.10.6_ytufk5dow5t2kzcvjl63xtkwwa + '@nrwl/workspace': 13.10.6_p7jts4dkwrs72euapyxm2hnvs4 '@typescript-eslint/experimental-utils': 5.18.0_jofidmxrjzhj7l6vknpw5ecvfe '@typescript-eslint/parser': 5.29.0_jofidmxrjzhj7l6vknpw5ecvfe chalk: 4.1.0 @@ -22224,7 +23765,7 @@ packages: - utf-8-validate dev: true - /@nrwl/jest/13.10.6_nx@13.10.6+ts-node@9.1.1: + /@nrwl/jest/13.10.6_nx@13.10.6+ts-node@10.9.1: resolution: {integrity: sha512-Mw3+yWQUxMY6ljADV84LaNWWX7w0R53FBem8RGPfRMsxP6YHej3sUAJbZDZVP3XVj5lD2I/k5Y+rbW1aEW4SQg==} dependencies: '@jest/reporters': 27.2.2 @@ -22232,7 +23773,7 @@ packages: '@nrwl/devkit': 13.10.6_nx@13.10.6 chalk: 4.1.0 identity-obj-proxy: 3.0.0 - jest-config: 27.2.2_ts-node@9.1.1 + jest-config: 27.2.2_ts-node@10.9.1 jest-resolve: 27.2.2 jest-util: 27.2.0 resolve.exports: 1.1.0 @@ -22248,7 +23789,7 @@ packages: - utf-8-validate dev: true - /@nrwl/jest/13.10.6_nx@14.5.10+ts-node@9.1.1: + /@nrwl/jest/13.10.6_nx@14.5.10+ts-node@10.9.1: resolution: {integrity: sha512-Mw3+yWQUxMY6ljADV84LaNWWX7w0R53FBem8RGPfRMsxP6YHej3sUAJbZDZVP3XVj5lD2I/k5Y+rbW1aEW4SQg==} dependencies: '@jest/reporters': 27.2.2 @@ -22256,7 +23797,7 @@ packages: '@nrwl/devkit': 13.10.6_nx@14.5.10 chalk: 4.1.0 identity-obj-proxy: 3.0.0 - jest-config: 27.2.2_ts-node@9.1.1 + jest-config: 27.2.2_ts-node@10.9.1 jest-resolve: 27.2.2 jest-util: 27.2.0 resolve.exports: 1.1.0 @@ -22272,7 +23813,7 @@ packages: - utf-8-validate dev: true - /@nrwl/linter/13.10.6_f7pzrhfctnesxmnbiwt5xcr6ki: + /@nrwl/linter/13.10.6_ccojlplf2d2dfww3ulngiv377i: resolution: {integrity: sha512-c7gtXu4ewjc6ylp0anAt6eaWWxmqrt0CqBfzEK9vYkETN4/WUcr6Y/nNzpnvvhM9PuCEBH7QTizz/r1imRmLJQ==} peerDependencies: eslint: ^8.0.0 @@ -22280,8 +23821,8 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 13.10.6_nx@14.5.10 - '@nrwl/jest': 13.10.6_nx@14.5.10+ts-node@9.1.1 + '@nrwl/devkit': 13.10.6_nx@13.10.6 + '@nrwl/jest': 13.10.6_nx@13.10.6+ts-node@10.9.1 '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 eslint: 7.32.0 tmp: 0.2.1 @@ -22297,7 +23838,7 @@ packages: - utf-8-validate dev: true - /@nrwl/linter/13.10.6_rs5gdypfcmhvym3lqchiuhdbcq: + /@nrwl/linter/13.10.6_sifbhchsd562o4dkysdeyelsei: resolution: {integrity: sha512-c7gtXu4ewjc6ylp0anAt6eaWWxmqrt0CqBfzEK9vYkETN4/WUcr6Y/nNzpnvvhM9PuCEBH7QTizz/r1imRmLJQ==} peerDependencies: eslint: ^8.0.0 @@ -22305,8 +23846,8 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 13.10.6_nx@13.10.6 - '@nrwl/jest': 13.10.6_nx@13.10.6+ts-node@9.1.1 + '@nrwl/devkit': 13.10.6_nx@14.5.10 + '@nrwl/jest': 13.10.6_nx@14.5.10+ts-node@10.9.1 '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 eslint: 7.32.0 tmp: 0.2.1 @@ -22368,7 +23909,7 @@ packages: - debug dev: true - /@nrwl/workspace/13.10.6_ytufk5dow5t2kzcvjl63xtkwwa: + /@nrwl/workspace/13.10.6_p7jts4dkwrs72euapyxm2hnvs4: resolution: {integrity: sha512-BtAlkNdf+cxcq65Trpo+ob5ez7fVDVTUGnlIyIPQ33p5Ge4sp9/0zTlUTBSJRusyLYAIHhpRTGf7w/WcV063/Q==} peerDependencies: prettier: ^2.5.1 @@ -22377,8 +23918,8 @@ packages: optional: true dependencies: '@nrwl/devkit': 13.10.6_nx@13.10.6 - '@nrwl/jest': 13.10.6_nx@13.10.6+ts-node@9.1.1 - '@nrwl/linter': 13.10.6_rs5gdypfcmhvym3lqchiuhdbcq + '@nrwl/jest': 13.10.6_nx@13.10.6+ts-node@10.9.1 + '@nrwl/linter': 13.10.6_ccojlplf2d2dfww3ulngiv377i '@parcel/watcher': 2.0.4 chalk: 4.1.0 chokidar: 3.5.3 @@ -23471,8 +25012,8 @@ packages: rollup: 3.7.3 dev: true - /@rollup/plugin-json/5.0.1_rollup@3.3.0: - resolution: {integrity: sha512-QCwhZZLvM8nRcTHyR1vOgyTMiAnjiNj1ebD/BMRvbO1oc/z14lZH6PfxXeegee2B6mky/u9fia4fxRM4TqrUaw==} + /@rollup/plugin-json/6.0.0_rollup@3.7.3: + resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0 @@ -23480,8 +25021,8 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.3.0 - rollup: 3.3.0 + '@rollup/pluginutils': 5.0.2_rollup@3.7.3 + rollup: 3.7.3 dev: true /@rollup/plugin-node-resolve/11.2.1_rollup@2.77.2: @@ -23498,24 +25039,6 @@ packages: resolve: 1.22.1 rollup: 2.77.2 - /@rollup/plugin-node-resolve/15.0.1_rollup@3.3.0: - resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0 - peerDependenciesMeta: - rollup: - optional: true - dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.3.0 - '@types/resolve': 1.20.2 - deepmerge: 4.2.2 - is-builtin-module: 3.2.0 - is-module: 1.0.0 - resolve: 1.22.1 - rollup: 3.3.0 - dev: true - /@rollup/plugin-node-resolve/15.0.1_rollup@3.7.3: resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} engines: {node: '>=14.0.0'} @@ -23639,18 +25162,6 @@ packages: picomatch: 2.3.1 rollup: 2.77.2 - /@rollup/pluginutils/3.1.0_rollup@3.3.0: - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.3.1 - rollup: 3.3.0 - dev: true - /@rollup/pluginutils/3.1.0_rollup@3.7.3: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} @@ -23663,21 +25174,6 @@ packages: rollup: 3.7.3 dev: true - /@rollup/pluginutils/5.0.2_rollup@3.3.0: - resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0 - peerDependenciesMeta: - rollup: - optional: true - dependencies: - '@types/estree': 1.0.0 - estree-walker: 2.0.2 - picomatch: 2.3.1 - rollup: 3.3.0 - dev: true - /@rollup/pluginutils/5.0.2_rollup@3.7.3: resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} engines: {node: '>=14.0.0'} @@ -23728,12 +25224,12 @@ packages: - chokidar dev: true - /@schematics/angular/15.1.2_chokidar@3.5.3: - resolution: {integrity: sha512-PcAbjbWvaW3yKvcGCqHrlHm4BTwGuqr58czCASc49Hy6tJba+dRblYatzB0D1tzdJOTsa684Ghg7knCN86fHeg==} + /@schematics/angular/15.1.4_chokidar@3.5.3: + resolution: {integrity: sha512-4SV8dDGZeSvts01b8y2W6FmpDD0dQhBlGMhMJKC/tUnhfNKfYCs2VKtMBsIc3ZiGP2yoA3+nUiMmtS6hEkXYHw==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 15.1.2_chokidar@3.5.3 - '@angular-devkit/schematics': 15.1.2_chokidar@3.5.3 + '@angular-devkit/core': 15.1.4_chokidar@3.5.3 + '@angular-devkit/schematics': 15.1.4_chokidar@3.5.3 jsonc-parser: 3.2.0 transitivePeerDependencies: - chokidar @@ -25556,7 +27052,7 @@ packages: '@storybook/node-logger': 6.4.19 '@storybook/postinstall': 6.4.19 '@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m - '@storybook/react': 6.4.21_hbm3t5634ikvlrv7alx2gv6vkm + '@storybook/react': 6.4.21_yhub4ygavw57xa3uqe4k2wd3ji '@storybook/source-loader': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m @@ -25713,7 +27209,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.4.19_47iqxj5iozjgqrbctm5xbfsyvi: + /@storybook/addon-essentials/6.4.19_e36mvjwfyx7yr6tmxte2zzv6vi: resolution: {integrity: sha512-vbV8sjepMVEuwhTDBHjO3E6vXluG7RiEeozV1QVuS9lGhjQdvUPdZ9rDNUcP6WHhTdEkS/ffTMaGIy1v8oZd7g==} peerDependencies: '@babel/core': ^7.9.6 @@ -25738,7 +27234,7 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@storybook/addon-actions': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 '@storybook/addon-backgrounds': 6.4.19_wxl36ivhwrw5jb3pb2jgvmgjq4 '@storybook/addon-controls': 6.4.19_n7ghqshvmroqkfrgzlr362wm3m @@ -25750,7 +27246,7 @@ packages: '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m '@storybook/node-logger': 6.4.19 - babel-loader: 8.2.5_gpskmlezowwcvhzq2343rdwc4m + babel-loader: 8.2.5_fzlwazi7nboub3int6sfk7gbca core-js: 3.21.1 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 @@ -28298,7 +29794,7 @@ packages: dependencies: core-js: 3.24.0 - /@storybook/preset-create-react-app/4.1.0_toosg7fcpy2dyvp4r6gagkuwny: + /@storybook/preset-create-react-app/4.1.0_wc2heeo5pv4ilbxedgirnwbb7y: resolution: {integrity: sha512-xMQlWhT8qHBnfrep4g+f2UFndpAiYnhkilHaf081eA9hsnSlj7Z9WKgHC5n09jBhfZpgL5Zf7Mx3lNwhHoEXBw==} peerDependencies: '@babel/core': '*' @@ -28306,10 +29802,10 @@ packages: '@storybook/react': '>=5.2' react-scripts: '>=3.0.0' dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_prxwy2zxcolvdag5hfkyuqbcze '@storybook/node-logger': 6.4.19 - '@storybook/react': 6.4.21_hbm3t5634ikvlrv7alx2gv6vkm + '@storybook/react': 6.4.21_yhub4ygavw57xa3uqe4k2wd3ji '@storybook/react-docgen-typescript-plugin': 1.0.2--canary.7.324a727c65a1819f7f3ede5abc1f32d440e4530a.0_63xtaxbd5aftweb5kajvrft2fm '@types/babel__core': 7.1.19 babel-plugin-react-docgen: 4.2.1 @@ -28416,7 +29912,7 @@ packages: transitivePeerDependencies: - supports-color - /@storybook/react/6.4.21_hbm3t5634ikvlrv7alx2gv6vkm: + /@storybook/react/6.4.21_vu2vux4jkgbzndrkpyhaw2fwzq: resolution: {integrity: sha512-7SJJnEbZ5THQBjor37shxnhXiFTB7g46U68I/PY56A5ZLb4TkorKStrniKgTcxG9xNqQjyxm0S6CICUp9gn8PQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -28431,13 +29927,13 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.20.5 - '@babel/preset-flow': 7.16.7_@babel+core@7.20.5 - '@babel/preset-react': 7.16.7_@babel+core@7.20.5 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_bel723r3ncw6p4u5xohjva2kru + '@babel/core': 7.17.8 + '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_a3gyllrqvxpec3fpybsrposvju '@storybook/addons': 6.4.21_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core': 6.4.21_xu24havzx2zt2non7xfg2m5f24 - '@storybook/core-common': 6.4.21_3okb5bdjyyeqqpgf7ptkihrkey + '@storybook/core': 6.4.21_4igbjziew4e4emyhbyoso53lwi + '@storybook/core-common': 6.4.21_jgxnvbe4faw3ohf4h6p42qq6oy '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.21 '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_evijigonbo4skk2vlqtwtdqibu @@ -28445,7 +29941,7 @@ packages: '@storybook/store': 6.4.21_sfoxds7t5ydpegc3knd667wn6m '@types/webpack-env': 1.16.3 babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.8_@babel+core@7.20.5 + babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 babel-plugin-react-docgen: 4.2.1 core-js: 3.21.1 global: 4.4.0 @@ -28478,8 +29974,9 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve + dev: true - /@storybook/react/6.4.21_vu2vux4jkgbzndrkpyhaw2fwzq: + /@storybook/react/6.4.21_yhub4ygavw57xa3uqe4k2wd3ji: resolution: {integrity: sha512-7SJJnEbZ5THQBjor37shxnhXiFTB7g46U68I/PY56A5ZLb4TkorKStrniKgTcxG9xNqQjyxm0S6CICUp9gn8PQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -28494,13 +29991,13 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.17.8 - '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_a3gyllrqvxpec3fpybsrposvju + '@babel/core': 7.20.12 + '@babel/preset-flow': 7.16.7_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.4_bel723r3ncw6p4u5xohjva2kru '@storybook/addons': 6.4.21_sfoxds7t5ydpegc3knd667wn6m - '@storybook/core': 6.4.21_4igbjziew4e4emyhbyoso53lwi - '@storybook/core-common': 6.4.21_jgxnvbe4faw3ohf4h6p42qq6oy + '@storybook/core': 6.4.21_xu24havzx2zt2non7xfg2m5f24 + '@storybook/core-common': 6.4.21_3okb5bdjyyeqqpgf7ptkihrkey '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.21 '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_evijigonbo4skk2vlqtwtdqibu @@ -28508,7 +30005,7 @@ packages: '@storybook/store': 6.4.21_sfoxds7t5ydpegc3knd667wn6m '@types/webpack-env': 1.16.3 babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 + babel-plugin-named-asset-import: 0.3.8_@babel+core@7.20.12 babel-plugin-react-docgen: 4.2.1 core-js: 3.21.1 global: 4.4.0 @@ -28541,7 +30038,6 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: true /@storybook/router/6.4.19_sfoxds7t5ydpegc3knd667wn6m: resolution: {integrity: sha512-KWWwIzuyeEIWVezkCihwY2A76Il9tUNg0I410g9qT7NrEsKyqXGRYOijWub7c1GGyNjLqz0jtrrehtixMcJkuA==} @@ -33186,6 +34682,22 @@ packages: postcss-value-parser: 4.2.0 dev: true + /autoprefixer/10.4.13_postcss@8.4.21: + resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.21.4 + caniuse-lite: 1.0.30001434 + fraction.js: 4.2.0 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + /autoprefixer/10.4.7_postcss@8.4.14: resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==} engines: {node: ^10 || ^12 || >=14} @@ -33556,14 +35068,14 @@ packages: webpack: 5.72.1 dev: false - /babel-loader/8.2.5_gpskmlezowwcvhzq2343rdwc4m: + /babel-loader/8.2.5_fzlwazi7nboub3int6sfk7gbca: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 find-cache-dir: 3.3.2 loader-utils: 2.0.2 make-dir: 3.1.0 @@ -33598,6 +35110,19 @@ packages: webpack: 5.75.0_esbuild@0.15.13 dev: true + /babel-loader/9.1.2_la66t7xldg4uecmyawueag5wkm: + resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@babel/core': ^7.12.0 + webpack: '>=5' + dependencies: + '@babel/core': 7.20.12 + find-cache-dir: 3.3.2 + schema-utils: 4.0.0 + webpack: 5.75.0_esbuild@0.16.17 + dev: true + /babel-plugin-add-react-displayname/0.0.5: resolution: {integrity: sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=} @@ -33723,12 +35248,12 @@ packages: dependencies: '@babel/core': 7.18.9 - /babel-plugin-named-asset-import/0.3.8_@babel+core@7.20.5: + /babel-plugin-named-asset-import/0.3.8_@babel+core@7.20.12: resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} peerDependencies: '@babel/core': ^7.1.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.8: resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} @@ -33767,6 +35292,18 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.20.12: + resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.20.12 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.20.5: resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} peerDependencies: @@ -33778,6 +35315,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.18.9: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} @@ -33792,6 +35330,19 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.1 + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.2: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: @@ -33873,6 +35424,17 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.20.12: + resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.20.12 + core-js-compat: 3.23.2 + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.20.5: resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} peerDependencies: @@ -33883,6 +35445,7 @@ packages: core-js-compat: 3.23.2 transitivePeerDependencies: - supports-color + dev: true /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.18.9: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} @@ -33896,6 +35459,18 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + core-js-compat: 3.25.5 + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.2: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: @@ -33950,6 +35525,16 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.20.12: + resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.20.5: resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} peerDependencies: @@ -33959,6 +35544,7 @@ packages: '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.20.5 transitivePeerDependencies: - supports-color + dev: true /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.18.9: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} @@ -33971,6 +35557,17 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.2: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: @@ -35043,6 +36640,27 @@ packages: - bluebird dev: true + /cacache/17.0.4: + resolution: {integrity: sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@npmcli/fs': 3.1.0 + fs-minipass: 3.0.1 + glob: 8.0.3 + lru-cache: 7.12.0 + minipass: 4.0.0 + minipass-collect: 1.0.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + p-map: 4.0.0 + promise-inflight: 1.0.1 + ssri: 10.0.1 + tar: 6.1.11 + unique-filename: 3.0.0 + transitivePeerDependencies: + - bluebird + dev: true + /cache-base/1.0.1: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} engines: {node: '>=0.10.0'} @@ -36552,7 +38170,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.0.0 serialize-javascript: 6.0.0 - webpack: 5.75.0_esbuild@0.15.13 + webpack: 5.75.0_esbuild@0.16.17 dev: true /core-js-compat/3.21.1: @@ -37432,6 +39050,23 @@ packages: webpack: 5.75.0_esbuild@0.15.13 dev: true + /css-loader/6.7.3_webpack@5.75.0: + resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + dependencies: + icss-utils: 5.1.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.21 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.21 + postcss-modules-scope: 3.0.0_postcss@8.4.21 + postcss-modules-values: 4.0.0_postcss@8.4.21 + postcss-value-parser: 4.2.0 + semver: 7.3.8 + webpack: 5.75.0_esbuild@0.16.17 + dev: true + /css-minimizer-webpack-plugin/3.4.1_sdbgxxtsnppj6w4tv6vkiaouum: resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} engines: {node: '>= 12.13.0'} @@ -38825,11 +40460,6 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /diff/3.5.0: - resolution: {integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==} - engines: {node: '>=0.3.1'} - dev: true - /diff/4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} @@ -39931,6 +41561,12 @@ packages: hasBin: true dev: true + /esbuild-wasm/0.16.17: + resolution: {integrity: sha512-Tn7NuMqRcM+T/qCOxbQRq0qrwWl1sUWp6ARfJRakE8Bepew6zata4qrKgH2YqovNC5e/2fcTa7o+VL/FAOZC1Q==} + engines: {node: '>=12'} + hasBin: true + dev: true + /esbuild-windows-32/0.15.13: resolution: {integrity: sha512-XoF2iBf0wnqo16SDq+aDGi/+QbaLFpkiRarPVssMh9KYbFNCqPLlGAWwDvxEVz+ywX6Si37J2AKm+AXq1kC0JA==} engines: {node: '>=12'} @@ -40045,6 +41681,36 @@ packages: esbuild-windows-arm64: 0.15.14 dev: true + /esbuild/0.16.17: + resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.16.17 + '@esbuild/android-arm64': 0.16.17 + '@esbuild/android-x64': 0.16.17 + '@esbuild/darwin-arm64': 0.16.17 + '@esbuild/darwin-x64': 0.16.17 + '@esbuild/freebsd-arm64': 0.16.17 + '@esbuild/freebsd-x64': 0.16.17 + '@esbuild/linux-arm': 0.16.17 + '@esbuild/linux-arm64': 0.16.17 + '@esbuild/linux-ia32': 0.16.17 + '@esbuild/linux-loong64': 0.16.17 + '@esbuild/linux-mips64el': 0.16.17 + '@esbuild/linux-ppc64': 0.16.17 + '@esbuild/linux-riscv64': 0.16.17 + '@esbuild/linux-s390x': 0.16.17 + '@esbuild/linux-x64': 0.16.17 + '@esbuild/netbsd-x64': 0.16.17 + '@esbuild/openbsd-x64': 0.16.17 + '@esbuild/sunos-x64': 0.16.17 + '@esbuild/win32-arm64': 0.16.17 + '@esbuild/win32-ia32': 0.16.17 + '@esbuild/win32-x64': 0.16.17 + dev: true + /esbuild/0.16.9: resolution: {integrity: sha512-gkH83yHyijMSZcZFs1IWew342eMdFuWXmQo3zkDPTre25LIPBJsXryg02M3u8OpTwCJdBkdaQwqKkDLnAsAeLQ==} engines: {node: '>=12'} @@ -40440,8 +42106,8 @@ packages: '@babel/plugin-transform-react-jsx': ^7.14.9 eslint: ^8.1.0 dependencies: - '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 + '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.12 eslint: 8.20.0 lodash: 4.17.21 string-natural-compare: 3.0.1 @@ -42988,8 +44654,8 @@ packages: dependencies: minipass: 3.1.6 - /fs-minipass/3.0.0: - resolution: {integrity: sha512-EUojgQaSPy6sxcqcZgQv6TVF6jiKvurji3AxhAivs/Ep4O1UpS8TusaxpybfFHZ2skRhLqzk6WR8nqNYIMMDeA==} + /fs-minipass/3.0.1: + resolution: {integrity: sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minipass: 4.0.0 @@ -44870,6 +46536,15 @@ packages: dependencies: postcss: 8.4.19 + /icss-utils/5.1.0_postcss@8.4.21: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.21 + dev: true + /idb/6.1.5: resolution: {integrity: sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==} @@ -45216,7 +46891,7 @@ packages: mute-stream: 0.0.8 ora: 5.4.1 run-async: 2.4.1 - rxjs: 7.5.6 + rxjs: 7.8.0 string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 @@ -46358,7 +48033,7 @@ packages: - ts-node - utf-8-validate - /jest-cli/27.5.1_ts-node@7.0.1: + /jest-cli/27.5.1_ts-node@10.9.1: resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -46368,44 +48043,14 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@7.0.1 + '@jest/core': 27.5.1_ts-node@10.9.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 27.5.1_ts-node@7.0.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - prompts: 2.4.2 - yargs: 16.2.0 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - - /jest-cli/27.5.1_ts-node@9.1.1: - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 27.5.1_ts-node@9.1.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.10 - import-local: 3.1.0 - jest-config: 27.5.1_ts-node@9.1.1 + jest-config: 27.5.1_ts-node@10.9.1 jest-util: 27.5.1 jest-validate: 27.5.1 prompts: 2.4.2 @@ -46507,7 +48152,7 @@ packages: - supports-color - utf-8-validate - /jest-config/27.2.2_ts-node@9.1.1: + /jest-config/27.2.2_ts-node@10.9.1: resolution: {integrity: sha512-2nhms3lp52ZpU0636bB6zIFHjDVtYxzFQIOHZjBFUeXcb6b41sEkWojbHaJ4FEIO44UbccTLa7tvNpiFCgPE7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -46537,7 +48182,7 @@ packages: jest-validate: 27.5.1 micromatch: 4.0.5 pretty-format: 27.5.1 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_263kxb4upkllfszsccwxso4xq4 transitivePeerDependencies: - bufferutil - canvas @@ -46584,48 +48229,7 @@ packages: - supports-color - utf-8-validate - /jest-config/27.5.1_ts-node@7.0.1: - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@jest/test-sequencer': 27.5.1 - '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.17.8 - chalk: 4.1.2 - ci-info: 3.3.0 - deepmerge: 4.2.2 - glob: 7.2.0 - graceful-fs: 4.2.9 - jest-circus: 27.5.1 - jest-environment-jsdom: 27.5.1 - jest-environment-node: 27.5.1 - jest-get-type: 27.5.1 - jest-jasmine2: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runner: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 27.5.1 - slash: 3.0.0 - strip-json-comments: 3.1.1 - ts-node: 7.0.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - - /jest-config/27.5.1_ts-node@9.1.1: + /jest-config/27.5.1_ts-node@10.9.1: resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -46658,7 +48262,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga transitivePeerDependencies: - bufferutil - canvas @@ -47925,7 +49529,7 @@ packages: - utf-8-validate dev: true - /jest/27.2.3_ts-node@9.1.1: + /jest/27.2.3_ts-node@10.9.1: resolution: {integrity: sha512-r4ggA29J5xUg93DpvbsX+AXlFMWE3hZ5Y6BfgTl8PJvWelVezNPkmrsixuGoDBTHTCwScRSH0O4wsoeUgLie2w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -47935,9 +49539,9 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@9.1.1 + '@jest/core': 27.5.1_ts-node@10.9.1 import-local: 3.1.0 - jest-cli: 27.5.1_ts-node@9.1.1 + jest-cli: 27.5.1_ts-node@10.9.1 transitivePeerDependencies: - bufferutil - canvas @@ -47946,7 +49550,7 @@ packages: - utf-8-validate dev: true - /jest/27.4.7_ts-node@9.1.1: + /jest/27.4.7_ts-node@10.9.1: resolution: {integrity: sha512-8heYvsx7nV/m8m24Vk26Y87g73Ba6ueUd0MWed/NXMhSZIm62U/llVbS0PJe1SHunbyXjJ/BqG1z9bFjGUIvTg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -47956,9 +49560,9 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@9.1.1 + '@jest/core': 27.5.1_ts-node@10.9.1 import-local: 3.1.0 - jest-cli: 27.5.1_ts-node@9.1.1 + jest-cli: 27.5.1_ts-node@10.9.1 transitivePeerDependencies: - bufferutil - canvas @@ -47987,7 +49591,7 @@ packages: - ts-node - utf-8-validate - /jest/27.5.1_ts-node@7.0.1: + /jest/27.5.1_ts-node@10.9.1: resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -47997,30 +49601,9 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@7.0.1 + '@jest/core': 27.5.1_ts-node@10.9.1 import-local: 3.1.0 - jest-cli: 27.5.1_ts-node@7.0.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - - /jest/27.5.1_ts-node@9.1.1: - resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 27.5.1_ts-node@9.1.1 - import-local: 3.1.0 - jest-cli: 27.5.1_ts-node@9.1.1 + jest-cli: 27.5.1_ts-node@10.9.1 transitivePeerDependencies: - bufferutil - canvas @@ -48300,7 +49883,6 @@ packages: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true - dev: true /jsonc-parser/3.0.0: resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} @@ -48688,7 +50270,7 @@ packages: dependencies: klona: 2.0.5 less: 4.1.3 - webpack: 5.75.0_esbuild@0.15.13 + webpack: 5.75.0_esbuild@0.16.17 dev: true /less-loader/4.1.0_less@4.1.2+webpack@4.44.2: @@ -48853,7 +50435,7 @@ packages: webpack-sources: optional: true dependencies: - webpack: 5.75.0_esbuild@0.15.13 + webpack: 5.75.0_esbuild@0.16.17 webpack-sources: 3.2.3 dev: true @@ -50354,6 +51936,16 @@ packages: webpack: 5.75.0_esbuild@0.15.13 dev: true + /mini-css-extract-plugin/2.7.2_webpack@5.75.0: + resolution: {integrity: sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + dependencies: + schema-utils: 4.0.0 + webpack: 5.75.0_esbuild@0.16.17 + dev: true + /mini-svg-data-uri/1.4.4: resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} hasBin: true @@ -51207,49 +52799,49 @@ packages: tslib: 1.14.1 dev: false - /ng-packagr/15.0.0_mhldeuutqtdyc5bpeklotyy3jm: - resolution: {integrity: sha512-moEVwbkZm9XnnIt4k1tNDwORCEW0CtfC243Mv+1FUTTVmEjebSVNDLNyzKa0WjwpOrrUP/n/M7xNnxbWp6zI4w==} + /ng-packagr/15.1.1_mhldeuutqtdyc5bpeklotyy3jm: + resolution: {integrity: sha512-TT5JtYJkKuYnUaCIQH/ArE+D1xjpjWnQjvbfRxd6/wypi0nDfSYvq96CLd1zphgMOp+Ofd8Xyet0K73znygxCA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} hasBin: true peerDependencies: - '@angular/compiler-cli': ^15.0.0-next + '@angular/compiler-cli': ^15.0.0 || ^15.1.0-next.0 || ^15.2.0-next.0 tailwindcss: ^2.0.0 || ^3.0.0 tslib: ^2.3.0 - typescript: ~4.8.2 + typescript: '>=4.8.2 <5.0' peerDependenciesMeta: tailwindcss: optional: true dependencies: - '@angular/compiler-cli': 15.1.2_hkrohac3r5tzyiymw7onjymdfe - '@rollup/plugin-json': 5.0.1_rollup@3.3.0 - '@rollup/plugin-node-resolve': 15.0.1_rollup@3.3.0 - ajv: 8.11.0 + '@angular/compiler-cli': 15.1.2_qbb6prygfkdcmogcfoew4a7yfy + '@rollup/plugin-json': 6.0.0_rollup@3.7.3 + '@rollup/plugin-node-resolve': 15.0.1_rollup@3.7.3 + ajv: 8.12.0 ansi-colors: 4.1.3 - autoprefixer: 10.4.13_postcss@8.4.19 + autoprefixer: 10.4.13_postcss@8.4.21 browserslist: 4.21.4 - cacache: 17.0.2 + cacache: 17.0.4 chokidar: 3.5.3 commander: 9.4.1 + convert-source-map: 2.0.0 dependency-graph: 0.11.0 - esbuild-wasm: 0.15.13 + esbuild-wasm: 0.16.17 find-cache-dir: 3.3.2 glob: 8.0.3 injection-js: 2.4.0 jsonc-parser: 3.2.0 less: 4.1.3 ora: 5.4.1 - postcss: 8.4.19 - postcss-url: 10.1.3_postcss@8.4.19 - rollup: 3.3.0 - rollup-plugin-sourcemaps: 0.6.3_rollup@3.3.0 - rxjs: 7.5.6 - sass: 1.56.2 + piscina: 3.2.0 + postcss: 8.4.21 + postcss-url: 10.1.3_postcss@8.4.21 + rollup: 3.7.3 + rxjs: 7.8.0 + sass: 1.57.1 tslib: 2.4.0 typescript: 4.9.5 optionalDependencies: - esbuild: 0.15.14 + esbuild: 0.16.17 transitivePeerDependencies: - - '@types/node' - bluebird - supports-color dev: true @@ -52819,8 +54411,8 @@ packages: '@npmcli/installed-package-contents': 2.0.1 '@npmcli/promise-spawn': 6.0.1 '@npmcli/run-script': 6.0.0 - cacache: 17.0.2 - fs-minipass: 3.0.0 + cacache: 17.0.4 + fs-minipass: 3.0.1 minipass: 4.0.0 npm-package-arg: 10.1.0 npm-packlist: 7.0.4 @@ -54034,6 +55626,20 @@ packages: webpack: 5.75.0_esbuild@0.15.13 dev: true + /postcss-loader/7.0.2_6jdsrmfenkuhhw3gx4zvjlznce: + resolution: {integrity: sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==} + engines: {node: '>= 14.15.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.5 + postcss: 8.4.21 + semver: 7.3.8 + webpack: 5.75.0_esbuild@0.16.17 + dev: true + /postcss-logical/3.0.0: resolution: {integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==} engines: {node: '>=6.0.0'} @@ -54296,6 +55902,15 @@ packages: dependencies: postcss: 8.4.19 + /postcss-modules-extract-imports/3.0.0_postcss@8.4.21: + resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.21 + dev: true + /postcss-modules-local-by-default/3.0.3: resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} engines: {node: '>= 6'} @@ -54328,6 +55943,18 @@ packages: postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 + /postcss-modules-local-by-default/4.0.0_postcss@8.4.21: + resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-selector-parser: 6.0.10 + postcss-value-parser: 4.2.0 + dev: true + /postcss-modules-scope/2.2.0: resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} engines: {node: '>= 6'} @@ -54354,6 +55981,16 @@ packages: postcss: 8.4.19 postcss-selector-parser: 6.0.10 + /postcss-modules-scope/3.0.0_postcss@8.4.21: + resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.10 + dev: true + /postcss-modules-values/3.0.0: resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} dependencies: @@ -54379,6 +56016,16 @@ packages: icss-utils: 5.1.0_postcss@8.4.19 postcss: 8.4.19 + /postcss-modules-values/4.0.0_postcss@8.4.21: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0_postcss@8.4.21 + postcss: 8.4.21 + dev: true + /postcss-nested/5.0.6_postcss@8.4.14: resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} engines: {node: '>=12.0'} @@ -54962,13 +56609,13 @@ packages: dependencies: postcss: 8.4.14 - /postcss-scss/4.0.4_postcss@8.4.20: + /postcss-scss/4.0.4_postcss@8.4.21: resolution: {integrity: sha512-aBBbVyzA8b3hUL0MGrpydxxXKXFZc5Eqva0Q3V9qsBOLEMsjb6w49WfpsoWzpEgcqJGW4t7Rio8WXVU9Gd8vWg==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.20 + postcss: 8.4.21 dev: true /postcss-selector-matches/4.0.0: @@ -55105,7 +56752,7 @@ packages: postcss-selector-parser: 6.0.10 dev: false - /postcss-url/10.1.3_postcss@8.4.19: + /postcss-url/10.1.3_postcss@8.4.21: resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==} engines: {node: '>=10'} peerDependencies: @@ -55114,7 +56761,7 @@ packages: make-dir: 3.1.0 mime: 2.5.2 minimatch: 3.0.8 - postcss: 8.4.19 + postcss: 8.4.21 xxhashjs: 0.2.2 dev: true @@ -55205,6 +56852,15 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 + /postcss/8.4.21: + resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + /postmark/2.9.5: resolution: {integrity: sha512-F27gc6wrxdn7GADodGpECoWez7FK2Pdach7A9ni5vVZiYz1YUY7T68nvVCzxrbWCjOS7ZujyclYlq1C0a4ar1w==} dependencies: @@ -57637,6 +59293,10 @@ packages: /regenerator-runtime/0.13.10: resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==} + /regenerator-runtime/0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + dev: true + /regenerator-runtime/0.13.9: resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} @@ -58266,21 +59926,6 @@ packages: source-map-resolve: 0.5.3 dev: true - /rollup-plugin-sourcemaps/0.6.3_rollup@3.3.0: - resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==} - engines: {node: '>=10.0.0'} - peerDependencies: - '@types/node': '>=10.0.0' - rollup: '>=0.31.2' - peerDependenciesMeta: - '@types/node': - optional: true - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@3.3.0 - rollup: 3.3.0 - source-map-resolve: 0.6.0 - dev: true - /rollup-plugin-terser/5.3.1_rollup@1.32.1: resolution: {integrity: sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==} deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser @@ -58386,14 +60031,6 @@ packages: fsevents: 2.3.2 dev: true - /rollup/3.3.0: - resolution: {integrity: sha512-wqOV/vUJCYEbWsXvwCkgGWvgaEnsbn4jxBQWKpN816CqsmCimDmCNJI83c6if7QVD4v/zlyRzxN7U2yDT5rfoA==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.2 - dev: true - /rollup/3.7.3: resolution: {integrity: sha512-7e68MQbAWCX6mI4/0lG1WHd+NdNAlVamg0Zkd+8LZ/oXojligdGnCNyHlzXqXCZObyjs5FRc3AH0b17iJESGIQ==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} @@ -58702,6 +60339,31 @@ packages: webpack: 5.75.0_esbuild@0.15.13 dev: true + /sass-loader/13.2.0_sass@1.57.1+webpack@5.75.0: + resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} + engines: {node: '>= 14.15.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + sass: ^1.3.0 + sass-embedded: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true + dependencies: + klona: 2.0.5 + neo-async: 2.6.2 + sass: 1.57.1 + webpack: 5.75.0_esbuild@0.16.17 + dev: true + /sass/1.52.3: resolution: {integrity: sha512-LNNPJ9lafx+j1ArtA7GyEJm9eawXN8KlA1+5dF6IZyoONg1Tyo/g+muOsENWJH/2Q1FHbbV4UwliU0cXMa/VIA==} engines: {node: '>=12.0.0'} @@ -58721,8 +60383,8 @@ packages: source-map-js: 1.0.2 dev: true - /sass/1.56.2: - resolution: {integrity: sha512-ciEJhnyCRwzlBCB+h5cCPM6ie/6f8HrhZMQOf5vlU60Y1bI1rx5Zb0vlDZvaycHsg/MqFfF1Eq2eokAa32iw8w==} + /sass/1.57.1: + resolution: {integrity: sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -59666,7 +61328,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.75.0_esbuild@0.15.13 + webpack: 5.75.0_esbuild@0.16.17 dev: true /source-map-resolve/0.5.3: @@ -59685,6 +61347,7 @@ packages: dependencies: atob: 2.1.2 decode-uri-component: 0.2.0 + dev: false /source-map-support/0.5.13: resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} @@ -60538,12 +62201,12 @@ packages: stylelint-order: 5.0.0_stylelint@14.9.1 dev: true - /stylelint-config-recommended-scss/6.0.0_pddp3xp6kckfhyuzrpyoasgypq: + /stylelint-config-recommended-scss/6.0.0_uw7nz5xqcmvtvz7g4i6uisa5x4: resolution: {integrity: sha512-6QOe2/OzXV2AP5FE12A7+qtKdZik7Saf42SMMl84ksVBBPpTdrV+9HaCbPYiRMiwELY9hXCVdH4wlJ+YJb5eig==} peerDependencies: stylelint: ^14.4.0 dependencies: - postcss-scss: 4.0.4_postcss@8.4.20 + postcss-scss: 4.0.4_postcss@8.4.21 stylelint: 14.9.1 stylelint-config-recommended: 7.0.0_stylelint@14.9.1 stylelint-scss: 4.2.0_stylelint@14.9.1 @@ -61242,6 +62905,31 @@ packages: terser: 5.12.1 webpack: 5.72.1 + /terser-webpack-plugin/5.3.3_htvmhiqynazf46fjrszipnqp7a: + resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.14 + esbuild: 0.16.17 + jest-worker: 27.5.1 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + terser: 5.15.1 + webpack: 5.75.0_esbuild@0.16.17 + dev: true + /terser-webpack-plugin/5.3.3_lex532nclbef5ull34kxwtef74: resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==} engines: {node: '>= 10.13.0'} @@ -61391,6 +63079,17 @@ packages: commander: 2.20.3 source-map-support: 0.5.21 + /terser/5.16.1: + resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.2 + acorn: 8.8.1 + commander: 2.20.3 + source-map-support: 0.5.21 + dev: true + /test-exclude/6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -61738,7 +63437,7 @@ packages: dependencies: tslib: 1.14.1 - /ts-jest/27.0.5_2hxkpkn5pxklfqzhyey6ik757y: + /ts-jest/27.0.5_ohnaagtittsob4iczpbr2edvza: resolution: {integrity: sha512-lIJApzfTaSSbtlksfFNHkWOzLJuuSm4faFAfo5kvzOiRAuoN4/eKxVJ2zEAho8aecE04qX6K1pAzfH5QHL1/8w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -61756,11 +63455,11 @@ packages: babel-jest: optional: true dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@types/jest': 27.4.0 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.2.3_ts-node@9.1.1 + jest: 27.2.3_ts-node@10.9.1 jest-util: 27.5.1 json5: 2.2.1 lodash: 4.17.21 @@ -61795,7 +63494,7 @@ packages: '@types/jest': 27.4.1 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -61805,7 +63504,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.4_cnngzrja2umb46xxazlucyx2qu: + /ts-jest/27.1.4_cezqjwcjtt4cfdltrwurxhordi: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -61826,9 +63525,11 @@ packages: esbuild: optional: true dependencies: + '@babel/core': 7.20.12 + '@types/jest': 27.4.0 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -61838,7 +63539,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m: + /ts-jest/27.1.4_cnngzrja2umb46xxazlucyx2qu: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -61859,8 +63560,6 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.20.5 - '@types/jest': 27.4.0 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 27.5.1_ts-node@10.9.1 @@ -61873,7 +63572,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.4_gxxm7iira7qywlxitjbf2xjjqa: + /ts-jest/27.1.4_fnpq3jb2njbnvcxpycvyx6lj4m: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -61898,14 +63597,13 @@ packages: '@types/jest': 27.4.0 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 ->>>>>>> 62c6b5d63 (feat(infra): upgrade dependencies according typescript upgrade) + jest: 27.5.1 jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 - typescript: 4.6.3 + typescript: 4.9.5 yargs-parser: 20.2.9 dev: true @@ -61933,7 +63631,7 @@ packages: '@types/jest': 27.4.0 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -61967,7 +63665,7 @@ packages: '@types/jest': 27.4.1 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -62002,7 +63700,7 @@ packages: '@types/jest': 27.4.0 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.4.7_ts-node@10.9.1 jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -62012,10 +63710,9 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/29.0.3_apl2kovhlf4augjpviu3seobxq: - resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} ->>>>>>> 62c6b5d63 (feat(infra): upgrade dependencies according typescript upgrade) + /ts-jest/27.1.4_rx2nkp4acdg4mhmzm5oop3yrke: + resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' @@ -62034,11 +63731,11 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.20.5 - '@types/jest': 27.4.0 + '@babel/core': 7.20.12 + '@types/jest': 27.4.1 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.4.7_ts-node@9.1.1 + jest: 27.5.1_ts-node@10.9.1 jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -62048,7 +63745,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/29.0.3_frfgizeupuj2jmtaxidt2dfubm: + /ts-jest/29.0.3_emtz7bspl3w44yuglrfo66r3kq: resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -62069,7 +63766,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 29.3.1_@types+node@14.18.12 @@ -62116,22 +63813,6 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-loader/8.4.0_hhrrucqyg4eysmfpujvov2ym5u: - resolution: {integrity: sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==} - engines: {node: '>=10.0.0'} - peerDependencies: - typescript: '*' - webpack: '*' - dependencies: - chalk: 4.1.2 - enhanced-resolve: 4.5.0 - loader-utils: 2.0.2 - micromatch: 4.0.5 - semver: 7.3.8 - typescript: 4.9.5 - webpack: 5.75.0 - dev: true - /ts-loader/9.2.8_hhrrucqyg4eysmfpujvov2ym5u: resolution: {integrity: sha512-gxSak7IHUuRtwKf3FIPSW1VpZcqF9+MBrHOvBp9cjHh+525SjtCIJKVGjRKIAfxBwDGDGCFF00rTfzB1quxdSw==} engines: {node: '>=12.0.0'} @@ -62187,6 +63868,37 @@ packages: yn: 3.1.1 dev: true + /ts-node/10.9.1_263kxb4upkllfszsccwxso4xq4: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.8 + '@tsconfig/node12': 1.0.9 + '@tsconfig/node14': 1.0.1 + '@tsconfig/node16': 1.0.2 + '@types/node': 16.11.7 + acorn: 8.8.1 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.9.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + /ts-node/10.9.1_ebv7jpk5iu7ytdhj56oi5mjoga: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true @@ -62217,19 +63929,35 @@ packages: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - /ts-node/7.0.1: - resolution: {integrity: sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw==} - engines: {node: '>=4.2.0'} + /ts-node/10.9.1_shievopl57bw2yyflx5da526ye: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true dependencies: - arrify: 1.0.1 - buffer-from: 1.1.2 - diff: 3.5.0 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.8 + '@tsconfig/node12': 1.0.9 + '@tsconfig/node14': 1.0.1 + '@tsconfig/node16': 1.0.2 + '@types/node': 14.18.12 + acorn: 8.8.1 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 make-error: 1.3.6 - minimist: 1.2.7 - mkdirp: 0.5.6 - source-map-support: 0.5.21 - yn: 2.0.0 + typescript: 4.9.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 dev: true /ts-node/9.1.1_typescript@4.9.5: @@ -62512,12 +64240,6 @@ packages: hasBin: true dev: true - /typescript/4.8.4: - resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - /typescript/4.9.5: resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} engines: {node: '>=4.2.0'} @@ -63485,7 +65207,7 @@ packages: typescript: 4.9.5 dev: true - /vue-tsc/1.0.9_typescript@4.7.4: + /vue-tsc/1.0.9_typescript@4.9.5: resolution: {integrity: sha512-vRmHD1K6DmBymNhoHjQy/aYKTRQNLGOu2/ESasChG9Vy113K6CdP0NlhR0bzgFJfv2eFB9Ez/9L5kIciUajBxQ==} hasBin: true peerDependencies: @@ -63493,7 +65215,7 @@ packages: dependencies: '@volar/vue-language-core': 1.0.9 '@volar/vue-typescript': 1.0.9 - typescript: 4.7.4 + typescript: 4.9.5 dev: true /vue/3.2.45: @@ -63774,7 +65496,21 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.75.0_esbuild@0.15.13 + webpack: 5.75.0 + dev: true + + /webpack-dev-middleware/6.0.1_webpack@5.75.0: + resolution: {integrity: sha512-PZPZ6jFinmqVPJZbisfggDiC+2EeGZ1ZByyMP5sOFJcPPWSexalISz+cvm+j+oYPT7FIJyxT76esjnw9DhE5sw==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: ^5.0.0 + dependencies: + colorette: 2.0.16 + memfs: 3.4.12 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 4.0.0 + webpack: 5.75.0_esbuild@0.16.17 dev: true /webpack-dev-server/3.11.1_webpack@4.44.2: @@ -64112,7 +65848,7 @@ packages: optional: true dependencies: typed-assert: 1.0.9 - webpack: 5.75.0_esbuild@0.15.13 + webpack: 5.75.0_esbuild@0.16.17 dev: true /webpack-virtual-modules/0.2.2: @@ -64480,6 +66216,46 @@ packages: - uglify-js dev: true + /webpack/5.75.0_esbuild@0.16.17: + resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.4 + '@types/estree': 0.0.51 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/wasm-edit': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + acorn: 8.8.1 + acorn-import-assertions: 1.8.0_acorn@8.8.1 + browserslist: 4.21.4 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.10.0 + es-module-lexer: 0.9.3 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.10 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.1.1 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.3_htvmhiqynazf46fjrszipnqp7a + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + dev: true + /webpackbar/5.0.2_webpack@5.72.1: resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==} engines: {node: '>=12'} @@ -65471,11 +67247,6 @@ packages: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 - /yn/2.0.0: - resolution: {integrity: sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ==} - engines: {node: '>=4'} - dev: true - /yn/3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} engines: {node: '>=6'} diff --git a/providers/apns/package.json b/providers/apns/package.json index e30482864ac..768242e0ec4 100644 --- a/providers/apns/package.json +++ b/providers/apns/package.json @@ -47,7 +47,7 @@ "open-cli": "^6.0.1", "prettier": "^2.1.1", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/burst-sms/package.json b/providers/burst-sms/package.json index 427a2e21a44..e20783aea37 100644 --- a/providers/burst-sms/package.json +++ b/providers/burst-sms/package.json @@ -50,7 +50,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5", "uuid": "^9.0.0" diff --git a/providers/clickatell/package.json b/providers/clickatell/package.json index b89ec2674de..5c1e44d6a91 100644 --- a/providers/clickatell/package.json +++ b/providers/clickatell/package.json @@ -48,7 +48,8 @@ "open-cli": "^6.0.1", "prettier": "^2.1.1", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", + "typescript": "4.9.5", "typedoc": "^0.23.0" }, "files": [ diff --git a/providers/discord/package.json b/providers/discord/package.json index 25c467658d1..d63ce29c266 100644 --- a/providers/discord/package.json +++ b/providers/discord/package.json @@ -49,7 +49,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/emailjs/package.json b/providers/emailjs/package.json index 00534978cd4..e98058661bb 100644 --- a/providers/emailjs/package.json +++ b/providers/emailjs/package.json @@ -62,7 +62,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/expo/package.json b/providers/expo/package.json index 414e86bea84..9402dd7e5cb 100644 --- a/providers/expo/package.json +++ b/providers/expo/package.json @@ -49,7 +49,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/fcm/package.json b/providers/fcm/package.json index fe47c47c4d4..e6cfc30ae56 100644 --- a/providers/fcm/package.json +++ b/providers/fcm/package.json @@ -52,7 +52,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/firetext/package.json b/providers/firetext/package.json index 14d37942193..35fa8d08adb 100644 --- a/providers/firetext/package.json +++ b/providers/firetext/package.json @@ -52,7 +52,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/gupshup/package.json b/providers/gupshup/package.json index 30a39759336..4dda89f5dc7 100644 --- a/providers/gupshup/package.json +++ b/providers/gupshup/package.json @@ -50,7 +50,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/infobip/package.json b/providers/infobip/package.json index d95ece2b9ea..84f981f95f8 100644 --- a/providers/infobip/package.json +++ b/providers/infobip/package.json @@ -49,7 +49,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/mailersend/package.json b/providers/mailersend/package.json index 4020f07aa2e..decadf7906f 100644 --- a/providers/mailersend/package.json +++ b/providers/mailersend/package.json @@ -49,7 +49,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/mailgun/package.json b/providers/mailgun/package.json index 9545a40682a..e70200943db 100644 --- a/providers/mailgun/package.json +++ b/providers/mailgun/package.json @@ -63,7 +63,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/mailjet/package.json b/providers/mailjet/package.json index a7bbc635a9a..455177d9a94 100644 --- a/providers/mailjet/package.json +++ b/providers/mailjet/package.json @@ -50,7 +50,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/mandrill/package.json b/providers/mandrill/package.json index 733fad6c574..ca53075e1af 100644 --- a/providers/mandrill/package.json +++ b/providers/mandrill/package.json @@ -59,7 +59,7 @@ "prettier": "2.4.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/ms-teams/package.json b/providers/ms-teams/package.json index 97fb817c596..f93d8d2f840 100644 --- a/providers/ms-teams/package.json +++ b/providers/ms-teams/package.json @@ -49,7 +49,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5", "uuid": "^9.0.0" diff --git a/providers/netcore/package.json b/providers/netcore/package.json index e92e9e9aabd..519e9a03eeb 100644 --- a/providers/netcore/package.json +++ b/providers/netcore/package.json @@ -62,7 +62,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.7", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/nexmo/package.json b/providers/nexmo/package.json index ee190491413..09e3a6972df 100644 --- a/providers/nexmo/package.json +++ b/providers/nexmo/package.json @@ -49,7 +49,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/nodemailer/package.json b/providers/nodemailer/package.json index 5a78873585c..6c769943096 100644 --- a/providers/nodemailer/package.json +++ b/providers/nodemailer/package.json @@ -63,7 +63,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.7", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/outlook365/package.json b/providers/outlook365/package.json index c644c9b0f11..cdf357eae4f 100644 --- a/providers/outlook365/package.json +++ b/providers/outlook365/package.json @@ -49,7 +49,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/plivo/package.json b/providers/plivo/package.json index 0bf741e0437..5ba0e0d0921 100644 --- a/providers/plivo/package.json +++ b/providers/plivo/package.json @@ -61,7 +61,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/postmark/package.json b/providers/postmark/package.json index 8264c2f921b..bd5bba595df 100644 --- a/providers/postmark/package.json +++ b/providers/postmark/package.json @@ -62,7 +62,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/sendgrid/package.json b/providers/sendgrid/package.json index 3dea5d2a17a..66113ea8234 100644 --- a/providers/sendgrid/package.json +++ b/providers/sendgrid/package.json @@ -62,7 +62,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/sendinblue/package.json b/providers/sendinblue/package.json index 8769e42e512..0134b256aaf 100644 --- a/providers/sendinblue/package.json +++ b/providers/sendinblue/package.json @@ -50,7 +50,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/ses/package.json b/providers/ses/package.json index a22a2387e48..22abf7ea34f 100644 --- a/providers/ses/package.json +++ b/providers/ses/package.json @@ -50,9 +50,9 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", - "typescript": "^4.4.3" + "typescript": "^4.9.5" }, "files": [ "build/main", diff --git a/providers/slack/package.json b/providers/slack/package.json index 8390b6485c8..cd3e7daf6c3 100644 --- a/providers/slack/package.json +++ b/providers/slack/package.json @@ -50,7 +50,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/sms77/package.json b/providers/sms77/package.json index 546a5794db0..5721b9f3f7f 100644 --- a/providers/sms77/package.json +++ b/providers/sms77/package.json @@ -51,7 +51,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/sns/package.json b/providers/sns/package.json index fac486f3f90..fbdfc5a00c6 100644 --- a/providers/sns/package.json +++ b/providers/sns/package.json @@ -49,7 +49,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/sparkpost/package.json b/providers/sparkpost/package.json index f3bb9d46d0b..b712fbf8131 100644 --- a/providers/sparkpost/package.json +++ b/providers/sparkpost/package.json @@ -50,7 +50,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/telnyx/package.json b/providers/telnyx/package.json index fbb2143eaba..70cdfda6c4f 100644 --- a/providers/telnyx/package.json +++ b/providers/telnyx/package.json @@ -49,7 +49,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/termii/package.json b/providers/termii/package.json index c72e9008f30..834f8db3c63 100644 --- a/providers/termii/package.json +++ b/providers/termii/package.json @@ -50,7 +50,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, diff --git a/providers/twilio/package.json b/providers/twilio/package.json index 4baee131aed..a594302cca8 100644 --- a/providers/twilio/package.json +++ b/providers/twilio/package.json @@ -61,7 +61,7 @@ "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.5", - "ts-node": "^9.0.0", + "ts-node": "~10.9.1", "typedoc": "^0.23.0", "typescript": "4.9.5" }, From e7bf60128480f64ed540cac61b4657769730ba70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82?= Date: Fri, 3 Feb 2023 03:47:21 +0100 Subject: [PATCH 09/40] fix(web): fixed the template editor react-hook-form dirty state --- apps/web/cypress/tests/changes.spec.ts | 2 +- .../create-notification.spec.ts | 14 +- .../main-functionality.spec.ts | 52 ++- .../notification-editor/steps-actions.spec.ts | 8 +- apps/web/cypress/tests/onboarding.spec.ts | 2 +- apps/web/package.json | 2 + .../templates/FieldArrayProvider.tsx | 15 - .../components/templates/SaveChangesModal.tsx | 5 +- .../components/templates/TemplateEditor.tsx | 10 +- .../templates/TemplateEditorProvider.tsx | 419 +++++++++++++----- .../templates/TemplateFormProvider.tsx | 37 +- .../templates/TemplatePageHeader.tsx | 15 +- .../templates/TemplatePushEditor.tsx | 13 +- .../templates/TemplateSMSEditor.tsx | 8 +- .../components/templates/TemplateSettings.tsx | 16 +- .../components/templates/TemplatesSideBar.tsx | 6 +- .../templates/VariableManager.cy.tsx | 4 +- .../components/templates/VariableManager.tsx | 27 +- .../chat-editor/TemplateChatEditor.tsx | 14 +- .../email-editor/ButtonRowContent.tsx | 86 ++-- .../templates/email-editor/ContentRow.tsx | 65 +-- .../email-editor/EmailContentCard.tsx | 38 +- .../email-editor/EmailInboxContent.tsx | 9 +- .../email-editor/EmailMessageEditor.tsx | 119 ++--- .../email-editor/EmailMessagesCards.tsx | 3 +- .../templates/email-editor/TextRowContent.tsx | 71 +-- .../web/src/components/templates/formTypes.ts | 49 ++ .../in-app-editor/ButtonsTemplatesPopover.tsx | 1 - .../in-app-editor/EnableAvatarSwitch.tsx | 3 +- .../in-app-editor/InAppEditorBlock.tsx | 7 +- .../in-app-editor/TemplateInAppEditor.tsx | 36 +- .../NotificationSettingsForm.tsx | 17 +- .../TemplatePreference.tsx | 11 +- .../templates/useTemplateController.ts | 343 ++------------ .../components/widget/InAppWidgetPreview.tsx | 3 +- .../src/components/workflow/FlowEditor.tsx | 24 +- .../workflow/node-types/ChannelNode.tsx | 2 +- apps/web/src/design-system/tabs/Tabs.tsx | 3 + .../template-button/TemplateButton.tsx | 2 +- apps/web/src/hooks/useVariablesManager.ts | 84 ++-- .../templates/editor/TemplateEditorPage.tsx | 67 ++- .../pages/templates/filter/FilterModal.tsx | 6 + .../src/pages/templates/filter/Filters.cy.tsx | 1 + .../src/pages/templates/filter/Filters.tsx | 6 +- .../templates/filter/OnlineFiltersForms.tsx | 3 + .../templates/workflow/DelayMetadata.tsx | 3 + .../templates/workflow/DigestMetadata.tsx | 6 + .../templates/workflow/ReplyCallback.tsx | 38 +- .../workflow/ShouldStopOnFailSwitch.tsx | 1 + .../workflow/SideBar/SelectedStep.tsx | 18 +- .../templates/workflow/StepActiveSwitch.tsx | 1 + .../templates/workflow/WorkflowEditorPage.tsx | 37 +- .../pages/user-preference/UserPreference.tsx | 9 +- .../create-template.dto.ts | 2 +- .../src/notification-template.service.ts | 16 + pnpm-lock.yaml | 380 ++++++++-------- 56 files changed, 1145 insertions(+), 1094 deletions(-) delete mode 100644 apps/web/src/components/templates/FieldArrayProvider.tsx create mode 100644 apps/web/src/components/templates/formTypes.ts diff --git a/apps/web/cypress/tests/changes.spec.ts b/apps/web/cypress/tests/changes.spec.ts index 2908b656e26..25ee43ddfef 100644 --- a/apps/web/cypress/tests/changes.spec.ts +++ b/apps/web/cypress/tests/changes.spec.ts @@ -103,7 +103,7 @@ function createNotification() { cy.getByTestId('emailSubject').type('this is email subject'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.waitForNetworkIdle(500); cy.getByTestId('trigger-snippet-btn').click(); } diff --git a/apps/web/cypress/tests/notification-editor/create-notification.spec.ts b/apps/web/cypress/tests/notification-editor/create-notification.spec.ts index 7d93852925e..fcd670f8ae8 100644 --- a/apps/web/cypress/tests/notification-editor/create-notification.spec.ts +++ b/apps/web/cypress/tests/notification-editor/create-notification.spec.ts @@ -21,7 +21,7 @@ describe('Creation functionality', function () { parseSpecialCharSequences: false, }); cy.getByTestId('inAppRedirect').type('/example/test'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.getByTestId('success-trigger-modal').should('be.visible'); cy.getByTestId('success-trigger-modal').getByTestId('trigger-code-snippet').contains('test-notification'); @@ -33,10 +33,10 @@ describe('Creation functionality', function () { cy.getByTestId('success-trigger-modal') .getByTestId('trigger-curl-snippet') .contains("--header 'Authorization: ApiKey"); - cy.getByTestId('success-trigger-modal').getByTestId('trigger-curl-snippet').contains('taskName'); cy.getByTestId('trigger-snippet-btn').click(); + cy.location('pathname').should('equal', '/templates'); }); @@ -58,10 +58,12 @@ describe('Creation functionality', function () { }) .type('{enter}Please check it.'); cy.getByTestId('inAppRedirect').type('/example/test'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.getByTestId('trigger-snippet-btn').click(); + cy.location('pathname').should('equal', '/templates'); + // trigger the notification cy.task('createNotifications', { identifier: 'test-notification-title', @@ -207,7 +209,7 @@ describe('Creation functionality', function () { cy.getByTestId('emailSubject').type('this is email subject'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.getByTestId('success-trigger-modal').should('be.visible'); cy.getByTestId('success-trigger-modal').getByTestId('trigger-code-snippet').contains('test-notification'); @@ -271,7 +273,7 @@ describe('Creation functionality', function () { cy.getByTestId('backoff-unit').click(); cy.get('.mantine-Select-dropdown .mantine-Select-item').contains('Minutes').click(); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.getByTestId('success-trigger-modal').should('be.visible'); cy.getByTestId('trigger-snippet-btn').click(); @@ -307,7 +309,7 @@ describe('Creation functionality', function () { cy.getByTestId('submit-category-btn').click(); cy.getByTestId('groupSelector').should('have.value', 'New Test Category'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.visit('/templates'); cy.getByTestId('template-edit-link'); diff --git a/apps/web/cypress/tests/notification-editor/main-functionality.spec.ts b/apps/web/cypress/tests/notification-editor/main-functionality.spec.ts index aa89228335e..cb31f3dfa1d 100644 --- a/apps/web/cypress/tests/notification-editor/main-functionality.spec.ts +++ b/apps/web/cypress/tests/notification-editor/main-functionality.spec.ts @@ -36,15 +36,17 @@ describe('Workflow Editor - Main Functionality', function () { cy.getByTestId('emailPreheader').should('have.value', 'this is email preheader'); }); - it('should edit notification', function () { + it('should edit in-app notification', function () { const template = this.session.templates[0]; cy.visit('/templates/edit/' + template._id); cy.waitForNetworkIdle(500); + cy.getByTestId('notification-template-submit-btn').should('be.disabled'); cy.getByTestId('title').should('have.value', template.name); addAndEditChannel('inApp'); + cy.getByTestId('notification-template-submit-btn').should('not.be.disabled'); cy.getByTestId('in-app-editor-content-input') .getByTestId('in-app-editor-content-input') @@ -62,7 +64,8 @@ describe('Workflow Editor - Main Functionality', function () { cy.getByTestId('feed-button-1').click({ force: true }); cy.getByTestId('in-app-editor-content-input').clear().type('new content for notification'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').should('be.disabled'); cy.visit('/templates'); cy.waitForNetworkIdle(500); @@ -79,10 +82,34 @@ describe('Workflow Editor - Main Functionality', function () { editChannel('inApp', true); + cy.getByTestId('notification-template-submit-btn').should('be.disabled'); cy.getByTestId('feed-button-1-checked'); cy.getByTestId('create-feed-input').type('test4'); cy.getByTestId('add-feed-button').click(); cy.getByTestId('feed-button-2-checked'); + cy.getByTestId('notification-template-submit-btn').should('not.be.disabled'); + }); + + it('should edit email notification', function () { + const template = this.session.templates[0]; + + cy.visit('/templates/edit/' + template._id); + cy.waitForNetworkIdle(500); + + // edit email step + cy.getByTestId('notification-template-submit-btn').should('be.disabled'); + clickWorkflow(); + editChannel('email'); + cy.getByTestId('notification-template-submit-btn').should('be.disabled'); + + // edit email editor content + cy.getByTestId('email-editor').getByTestId('editor-row').first().click().type('{selectall}{backspace}Hello world!'); + cy.getByTestId('notification-template-submit-btn').should('not.be.disabled'); + + // go back and update + goBack(); + cy.getByTestId('notification-template-submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').should('be.disabled'); }); it('should update notification active status', function () { @@ -138,13 +165,13 @@ describe('Workflow Editor - Main Functionality', function () { cy.waitForNetworkIdle(500); cy.getByTestId('description').type('this is a notification template description'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.getByTestId('title').should('have.class', 'mantine-TextInput-invalid'); fillBasicNotificationDetails('Test SMS Notification Title'); clickWorkflow(); dragAndDrop('inApp'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.getByTestId('workflowButton').getByTestId('error-circle').should('be.visible'); cy.getByTestId('settingsButton').getByTestId('error-circle').should('be.visible'); }); @@ -156,7 +183,7 @@ describe('Workflow Editor - Main Functionality', function () { fillBasicNotificationDetails(); clickWorkflow(); dragAndDrop('email'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.getByTestId('node-emailSelector').getByTestId('error-circle').should('be.visible'); editChannel('email'); cy.getByTestId('emailSubject').should('have.class', 'mantine-TextInput-invalid'); @@ -236,7 +263,7 @@ describe('Workflow Editor - Main Functionality', function () { cy.getByTestId('smsNotificationContent').type('{{firstName}} someone assigned you to {{taskName}}', { parseSpecialCharSequences: false, }); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.getByTestId('success-trigger-modal').should('be.visible'); cy.getByTestId('success-trigger-modal').getByTestId('trigger-code-snippet').contains('test-sms-notification'); @@ -268,7 +295,7 @@ describe('Workflow Editor - Main Functionality', function () { cy.get('#codeEditor').type('Hello world code {{name}}
Test', { parseSpecialCharSequences: false }); cy.intercept('GET', '/v1/notification-templates?page=0&limit=10').as('notification-templates'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.getByTestId('trigger-snippet-btn').click(); cy.wait('@notification-templates', { timeout: 60000 }); @@ -287,7 +314,7 @@ describe('Workflow Editor - Main Functionality', function () { }); fillBasicNotificationDetails(); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.wait('@createTemplate').then((res) => { cy.getByTestId('trigger-snippet-btn').click(); @@ -339,7 +366,8 @@ describe('Workflow Editor - Main Functionality', function () { cy.getByTestId('control-add').click(); cy.getByTestId('template-container-click-area').eq(0).click(); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').should('be.disabled'); cy.visit('/templates'); cy.waitForNetworkIdle(500); @@ -356,12 +384,12 @@ describe('Workflow Editor - Main Functionality', function () { editChannel('inApp'); + cy.getByTestId('notification-template-submit-btn').should('be.disabled'); cy.getByTestId('template-container').find('input').should('have.length', 1); - cy.getByTestId('remove-button-icon').click(); - cy.getByTestId('submit-btn').click(); - cy.waitForNetworkIdle(500); + cy.getByTestId('notification-template-submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').should('be.disabled'); goBack(); diff --git a/apps/web/cypress/tests/notification-editor/steps-actions.spec.ts b/apps/web/cypress/tests/notification-editor/steps-actions.spec.ts index f0e283e630f..4763f750aac 100644 --- a/apps/web/cypress/tests/notification-editor/steps-actions.spec.ts +++ b/apps/web/cypress/tests/notification-editor/steps-actions.spec.ts @@ -19,7 +19,7 @@ describe('Workflow Editor - Steps Actions', function () { cy.getByTestId(`node-inAppSelector`).should('not.exist'); cy.get('.react-flow__node').should('have.length', 3); cy.get('.react-flow__node').first().should('contain', 'Trigger').next().should('contain', 'Email'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.visit('/templates/edit/' + template._id); cy.waitForNetworkIdle(500); @@ -59,7 +59,7 @@ describe('Workflow Editor - Steps Actions', function () { editChannel('sms'); cy.getByTestId('smsNotificationContent').type('new content for sms'); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.visit('/templates/edit/' + template._id); cy.waitForNetworkIdle(500); @@ -90,7 +90,7 @@ describe('Workflow Editor - Steps Actions', function () { cy.clickWorkflowNode(`node-inAppSelector`); cy.getByTestId(`step-active-switch`).get('label').contains('Step is active'); cy.getByTestId(`step-active-switch`).click({ force: true }); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.clickWorkflowNode(`node-inAppSelector`); cy.getByTestId(`step-active-switch`).get('label').contains('Step is not active'); @@ -108,7 +108,7 @@ describe('Workflow Editor - Steps Actions', function () { cy.clickWorkflowNode(`node-inAppSelector`); cy.getByTestId(`step-should-stop-on-fail-switch`).get('label').contains('Stop workflow if this step fails?'); cy.getByTestId(`step-should-stop-on-fail-switch`).click({ force: true }); - cy.getByTestId('submit-btn').click(); + cy.getByTestId('notification-template-submit-btn').click(); cy.clickWorkflowNode(`node-inAppSelector`); cy.getByTestId(`step-should-stop-on-fail-switch`).should('be.checked'); diff --git a/apps/web/cypress/tests/onboarding.spec.ts b/apps/web/cypress/tests/onboarding.spec.ts index b020b9d5401..bf0c3514993 100644 --- a/apps/web/cypress/tests/onboarding.spec.ts +++ b/apps/web/cypress/tests/onboarding.spec.ts @@ -21,7 +21,7 @@ describe('Getting Started Screen', function () { cy.location('pathname').should('equal', '/templates/create'); cy.getByTestId('title').type('Test Notification Title'); cy.getByTestId('description').type('This is a test description for a test title'); - cy.getByTestId('submit-btn').click({ force: true }); + cy.getByTestId('notification-template-submit-btn').click({ force: true }); cy.get('.mantine-Notification-root').contains('Template saved successfully'); cy.getByTestId('side-nav-quickstart-link').click({ force: true }); diff --git a/apps/web/package.json b/apps/web/package.json index 6b3308d5d32..a44bb02061c 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -36,6 +36,7 @@ "@emotion/react": "^11.7.1", "@emotion/styled": "^11.6.0", "@handlebars/parser": "^2.1.0", + "@hookform/devtools": "^4.3.0", "@hookform/resolvers": "^2.9.1", "@mantine/core": "^5.7.1", "@mantine/dropzone": "^5.9.2", @@ -75,6 +76,7 @@ "lodash.clonedeep": "^4.5.0", "lodash.get": "^4.3.2", "lodash.set": "^4.3.2", + "lodash.isequal": "^4.5.0", "logrocket": "^3.0.1", "logrocket-react": "^5.0.1", "polished": "^4.1.3", diff --git a/apps/web/src/components/templates/FieldArrayProvider.tsx b/apps/web/src/components/templates/FieldArrayProvider.tsx deleted file mode 100644 index 09fe91c0b7c..00000000000 --- a/apps/web/src/components/templates/FieldArrayProvider.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import { useContext, createContext, ReactNode } from 'react'; - -export type FieldArrayContextType = { - fieldArrays: Record; -}; - -const FieldArrayContext = createContext({ - fieldArrays: {}, -}); - -export const useFieldArrayContext = (): FieldArrayContextType => useContext(FieldArrayContext); - -export const FieldArrayProvider = ({ children, ...data }: { children: ReactNode } & FieldArrayContextType) => ( - {children} -); diff --git a/apps/web/src/components/templates/SaveChangesModal.tsx b/apps/web/src/components/templates/SaveChangesModal.tsx index 55e42d35290..7c3a6162c84 100644 --- a/apps/web/src/components/templates/SaveChangesModal.tsx +++ b/apps/web/src/components/templates/SaveChangesModal.tsx @@ -1,8 +1,9 @@ import { Group } from '@mantine/core'; +import { useFormContext } from 'react-hook-form'; + import { Button, Title, Text, Modal } from '../../design-system'; -import { IForm } from './useTemplateController'; +import type { IForm } from './formTypes'; import { errorMessage } from '../../utils/notifications'; -import { useFormContext } from 'react-hook-form'; export function SaveChangesModal({ isVisible, diff --git a/apps/web/src/components/templates/TemplateEditor.tsx b/apps/web/src/components/templates/TemplateEditor.tsx index 40c0668cfa3..da2ba16f1da 100644 --- a/apps/web/src/components/templates/TemplateEditor.tsx +++ b/apps/web/src/components/templates/TemplateEditor.tsx @@ -1,16 +1,22 @@ +import { useFormContext } from 'react-hook-form'; import { ChannelTypeEnum, StepTypeEnum } from '@novu/shared'; + import { useActiveIntegrations } from '../../api/hooks'; import { EmailMessagesCards } from './email-editor/EmailMessagesCards'; import { TemplateInAppEditor } from './in-app-editor/TemplateInAppEditor'; import { TemplateSMSEditor } from './TemplateSMSEditor'; -import { useTemplateController } from './useTemplateController'; +import type { IForm } from './formTypes'; import { ActivePageEnum } from '../../pages/templates/editor/TemplateEditorPage'; import { TemplatePushEditor } from './TemplatePushEditor'; import { TemplateChatEditor } from './chat-editor/TemplateChatEditor'; export const TemplateEditor = ({ activePage, templateId, activeStep }) => { const { integrations } = useActiveIntegrations(); - const { control, errors, watch } = useTemplateController(templateId); + const { + control, + formState: { errors }, + watch, + } = useFormContext(); const steps = watch('steps'); return ( diff --git a/apps/web/src/components/templates/TemplateEditorProvider.tsx b/apps/web/src/components/templates/TemplateEditorProvider.tsx index c004847d361..076c1dcbb9c 100644 --- a/apps/web/src/components/templates/TemplateEditorProvider.tsx +++ b/apps/web/src/components/templates/TemplateEditorProvider.tsx @@ -1,132 +1,315 @@ -import { ChannelTypeEnum, INotificationTrigger } from '@novu/shared'; -import { createContext, useContext, useReducer } from 'react'; - -const actionEditMode = 'editMode'; -const actionIsDirty = 'isDirty'; -const actionIsEmbedModalVisible = 'isEmbedModalVisible'; -const actionTrigger = 'trigger'; -const actionCreatedTemplateId = 'createdTemplateId'; - -const reducer = (state, action) => { - switch (action.type) { - case actionEditMode: - return { - ...state, - editMode: action.payload, - }; - case actionIsDirty: - return { - ...state, - isDirty: action.payload, - }; - case actionIsEmbedModalVisible: - return { - ...state, - isEmbedModalVisible: action.payload, - }; - case actionTrigger: - return { - ...state, - trigger: action.payload, - }; - case actionCreatedTemplateId: - return { - ...state, - createdTemplateId: action.payload, - }; - default: - throw new Error('Unspecified reducer action'); - } -}; +import { createContext, useEffect, useMemo, useCallback, useContext, useState } from 'react'; +import { useFormContext, useFieldArray } from 'react-hook-form'; +import { useParams } from 'react-router-dom'; +import { INotificationTemplate, INotificationTrigger } from '@novu/shared'; +import { showNotification } from '@mantine/notifications'; +import * as Sentry from '@sentry/react'; +import { + ICreateNotificationTemplateDto, + StepTypeEnum, + ActorTypeEnum, + ChannelCTATypeEnum, + EmailBlockTypeEnum, + IEmailBlock, + TextAlignEnum, +} from '@novu/shared'; -const TemplateEditorContext = createContext({ +import type { IForm, IStepEntity } from './formTypes'; +import { useTemplateController } from './useTemplateController'; + +const defaultEmailBlocks: IEmailBlock[] = [ + { + type: EmailBlockTypeEnum.TEXT, + content: '', + styles: { + textAlign: TextAlignEnum.LEFT, + }, + }, +]; + +interface ITemplateEditorContext { + template?: INotificationTemplate; + isLoading: boolean; + isCreating: boolean; + isUpdating: boolean; + isDeleting: boolean; + editMode: boolean; + trigger?: INotificationTrigger; + createdTemplateId?: string; + onSubmit: (data: IForm, callbacks?: { onCreateSuccess: () => void }) => Promise; + addStep: (channelType: StepTypeEnum, id: string, stepIndex?: number) => void; + deleteStep: (index: number) => void; +} + +const TemplateEditorContext = createContext({ + isLoading: false, + isCreating: false, + isUpdating: false, + isDeleting: false, editMode: true, - setEditMode: (editMode: boolean) => {}, - isDirty: false, - setIsDirty: (isDirty: boolean) => {}, - isEmbedModalVisible: false, - setIsEmbedModalVisible: (isEmbedModalVisible: boolean) => {}, trigger: undefined, - setTrigger: (trigger: INotificationTrigger) => {}, - createdTemplateId: '', - setCreatedTemplateId: (createdTemplateId: string) => {}, -} as { - editMode: boolean; - setEditMode: (editMode: boolean) => void; - isDirty: boolean; - setIsDirty: (isDirty: boolean) => void; - isEmbedModalVisible: boolean; - setIsEmbedModalVisible: (isEmbedModalVisible: boolean) => void; - trigger: INotificationTrigger | undefined; - setTrigger: (trigger: INotificationTrigger) => void; - createdTemplateId: string; - setCreatedTemplateId: (createdTemplateId: string) => void; - [key: string]: any; + createdTemplateId: undefined, + onSubmit: (() => {}) as any, + addStep: () => {}, + deleteStep: () => {}, }); const { Provider } = TemplateEditorContext; const TemplateEditorProvider = ({ children }) => { - const [state, dispatch]: [any, any] = useReducer(reducer, { - editMode: true, - isDirty: false, - isEmbedModalVisible: false, - trigger: undefined, + const { templateId = '' } = useParams<{ templateId?: string }>(); + const methods = useFormContext(); + const [{ editMode, trigger, createdTemplateId }, setState] = useState<{ + editMode: boolean; + trigger?: INotificationTrigger; + createdTemplateId?: string; + }>({ + editMode: !!templateId, }); - const setEditMode = (editMode: boolean) => { - dispatch({ - type: actionEditMode, - payload: editMode, - }); - }; - - const setIsDirty = (isDirty: boolean) => { - dispatch({ - type: actionIsDirty, - payload: isDirty, - }); - }; - - const setIsEmbedModalVisible = (isEmbedModalVisible: boolean) => { - dispatch({ - type: actionIsEmbedModalVisible, - payload: isEmbedModalVisible, - }); - }; - - const setTrigger = (trigger: INotificationTrigger) => { - dispatch({ - type: actionTrigger, - payload: trigger, - }); - }; - - const setCreatedTemplateId = (createdTemplateId: string) => { - dispatch({ - type: actionCreatedTemplateId, - payload: createdTemplateId, - }); - }; - - return ( - - {children} - + const setTrigger = useCallback( + (newTrigger: INotificationTrigger) => setState((old) => ({ ...old, trigger: newTrigger })), + [setState] + ); + + const setCreatedTemplateId = useCallback( + (newCreatedTemplateId: string) => setState((old) => ({ ...old, createdTemplateId: newCreatedTemplateId })), + [setState] + ); + + const { + reset, + formState: { isDirty: isDirtyForm }, + } = methods; + + const steps = useFieldArray({ + control: methods.control, + name: 'steps', + }); + + const { + template, + isLoading, + isCreating, + isUpdating, + isDeleting, + updateNotificationTemplate, + createNotificationTemplate, + } = useTemplateController(templateId); + + useEffect(() => { + if (isDirtyForm) { + return; + } + + if (template && template.steps) { + const formValues: IForm = { + notificationGroupId: template._notificationGroupId, + name: template.name, + description: template.description ?? '', + tags: template.tags, + identifier: template.triggers[0].identifier, + critical: template.critical, + preferenceSettings: template.preferenceSettings, + steps: [], + }; + + formValues.steps = (template.steps as IStepEntity[]).map((item) => { + if (item.template.type === StepTypeEnum.EMAIL) { + return { + ...item, + ...(!item.replyCallback && { + replyCallback: { + active: false, + url: '', + }, + }), + template: { + ...item.template, + layoutId: item.template._layoutId ?? '', + preheader: item.template.preheader ?? '', + content: item.template.content, + ...(item.template?.contentType === 'customHtml' && { + htmlContent: item.template.content as string, + content: [], + }), + }, + }; + } + if (item.template.type === StepTypeEnum.IN_APP) { + return { + ...item, + template: { + ...item.template, + feedId: item.template._feedId ?? '', + actor: item.template.actor?.type + ? item.template.actor + : { + type: ActorTypeEnum.NONE, + data: null, + }, + enableAvatar: item.template.actor?.type && item.template.actor.type !== ActorTypeEnum.NONE ? true : false, + cta: { + data: item.template.cta?.data ?? { url: '' }, + type: ChannelCTATypeEnum.REDIRECT, + action: item.template.cta?.action ?? '', + }, + }, + }; + } + + return item; + }); + + reset(formValues); + setTrigger(template.triggers[0]); + } + }, [isDirtyForm, template]); + + const onSubmit = useCallback( + async (data: IForm, { onCreateSuccess } = {}) => { + let stepsToSave = data.steps; + + stepsToSave = stepsToSave.map((step: IStepEntity) => { + if (step.template.type === StepTypeEnum.EMAIL && step.template.contentType === 'customHtml') { + step.template.content = step.template.htmlContent as string; + } + + if (step.template.type === StepTypeEnum.IN_APP) { + if (!step.template.enableAvatar) { + step.template.actor = { + type: ActorTypeEnum.NONE, + data: null, + }; + } + + delete step.template.enableAvatar; + } + + return step; + }); + + const payloadToCreate: ICreateNotificationTemplateDto = { + name: data.name, + notificationGroupId: data.notificationGroupId, + description: data.description !== '' ? data.description : undefined, + tags: data.tags, + critical: data.critical, + preferenceSettings: data.preferenceSettings, + steps: stepsToSave, + }; + + try { + if (editMode) { + const response = await updateNotificationTemplate({ + id: templateId, + data: { + ...payloadToCreate, + identifier: data.identifier, + }, + }); + setTrigger(response.triggers[0]); + reset(data); + } else { + const response = await createNotificationTemplate({ ...payloadToCreate, active: true, draft: false }); + setTrigger(response.triggers[0]); + setCreatedTemplateId(response._id || ''); + reset(payloadToCreate); + onCreateSuccess?.(); + } + } catch (e: any) { + Sentry.captureException(e); + + showNotification({ + message: e.message || 'Un-expected error occurred', + color: 'red', + }); + } + }, + [ + templateId, + editMode, + updateNotificationTemplate, + createNotificationTemplate, + reset, + setTrigger, + setCreatedTemplateId, + ] + ); + + const addStep = useCallback( + (channelType: StepTypeEnum, id: string, stepIndex?: number) => { + const newStep: IStepEntity = { + _id: id, + template: { + type: channelType, + content: channelType === StepTypeEnum.EMAIL ? defaultEmailBlocks : '', + contentType: 'editor', + variables: [], + ...(channelType === StepTypeEnum.IN_APP && { + actor: { + type: ActorTypeEnum.NONE, + data: null, + }, + enableAvatar: false, + }), + }, + active: true, + shouldStopOnFail: false, + filters: [], + ...(channelType === StepTypeEnum.EMAIL && { + replyCallback: { + active: false, + }, + }), + }; + + if (stepIndex != null) { + steps.insert(stepIndex, newStep); + } else { + steps.append(newStep); + } + }, + [steps] ); + + const deleteStep = useCallback( + (index: number) => { + steps.remove(index); + }, + [steps] + ); + + const value = useMemo( + () => ({ + template, + isLoading, + isCreating, + isUpdating, + isDeleting, + editMode: editMode, + trigger: trigger, + createdTemplateId: createdTemplateId, + onSubmit, + addStep, + deleteStep, + }), + [ + template, + isLoading, + isCreating, + isUpdating, + isDeleting, + editMode, + trigger, + createdTemplateId, + onSubmit, + addStep, + deleteStep, + ] + ); + + return {children}; }; const useTemplateEditor = () => useContext(TemplateEditorContext); diff --git a/apps/web/src/components/templates/TemplateFormProvider.tsx b/apps/web/src/components/templates/TemplateFormProvider.tsx index 334ed07d24d..03361959840 100644 --- a/apps/web/src/components/templates/TemplateFormProvider.tsx +++ b/apps/web/src/components/templates/TemplateFormProvider.tsx @@ -1,10 +1,11 @@ -import { FormProvider, useFieldArray, useForm } from 'react-hook-form'; -import { FieldArrayProvider } from './FieldArrayProvider'; -import { IForm } from './useTemplateController'; +import { FormProvider, useForm } from 'react-hook-form'; import { zodResolver } from '@hookform/resolvers/zod'; import * as z from 'zod'; +import { DevTool } from '@hookform/devtools'; import { ChannelTypeEnum, DigestTypeEnum, StepTypeEnum, DelayTypeEnum } from '@novu/shared'; +import type { IForm } from './formTypes'; + const schema = z .object({ name: z @@ -19,11 +20,10 @@ const schema = z type: 'string', inclusive: true, message: 'Required - Notification Name', - path: ['name'], }); } }), - notificationGroup: z + notificationGroupId: z .string({ invalid_type_error: 'Required - Notification Group', }) @@ -35,7 +35,6 @@ const schema = z type: 'string', inclusive: true, message: 'Required - Notification Group', - path: ['notificationGroup'], }); } }), @@ -187,19 +186,33 @@ const schema = z }) .passthrough(); +const defaultValues: IForm = { + name: '', + notificationGroupId: '', + description: '', + identifier: '', + tags: [], + critical: false, + steps: [], + preferenceSettings: { + email: true, + sms: true, + in_app: true, + chat: true, + push: true, + }, +}; + export const TemplateFormProvider = ({ children }) => { const methods = useForm({ resolver: zodResolver(schema), - }); - - const steps = useFieldArray({ - control: methods.control, - name: 'steps', + defaultValues, }); return ( - {children} + {children} + ); }; diff --git a/apps/web/src/components/templates/TemplatePageHeader.tsx b/apps/web/src/components/templates/TemplatePageHeader.tsx index de2bcbc9f98..f8cdba0c65a 100644 --- a/apps/web/src/components/templates/TemplatePageHeader.tsx +++ b/apps/web/src/components/templates/TemplatePageHeader.tsx @@ -1,11 +1,13 @@ import { Center, Container, Grid, Group } from '@mantine/core'; + import { Button, colors, Switch, Title, Text } from '../../design-system'; import { ArrowLeft } from '../../design-system/icons'; import { ActivePageEnum } from '../../pages/templates/editor/TemplateEditorPage'; import { useEnvController } from '../../store/useEnvController'; import { When } from '../utils/When'; +import { useTemplateEditor } from './TemplateEditorProvider'; import { useStatusChangeControllerHook } from './useStatusChangeController'; -import { useTemplateController } from './useTemplateController'; +import { useTemplateFetcher } from './useTemplateFetcher'; const Header = ({ activePage, editMode }: { editMode: boolean; activePage: ActivePageEnum }) => { if (activePage === ActivePageEnum.SETTINGS) { @@ -59,7 +61,8 @@ export const TemplatePageHeader = ({ setActivePage, onTestWorkflowClicked, }: Props) => { - const { editMode, template } = useTemplateController(templateId); + const { editMode } = useTemplateEditor(); + const { template } = useTemplateFetcher(templateId); const { readonly } = useEnvController(); const { isTemplateActive, changeActiveStatus, isStatusChangeLoading } = useStatusChangeControllerHook( @@ -131,7 +134,13 @@ export const TemplatePageHeader = ({ - diff --git a/apps/web/src/components/templates/TemplatePushEditor.tsx b/apps/web/src/components/templates/TemplatePushEditor.tsx index 415f468e993..e4b9678a4cf 100644 --- a/apps/web/src/components/templates/TemplatePushEditor.tsx +++ b/apps/web/src/components/templates/TemplatePushEditor.tsx @@ -1,11 +1,14 @@ import { Control, Controller, useFormContext } from 'react-hook-form'; + import { LackIntegrationError } from './LackIntegrationError'; -import { IForm } from './useTemplateController'; +import type { IForm } from './formTypes'; import { Textarea } from '../../design-system'; import { useEnvController } from '../../store/useEnvController'; import { VariableManager } from './VariableManager'; import { useVariablesManager } from '../../hooks/useVariablesManager'; +const templateFields = ['content', 'title']; + export function TemplatePushEditor({ control, index, @@ -20,19 +23,20 @@ export function TemplatePushEditor({ const { formState: { errors }, } = useFormContext(); - const variablesArray = useVariablesManager(index, ['content', 'title']); + const variablesArray = useVariablesManager(index, templateFields); return ( <> {!isIntegrationActive ? : null} (