Created
November 12, 2024 23:28
-
-
Save corpix/6e9485d3be8c9f39ffc9ae1cdb3e9064 to your computer and use it in GitHub Desktop.
nocodb nix derivation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { stdenv, fetchFromGitHub, lib | |
| , python3, pkg-config, nodejs, pnpm, openssl, sqlite, jq | |
| , ... }: | |
| stdenv.mkDerivation | |
| (finalAttrs: rec { | |
| pname = "nocodb"; | |
| version = "0.257.2"; | |
| src = fetchFromGitHub { | |
| owner = "nocodb"; | |
| repo = "nocodb"; | |
| rev = version; | |
| hash = "sha256-hB+Mpbm29vC/48+1yR1w2EVJSE7h9GS+zJbE/NmXcPY="; | |
| }; | |
| patches = [ | |
| # note: patching dependencies to add swagger tooling | |
| # (originally it was downloaded during build) | |
| ./swagger.patch | |
| ./gtfo.patch | |
| ]; | |
| pnpmDeps = pnpm.fetchDeps { | |
| inherit (finalAttrs) pname version src patches buildInputs; | |
| hash = "sha256-CfTUBMNGPtUzXF8fkKwXom20tX85SBIcZSxSHgWJTp8="; | |
| }; | |
| nativeBuildInputs = [ | |
| nodejs | |
| pkg-config | |
| python3 | |
| jq | |
| pnpm.configHook | |
| ]; | |
| buildInputs = [openssl sqlite]; | |
| # note: disabling downloading nodejs & fixing scripts bin discovery | |
| postPatch = '' | |
| cat <<EOF > .npmrc | |
| node-version=${nodejs.version} | |
| engine-strict=false | |
| shamefully-hoist=true | |
| EOF | |
| ''; | |
| # note: nuxt telemetry causes strange errors related to lack of tty | |
| # note: for some reason pnpm doesn't build sqlite automatically | |
| buildPhase = '' | |
| export NUXT_TELEMETRY_DISABLED=1 | |
| cd node_modules/.pnpm/sqlite3@*_encoding@*/node_modules/sqlite3 | |
| npm rebuild --build-from-source --nodedir=${nodejs} | |
| cd - | |
| pnpm --filter=nocodb-sdk run build | |
| cd packages/nc-gui | |
| pnpm run generate | |
| cd - | |
| cd packages/nocodb | |
| EE=true ../../node_modules/.bin/webpack --config webpack.local.config.js | |
| ''; | |
| installPhase = '' | |
| mkdir -p $out/usr/share/nocodb | |
| cp package.json $out/usr/share/nocodb | |
| cp docker/main.js $out/usr/share/nocodb/index.js | |
| cp -r ../../packages/nc-gui/dist/ $out/usr/share/nocodb/nc-gui | |
| cp -r ../../node_modules $out/usr/share/nocodb | |
| mkdir $out/bin | |
| cat <<'EOF' > $out/bin/nocodb | |
| #! /bin/sh | |
| export NC_DISABLE_TELE=true | |
| export NUXT_TELEMETRY_DISABLED=1 | |
| export NC_CONNECT_TO_EXTERNAL_DB_DISABLED=${"$"}{NC_CONNECT_TO_EXTERNAL_DB_DISABLED:-true} | |
| export NC_REQUEST_BODY_SIZE=${"$"}{NC_REQUEST_BODY_SIZE:-10485760} | |
| EOF | |
| cat <<EOF >> $out/bin/nocodb | |
| export NODE_PATH=$out/usr/share/nocodb/node_modules | |
| exec ${nodejs}/bin/node $out/usr/share/nocodb/index.js | |
| EOF | |
| chmod +x $out/bin/nocodb | |
| ''; | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/packages/nc-gui/components/dashboard/Sidebar/Feed.vue b/packages/nc-gui/components/dashboard/Sidebar/Feed.vue | |
| index 799dba224..a3240109d 100644 | |
| --- a/packages/nc-gui/components/dashboard/Sidebar/Feed.vue | |
| +++ b/packages/nc-gui/components/dashboard/Sidebar/Feed.vue | |
| @@ -31,7 +31,7 @@ const gotoFeed = () => navigateToFeed() | |
| 'font-semibold': isFeedPageOpened, | |
| }" | |
| > | |
| - <div class="flex flex-1 w-full items-center gap-3"> | |
| + <div class="flex flex-1 w-full items-center gap-3" style="display: none"> | |
| <GeneralIcon icon="megaPhone" class="!h-4" /> | |
| <span class="">What’s New!</span> | |
| </div> | |
| diff --git a/packages/nc-gui/components/general/JoinCloud.vue b/packages/nc-gui/components/general/JoinCloud.vue | |
| index 7e3723ab0..187966855 100644 | |
| --- a/packages/nc-gui/components/general/JoinCloud.vue | |
| +++ b/packages/nc-gui/components/general/JoinCloud.vue | |
| @@ -1,7 +1,7 @@ | |
| <script lang="ts" setup></script> | |
| <template> | |
| - <div class="flex flex-row items-center w-full bg-white rounded-lg border-1 border-brand-500 shadow-sm mb-0.5 overflow-hidden"> | |
| + <div class="flex flex-row items-center w-full bg-white rounded-lg border-1 border-brand-500 shadow-sm mb-0.5 overflow-hidden" style="display: none"> | |
| <a | |
| v-e="['c:navbar:join-cloud']" | |
| class="flex flex-grow !no-underline items-center justify-center border-r-1 h-full hover:bg-gray-100" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/package.json b/package.json | |
| index fcfc40ef7..3cf92da68 100644 | |
| --- a/package.json | |
| +++ b/package.json | |
| @@ -19,7 +19,8 @@ | |
| "fs": "0.0.1-security", | |
| "lerna": "^7.4.2", | |
| "husky": "^8.0.3", | |
| - "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz" | |
| + "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz", | |
| + "swagger-typescript-api": "10.0.3" | |
| }, | |
| "husky": { | |
| "hooks": { | |
| diff --git a/packages/nocodb-sdk/package.json b/packages/nocodb-sdk/package.json | |
| index fe36b1f31..245b80141 100644 | |
| --- a/packages/nocodb-sdk/package.json | |
| +++ b/packages/nocodb-sdk/package.json | |
| @@ -35,7 +35,7 @@ | |
| "test:prettier": "prettier \"src/**/*.ts\" --list-different", | |
| "test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"", | |
| "watch:build": "tsc -p tsconfig.json -w", | |
| - "generate:sdk": "pnpm dlx swagger-typescript-api@10.0.3 -r -p ../nocodb/src/schema/swagger.json -o ./src/lib/ --axios --unwrap-response-data --module-name-first-tag --type-suffix=Type --templates ../../scripts/sdk/templates", | |
| + "generate:sdk": "swagger-typescript-api -r -p ../nocodb/src/schema/swagger.json -o ./src/lib/ --axios --unwrap-response-data --module-name-first-tag --type-suffix=Type --templates ../../scripts/sdk/templates", | |
| "preinstall": "npx only-allow pnpm" | |
| }, | |
| "dependencies": { | |
| diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml | |
| index 52d5332dc..e0a618160 100644 | |
| --- a/pnpm-lock.yaml | |
| +++ b/pnpm-lock.yaml | |
| @@ -31,6 +31,9 @@ importers: | |
| lerna: | |
| specifier: ^7.4.2 | |
| version: 7.4.2(encoding@0.1.13) | |
| + swagger-typescript-api: | |
| + specifier: 10.0.3 | |
| + version: 10.0.3(encoding@0.1.13) | |
| xlsx: | |
| specifier: https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz | |
| version: https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz | |
| @@ -39,22 +42,22 @@ importers: | |
| dependencies: | |
| '@ckpack/vue-color': | |
| specifier: ^1.5.0 | |
| - version: 1.5.0(vue@3.5.11) | |
| + version: 1.5.0(vue@3.5.12) | |
| '@iconify/vue': | |
| specifier: ^4.1.2 | |
| - version: 4.1.2(vue@3.5.11) | |
| + version: 4.1.2(vue@3.5.12) | |
| '@nuxt/image': | |
| specifier: ^1.3.0 | |
| version: 1.3.0(rollup@4.17.2) | |
| '@pinia/nuxt': | |
| specifier: ^0.5.1 | |
| - version: 0.5.1(rollup@4.17.2)(vue@3.5.11) | |
| + version: 0.5.1(rollup@4.17.2)(vue@3.5.12) | |
| '@sentry/tracing': | |
| specifier: ^7.72.0 | |
| version: 7.114.0 | |
| '@sentry/vue': | |
| specifier: ^7.72.0 | |
| - version: 7.118.0(vue@3.5.11) | |
| + version: 7.118.0(vue@3.5.12) | |
| '@tiptap/extension-link': | |
| specifier: ^2.4.0 | |
| version: 2.4.0(@tiptap/core@2.4.0(@tiptap/pm@2.4.0))(@tiptap/pm@2.4.0) | |
| @@ -78,31 +81,31 @@ importers: | |
| version: 2.4.0(@tiptap/pm@2.4.0) | |
| '@tiptap/vue-3': | |
| specifier: 2.4.0 | |
| - version: 2.4.0(@tiptap/core@2.4.0(@tiptap/pm@2.4.0))(@tiptap/pm@2.4.0)(vue@3.5.11) | |
| + version: 2.4.0(@tiptap/core@2.4.0(@tiptap/pm@2.4.0))(@tiptap/pm@2.4.0)(vue@3.5.12) | |
| '@vue-flow/additional-components': | |
| specifier: ^1.3.3 | |
| - version: 1.3.3(@vue-flow/core@1.31.0(vue@3.5.11))(vue@3.5.11) | |
| + version: 1.3.3(@vue-flow/core@1.31.0(vue@3.5.12))(vue@3.5.12) | |
| '@vue-flow/core': | |
| specifier: ^1.30.1 | |
| - version: 1.31.0(vue@3.5.11) | |
| + version: 1.31.0(vue@3.5.12) | |
| '@vuelidate/core': | |
| specifier: ^2.0.3 | |
| - version: 2.0.3(vue@3.5.11) | |
| + version: 2.0.3(vue@3.5.12) | |
| '@vuelidate/validators': | |
| specifier: ^2.0.4 | |
| - version: 2.0.4(vue@3.5.11) | |
| + version: 2.0.4(vue@3.5.12) | |
| '@vueuse/core': | |
| specifier: ^10.7.2 | |
| - version: 10.7.2(vue@3.5.11) | |
| + version: 10.7.2(vue@3.5.12) | |
| '@vueuse/integrations': | |
| specifier: ^10.7.2 | |
| - version: 10.7.2(async-validator@4.2.5)(axios@1.6.8)(focus-trap@7.5.4)(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.5.11) | |
| + version: 10.7.2(async-validator@4.2.5)(axios@1.6.8)(focus-trap@7.5.4)(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.5.12) | |
| '@vueuse/motion': | |
| specifier: ^2.2.5 | |
| - version: 2.2.5(magicast@0.3.4)(rollup@4.17.2)(vue@3.5.11)(webpack-sources@3.2.3) | |
| + version: 2.2.5(magicast@0.3.4)(rollup@4.17.2)(vue@3.5.12)(webpack-sources@3.2.3) | |
| ant-design-vue: | |
| specifier: ^3.2.20 | |
| - version: 3.2.20(vue@3.5.11) | |
| + version: 3.2.20(vue@3.5.12) | |
| chart.js: | |
| specifier: ^4.4.2 | |
| version: 4.4.2 | |
| @@ -123,10 +126,10 @@ importers: | |
| version: 1.1.9 | |
| embla-carousel-vue: | |
| specifier: ^8.1.7 | |
| - version: 8.1.7(vue@3.5.11) | |
| + version: 8.1.7(vue@3.5.12) | |
| emoji-mart-vue-fast: | |
| specifier: ^15.0.2 | |
| - version: 15.0.2(vue@3.5.11) | |
| + version: 15.0.2(vue@3.5.12) | |
| file-saver: | |
| specifier: ^2.0.5 | |
| version: 2.0.5 | |
| @@ -186,10 +189,10 @@ importers: | |
| version: 2.3.0 | |
| pdfobject-vue: | |
| specifier: ^0.0.4 | |
| - version: 0.0.4(pdfobject@2.3.0)(vue@3.5.11) | |
| + version: 0.0.4(pdfobject@2.3.0)(vue@3.5.12) | |
| pinia: | |
| specifier: ^2.1.7 | |
| - version: 2.1.7(vue@3.5.11) | |
| + version: 2.1.7(vue@3.5.12) | |
| plyr: | |
| specifier: ^3.7.8 | |
| version: 3.7.8 | |
| @@ -243,28 +246,28 @@ importers: | |
| version: 13.11.0 | |
| vue-advanced-cropper: | |
| specifier: ^2.8.8 | |
| - version: 2.8.8(vue@3.5.11) | |
| + version: 2.8.8(vue@3.5.12) | |
| vue-barcode-reader: | |
| specifier: ^1.0.3 | |
| version: 1.0.3 | |
| vue-chartjs: | |
| specifier: ^5.3.1 | |
| - version: 5.3.1(chart.js@4.4.2)(vue@3.5.11) | |
| + version: 5.3.1(chart.js@4.4.2)(vue@3.5.12) | |
| vue-dompurify-html: | |
| specifier: ^3.1.2 | |
| - version: 3.1.2(vue@3.5.11) | |
| + version: 3.1.2(vue@3.5.12) | |
| vue-github-button: | |
| specifier: ^3.1.0 | |
| version: 3.1.0 | |
| vue-i18n: | |
| specifier: ^9.9.1 | |
| - version: 9.9.1(vue@3.5.11) | |
| + version: 9.9.1(vue@3.5.12) | |
| vue-qrcode-reader: | |
| specifier: 3.1.9 | |
| version: 3.1.9 | |
| vue3-calendar-heatmap: | |
| specifier: ^2.0.5 | |
| - version: 2.0.5(tippy.js@6.3.7)(vue@3.5.11) | |
| + version: 2.0.5(tippy.js@6.3.7)(vue@3.5.12) | |
| vue3-contextmenu: | |
| specifier: ^0.2.12 | |
| version: 0.2.12 | |
| @@ -273,10 +276,10 @@ importers: | |
| version: 1.0.7 | |
| vue3-text-clamp: | |
| specifier: ^0.1.2 | |
| - version: 0.1.2(resize-detector@0.3.0)(vue@3.5.11) | |
| + version: 0.1.2(resize-detector@0.3.0)(vue@3.5.12) | |
| vuedraggable: | |
| specifier: ^4.1.0 | |
| - version: 4.1.0(vue@3.5.11) | |
| + version: 4.1.0(vue@3.5.12) | |
| xlsx: | |
| specifier: https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz | |
| version: https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz | |
| @@ -352,7 +355,7 @@ importers: | |
| version: 1.1.34 | |
| '@intlify/unplugin-vue-i18n': | |
| specifier: ^0.13.0 | |
| - version: 0.13.0(rollup@4.17.2)(vue-i18n@9.9.1(vue@3.5.11)) | |
| + version: 0.13.0(rollup@4.17.2)(vue-i18n@9.9.1(vue@3.5.12)) | |
| '@types/d3-scale': | |
| specifier: ^4.0.8 | |
| version: 4.0.8 | |
| @@ -418,7 +421,7 @@ importers: | |
| version: 2.4.6 | |
| '@vueuse/nuxt': | |
| specifier: ^10.7.2 | |
| - version: 10.7.2(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vue@3.5.11) | |
| + version: 10.7.2(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vue@3.5.12) | |
| '@windicss/plugin-animations': | |
| specifier: ^1.0.9 | |
| version: 1.0.9 | |
| @@ -442,7 +445,7 @@ importers: | |
| version: 6.0.4(encoding@0.1.13) | |
| nuxt: | |
| specifier: ^3.11.2 | |
| - version: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) | |
| + version: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) | |
| nuxt-windicss: | |
| specifier: ^2.6.1 | |
| version: 2.6.1(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) | |
| @@ -460,7 +463,7 @@ importers: | |
| version: 0.18.5(@vue/compiler-sfc@3.4.27) | |
| unplugin-vue-components: | |
| specifier: ^0.26.0 | |
| - version: 0.26.0(@babel/parser@7.25.7)(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(rollup@4.17.2)(vue@3.5.11) | |
| + version: 0.26.0(@babel/parser@7.25.7)(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(rollup@4.17.2)(vue@3.5.12) | |
| vite-plugin-monaco-editor: | |
| specifier: ^1.1.0 | |
| version: 1.1.0(monaco-editor@0.50.0) | |
| @@ -481,10 +484,10 @@ importers: | |
| version: 1.0.5 | |
| typescript: | |
| specifier: latest | |
| - version: 5.4.5 | |
| + version: 5.6.3 | |
| vue-extensible-mail: | |
| specifier: '^0.0.3 ' | |
| - version: 0.0.3(typescript@5.4.5) | |
| + version: 0.0.3(typescript@5.6.3) | |
| devDependencies: | |
| '@types/html-entities-decoder': | |
| specifier: ^1.0.2 | |
| @@ -549,10 +552,10 @@ importers: | |
| version: 3.2.0(eslint@8.56.0) | |
| eslint-plugin-functional: | |
| specifier: ^5.0.8 | |
| - version: 5.0.8(eslint@8.56.0)(typescript@5.3.2) | |
| + version: 5.0.8(eslint@8.56.0)(typescript@5.6.3) | |
| eslint-plugin-import: | |
| specifier: ^2.29.1 | |
| - version: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2))(eslint@8.56.0) | |
| + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.56.0))(eslint@8.56.0) | |
| eslint-plugin-prettier: | |
| specifier: ^4.2.1 | |
| version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.56.0))(eslint@8.56.0)(prettier@2.8.8) | |
| @@ -910,7 +913,7 @@ importers: | |
| version: 10.3.2(webpack-cli@5.1.4(webpack@5.90.1)) | |
| '@nestjs/schematics': | |
| specifier: ^10.1.1 | |
| - version: 10.1.1(chokidar@3.6.0)(typescript@5.3.2) | |
| + version: 10.1.1(chokidar@3.6.0)(typescript@5.6.3) | |
| '@nestjs/testing': | |
| specifier: ^10.3.8 | |
| version: 10.3.8(@nestjs/common@10.3.8(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.8(@nestjs/common@10.3.8(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/platform-express@10.3.8)(@nestjs/websockets@10.3.8)(encoding@0.1.13)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/platform-express@10.3.8(@nestjs/common@10.3.8(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.8)) | |
| @@ -949,10 +952,10 @@ importers: | |
| version: 2.0.16 | |
| '@typescript-eslint/eslint-plugin': | |
| specifier: ^6.21.0 | |
| - version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2))(eslint@8.56.0)(typescript@5.3.2) | |
| + version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) | |
| '@typescript-eslint/parser': | |
| specifier: ^6.21.0 | |
| - version: 6.21.0(eslint@8.56.0)(typescript@5.3.2) | |
| + version: 6.21.0(eslint@8.56.0)(typescript@5.6.3) | |
| chai: | |
| specifier: ^4.4.1 | |
| version: 4.4.1 | |
| @@ -973,16 +976,16 @@ importers: | |
| version: 3.2.0(eslint@8.56.0) | |
| eslint-plugin-functional: | |
| specifier: ^5.0.8 | |
| - version: 5.0.8(eslint@8.56.0)(typescript@5.3.2) | |
| + version: 5.0.8(eslint@8.56.0)(typescript@5.6.3) | |
| eslint-plugin-import: | |
| specifier: ^2.29.1 | |
| - version: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2))(eslint@8.56.0) | |
| + version: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0) | |
| eslint-plugin-prettier: | |
| specifier: ^4.2.1 | |
| version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.56.0))(eslint@8.56.0)(prettier@2.8.8) | |
| jest: | |
| specifier: 29.7.0 | |
| - version: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)) | |
| + version: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)) | |
| mocha: | |
| specifier: ^10.3.0 | |
| version: 10.3.0 | |
| @@ -1000,19 +1003,19 @@ importers: | |
| version: 6.3.4 | |
| ts-jest: | |
| specifier: 29.1.2 | |
| - version: 29.1.2(@babel/core@7.24.3)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.3))(jest@29.7.0)(typescript@5.3.2) | |
| + version: 29.1.2(@babel/core@7.24.3)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.3))(jest@29.7.0)(typescript@5.6.3) | |
| ts-loader: | |
| specifier: ^9.5.1 | |
| - version: 9.5.1(typescript@5.3.2)(webpack@5.90.1(webpack-cli@5.1.4)) | |
| + version: 9.5.1(typescript@5.6.3)(webpack@5.90.1(webpack-cli@5.1.4)) | |
| ts-node: | |
| specifier: ^10.9.2 | |
| - version: 10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2) | |
| + version: 10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3) | |
| tsconfig-paths: | |
| specifier: ^4.2.0 | |
| version: 4.2.0 | |
| typescript: | |
| specifier: latest | |
| - version: 5.3.2 | |
| + version: 5.6.3 | |
| webpack-cli: | |
| specifier: ^5.1.4 | |
| version: 5.1.4(webpack@5.90.1) | |
| @@ -1034,10 +1037,10 @@ importers: | |
| version: 29.5.12 | |
| '@typescript-eslint/eslint-plugin': | |
| specifier: ^6.21.0 | |
| - version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2))(eslint@8.56.0)(typescript@5.3.2) | |
| + version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) | |
| '@typescript-eslint/parser': | |
| specifier: ^6.21.0 | |
| - version: 6.21.0(eslint@8.56.0)(typescript@5.3.2) | |
| + version: 6.21.0(eslint@8.56.0)(typescript@5.6.3) | |
| cspell: | |
| specifier: ^4.2.8 | |
| version: 4.2.8 | |
| @@ -1052,10 +1055,10 @@ importers: | |
| version: 3.2.0(eslint@8.56.0) | |
| eslint-plugin-functional: | |
| specifier: ^5.0.8 | |
| - version: 5.0.8(eslint@8.56.0)(typescript@5.3.2) | |
| + version: 5.0.8(eslint@8.56.0)(typescript@5.6.3) | |
| eslint-plugin-import: | |
| specifier: ^2.29.1 | |
| - version: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2))(eslint@8.56.0) | |
| + version: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0) | |
| eslint-plugin-prettier: | |
| specifier: ^4.2.1 | |
| version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.56.0))(eslint@8.56.0)(prettier@2.8.8) | |
| @@ -1070,13 +1073,13 @@ importers: | |
| version: 5.0.7 | |
| ts-jest: | |
| specifier: ^29.1.2 | |
| - version: 29.1.2(@babel/core@7.24.3)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.3))(jest@29.7.0)(typescript@5.3.2) | |
| + version: 29.1.2(@babel/core@7.24.3)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.3))(jest@29.7.0)(typescript@5.6.3) | |
| tsc-alias: | |
| specifier: ^1.8.10 | |
| version: 1.8.10 | |
| typescript: | |
| specifier: latest | |
| - version: 5.3.2 | |
| + version: 5.6.3 | |
| tests/playwright: | |
| dependencies: | |
| @@ -2372,6 +2375,9 @@ packages: | |
| resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} | |
| engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
| + '@exodus/schemasafe@1.3.0': | |
| + resolution: {integrity: sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==} | |
| + | |
| '@fastify/accept-negotiator@1.1.0': | |
| resolution: {integrity: sha512-OIHZrb2ImZ7XG85HXOONLcJWGosv7sIvM2ifAPQVhg9Lv7qdmMBNVaai4QTdyuaqbKM5eO6sLSQOYI7wEQeCJQ==} | |
| engines: {node: '>=14'} | |
| @@ -2434,10 +2440,12 @@ packages: | |
| '@humanwhocodes/config-array@0.11.10': | |
| resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} | |
| engines: {node: '>=10.10.0'} | |
| + deprecated: Use @eslint/config-array instead | |
| '@humanwhocodes/config-array@0.11.13': | |
| resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} | |
| engines: {node: '>=10.10.0'} | |
| + deprecated: Use @eslint/config-array instead | |
| '@humanwhocodes/module-importer@1.0.1': | |
| resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} | |
| @@ -2445,9 +2453,11 @@ packages: | |
| '@humanwhocodes/object-schema@1.2.1': | |
| resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} | |
| + deprecated: Use @eslint/object-schema instead | |
| '@humanwhocodes/object-schema@2.0.1': | |
| resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} | |
| + deprecated: Use @eslint/object-schema instead | |
| '@hutson/parse-repository-url@3.0.2': | |
| resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} | |
| @@ -5155,6 +5165,9 @@ packages: | |
| '@types/parse-github-url@1.0.3': | |
| resolution: {integrity: sha512-7sTbCVmSVzK/iAsHGIxoqiyAnqix9opZm68lOvaU6DBx9EQ9kHMSp0y7Criu2OCsZ9wDllEyCRU+LU4hPRxXUA==} | |
| + '@types/parse-json@4.0.2': | |
| + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} | |
| + | |
| '@types/passport-google-oauth20@2.0.16': | |
| resolution: {integrity: sha512-ayXK2CJ7uVieqhYOc6k/pIr5pcQxOLB6kBev+QUGS7oEZeTgIs1odDobXRqgfBPvXzl0wXCQHftV5220czZCPA==} | |
| @@ -5212,6 +5225,9 @@ packages: | |
| '@types/supertest@2.0.16': | |
| resolution: {integrity: sha512-6c2ogktZ06tr2ENoZivgm7YnprnhYE4ZoXGMY+oA7IuAf17M8FWvujXZGmxLv8y0PTyts4x5A+erSwVUFA8XSg==} | |
| + '@types/swagger-schema-official@2.0.22': | |
| + resolution: {integrity: sha512-7yQiX6MWSFSvc/1wW5smJMZTZ4fHOd+hqLr3qr/HONDxHEa2bnYAsOcGBOEqFIjd4yetwMOdEDdeW+udRAQnHA==} | |
| + | |
| '@types/throttle-debounce@2.1.0': | |
| resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==} | |
| @@ -5612,24 +5628,36 @@ packages: | |
| '@vue/compiler-core@3.5.11': | |
| resolution: {integrity: sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==} | |
| + '@vue/compiler-core@3.5.12': | |
| + resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} | |
| + | |
| '@vue/compiler-dom@3.4.27': | |
| resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==} | |
| '@vue/compiler-dom@3.5.11': | |
| resolution: {integrity: sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==} | |
| + '@vue/compiler-dom@3.5.12': | |
| + resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==} | |
| + | |
| '@vue/compiler-sfc@3.4.27': | |
| resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==} | |
| '@vue/compiler-sfc@3.5.11': | |
| resolution: {integrity: sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==} | |
| + '@vue/compiler-sfc@3.5.12': | |
| + resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==} | |
| + | |
| '@vue/compiler-ssr@3.4.27': | |
| resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==} | |
| '@vue/compiler-ssr@3.5.11': | |
| resolution: {integrity: sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==} | |
| + '@vue/compiler-ssr@3.5.12': | |
| + resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==} | |
| + | |
| '@vue/devtools-api@6.5.0': | |
| resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==} | |
| @@ -5660,22 +5688,22 @@ packages: | |
| unocss: '>=0.50.0-0' | |
| vue: latest | |
| - '@vue/reactivity@3.5.11': | |
| - resolution: {integrity: sha512-Nqo5VZEn8MJWlCce8XoyVqHZbd5P2NH+yuAaFzuNSR96I+y1cnuUiq7xfSG+kyvLSiWmaHTKP1r3OZY4mMD50w==} | |
| + '@vue/reactivity@3.5.12': | |
| + resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==} | |
| - '@vue/runtime-core@3.5.11': | |
| - resolution: {integrity: sha512-7PsxFGqwfDhfhh0OcDWBG1DaIQIVOLgkwA5q6MtkPiDFjp5gohVnJEahSktwSFLq7R5PtxDKy6WKURVN1UDbzA==} | |
| + '@vue/runtime-core@3.5.12': | |
| + resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==} | |
| - '@vue/runtime-dom@3.5.11': | |
| - resolution: {integrity: sha512-GNghjecT6IrGf0UhuYmpgaOlN7kxzQBhxWEn08c/SQDxv1yy4IXI1bn81JgEpQ4IXjRxWtPyI8x0/7TF5rPfYQ==} | |
| + '@vue/runtime-dom@3.5.12': | |
| + resolution: {integrity: sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==} | |
| '@vue/server-renderer@3.4.27': | |
| resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==} | |
| peerDependencies: | |
| vue: latest | |
| - '@vue/server-renderer@3.5.11': | |
| - resolution: {integrity: sha512-cVOwYBxR7Wb1B1FoxYvtjJD8X/9E5nlH4VSkJy2uMA1MzYNdzAAB//l8nrmN9py/4aP+3NjWukf9PZ3TeWULaA==} | |
| + '@vue/server-renderer@3.5.12': | |
| + resolution: {integrity: sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==} | |
| peerDependencies: | |
| vue: latest | |
| @@ -5688,6 +5716,9 @@ packages: | |
| '@vue/shared@3.5.11': | |
| resolution: {integrity: sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==} | |
| + '@vue/shared@3.5.12': | |
| + resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==} | |
| + | |
| '@vue/test-utils@2.4.6': | |
| resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} | |
| @@ -6000,6 +6031,7 @@ packages: | |
| acorn-import-assertions@1.9.0: | |
| resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} | |
| + deprecated: package has been renamed to acorn-import-attributes | |
| peerDependencies: | |
| acorn: ^8 | |
| @@ -6174,10 +6206,12 @@ packages: | |
| are-we-there-yet@2.0.0: | |
| resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} | |
| engines: {node: '>=10'} | |
| + deprecated: This package is no longer supported. | |
| are-we-there-yet@3.0.1: | |
| resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} | |
| engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} | |
| + deprecated: This package is no longer supported. | |
| arg@4.1.3: | |
| resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} | |
| @@ -6584,6 +6618,9 @@ packages: | |
| resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} | |
| engines: {node: '>= 0.4'} | |
| + call-me-maybe@1.0.2: | |
| + resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} | |
| + | |
| callforth@0.3.1: | |
| resolution: {integrity: sha512-Q2zPfqnwoKsb1DTVCr4lmhe49wKNBsMmNlbudjleu3/co+Nw1pOqFHYJHrW3VZ253ou9AAr+xauQR0C55NPdzA==} | |
| @@ -6798,7 +6835,6 @@ packages: | |
| clickhouse@2.6.0: | |
| resolution: {integrity: sha512-HC5OV99GJOup4qZsTuWWPpXlj+847Z0OeygDU2x22rNYost0V/vWapzFWYZdV/5iRbGMrhFQPOyQEzmGvoaWRQ==} | |
| - bundledDependencies: [] | |
| clipboardy@3.0.0: | |
| resolution: {integrity: sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==} | |
| @@ -6923,6 +6959,10 @@ packages: | |
| resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} | |
| engines: {node: '>= 12'} | |
| + commander@9.4.1: | |
| + resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==} | |
| + engines: {node: ^12.20.0 || >=14} | |
| + | |
| commander@9.5.0: | |
| resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} | |
| engines: {node: ^12.20.0 || >=14} | |
| @@ -7091,6 +7131,10 @@ packages: | |
| resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} | |
| engines: {node: '>= 0.10'} | |
| + cosmiconfig@7.0.1: | |
| + resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} | |
| + engines: {node: '>=10'} | |
| + | |
| cosmiconfig@8.2.0: | |
| resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==} | |
| engines: {node: '>=14'} | |
| @@ -7871,6 +7915,9 @@ packages: | |
| resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} | |
| engines: {node: '>= 0.4'} | |
| + es6-promise@3.3.1: | |
| + resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} | |
| + | |
| esbuild-android-64@0.15.18: | |
| resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} | |
| engines: {node: '>=12'} | |
| @@ -8224,11 +8271,13 @@ packages: | |
| eslint@8.33.0: | |
| resolution: {integrity: sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA==} | |
| engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
| + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. | |
| hasBin: true | |
| eslint@8.56.0: | |
| resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} | |
| engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
| + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. | |
| hasBin: true | |
| esm@3.2.25: | |
| @@ -8273,6 +8322,10 @@ packages: | |
| resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} | |
| engines: {node: '>=0.10.0'} | |
| + eta@1.12.3: | |
| + resolution: {integrity: sha512-qHixwbDLtekO/d51Yr4glcaUJCIjGVJyTzuqV4GPlgZo1YpgOKG+avQynErZIYrfM6JIJdtiG2Kox8tbb+DoGg==} | |
| + engines: {node: '>=6.0.0'} | |
| + | |
| etag@1.8.1: | |
| resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} | |
| engines: {node: '>= 0.6'} | |
| @@ -8667,10 +8720,12 @@ packages: | |
| gauge@3.0.2: | |
| resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} | |
| engines: {node: '>=10'} | |
| + deprecated: This package is no longer supported. | |
| gauge@4.0.4: | |
| resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} | |
| engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} | |
| + deprecated: This package is no longer supported. | |
| gaxios@6.1.1: | |
| resolution: {integrity: sha512-bw8smrX+XlAoo9o1JAksBwX+hi/RG15J+NTSxmNPIclKC3ZVK6C2afwY8OSdRvOK0+ZLecUJYtj2MmjOt3Dm0w==} | |
| @@ -8835,6 +8890,7 @@ packages: | |
| glob@7.2.3: | |
| resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} | |
| + deprecated: Glob versions prior to v9 are no longer supported | |
| glob@8.1.0: | |
| resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} | |
| @@ -9119,6 +9175,9 @@ packages: | |
| resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} | |
| engines: {node: '>=0.8', npm: '>=1.3.7'} | |
| + http2-client@1.3.5: | |
| + resolution: {integrity: sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==} | |
| + | |
| https-proxy-agent@5.0.1: | |
| resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} | |
| engines: {node: '>= 6'} | |
| @@ -9253,6 +9312,7 @@ packages: | |
| inflight@1.0.6: | |
| resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} | |
| + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. | |
| inherits@2.0.4: | |
| resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} | |
| @@ -10883,6 +10943,11 @@ packages: | |
| nanoid@2.1.11: | |
| resolution: {integrity: sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==} | |
| + nanoid@3.3.4: | |
| + resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} | |
| + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} | |
| + hasBin: true | |
| + | |
| nanoid@3.3.7: | |
| resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} | |
| engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} | |
| @@ -10923,6 +10988,7 @@ packages: | |
| nestjs-throttler-storage-redis@0.4.4: | |
| resolution: {integrity: sha512-QLYfsat/qutHQaTn3QAoa79WEHG4Uyk8rWRqNhVCVxzQ+qdzaNBUlBwxb8MYhfCmgoCA+eX3Paws8FZI/bYe7A==} | |
| + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. | |
| peerDependencies: | |
| '@nestjs/common': ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 | |
| '@nestjs/core': ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 | |
| @@ -10962,6 +11028,10 @@ packages: | |
| node-emoji@1.11.0: | |
| resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==} | |
| + node-fetch-h2@2.3.0: | |
| + resolution: {integrity: sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg==} | |
| + engines: {node: 4.x || >=6.0.0} | |
| + | |
| node-fetch-native@1.6.1: | |
| resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==} | |
| @@ -11019,6 +11089,9 @@ packages: | |
| node-machine-id@1.1.12: | |
| resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} | |
| + node-readfiles@0.2.0: | |
| + resolution: {integrity: sha512-SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==} | |
| + | |
| node-releases@2.0.14: | |
| resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} | |
| @@ -11150,10 +11223,12 @@ packages: | |
| npmlog@5.0.1: | |
| resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} | |
| + deprecated: This package is no longer supported. | |
| npmlog@6.0.2: | |
| resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} | |
| engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} | |
| + deprecated: This package is no longer supported. | |
| nprogress@0.2.0: | |
| resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==} | |
| @@ -11204,6 +11279,22 @@ packages: | |
| engines: {node: ^14.16.0 || >=16.10.0} | |
| hasBin: true | |
| + oas-kit-common@1.0.8: | |
| + resolution: {integrity: sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ==} | |
| + | |
| + oas-linter@3.2.2: | |
| + resolution: {integrity: sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ==} | |
| + | |
| + oas-resolver@2.5.6: | |
| + resolution: {integrity: sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ==} | |
| + hasBin: true | |
| + | |
| + oas-schema-walker@1.1.5: | |
| + resolution: {integrity: sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ==} | |
| + | |
| + oas-validator@5.0.8: | |
| + resolution: {integrity: sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw==} | |
| + | |
| oauth-sign@0.9.0: | |
| resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} | |
| @@ -12167,6 +12258,11 @@ packages: | |
| resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} | |
| engines: {node: '>=6.0.0'} | |
| + prettier@2.7.1: | |
| + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} | |
| + engines: {node: '>=10.13.0'} | |
| + hasBin: true | |
| + | |
| prettier@2.8.8: | |
| resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} | |
| engines: {node: '>=10.13.0'} | |
| @@ -12438,6 +12534,7 @@ packages: | |
| read-package-json@6.0.4: | |
| resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==} | |
| engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} | |
| + deprecated: This package is no longer supported. Please use @npmcli/package-json instead. | |
| read-pkg-up@3.0.0: | |
| resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} | |
| @@ -12522,11 +12619,15 @@ packages: | |
| reflect-metadata@0.2.1: | |
| resolution: {integrity: sha512-i5lLI6iw9AU3Uu4szRNPPEkomnkjRTaVt9hy/bn5g/oSzekBSMeLZblcjP74AW0vBabqERLLIrz+gR8QYR54Tw==} | |
| + deprecated: This version has a critical bug in fallback handling. Please upgrade to reflect-metadata@0.2.2 or newer. | |
| reflect.getprototypeof@1.0.5: | |
| resolution: {integrity: sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==} | |
| engines: {node: '>= 0.4'} | |
| + reftools@1.1.9: | |
| + resolution: {integrity: sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w==} | |
| + | |
| regenerator-runtime@0.14.0: | |
| resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} | |
| @@ -12912,6 +13013,24 @@ packages: | |
| resolution: {integrity: sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==} | |
| deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. | |
| + should-equal@2.0.0: | |
| + resolution: {integrity: sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==} | |
| + | |
| + should-format@3.0.3: | |
| + resolution: {integrity: sha512-hZ58adtulAk0gKtua7QxevgUaXTTXxIi8t41L3zo9AHvjXO1/7sdLECuHeIN2SRtYXpNkmhoUP2pdeWgricQ+Q==} | |
| + | |
| + should-type-adaptors@1.1.0: | |
| + resolution: {integrity: sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA==} | |
| + | |
| + should-type@1.4.0: | |
| + resolution: {integrity: sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==} | |
| + | |
| + should-util@1.0.1: | |
| + resolution: {integrity: sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==} | |
| + | |
| + should@13.2.3: | |
| + resolution: {integrity: sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ==} | |
| + | |
| showdown@2.1.0: | |
| resolution: {integrity: sha512-/6NVYu4U819R2pUIk79n67SYgJHWCce0a5xTP979WbNp0FL9MN1I1QK662IDU1b6JzKTvmhgI7T7JYIxBi3kMQ==} | |
| hasBin: true | |
| @@ -13359,6 +13478,7 @@ packages: | |
| superagent@8.1.2: | |
| resolution: {integrity: sha512-6WTxW1EB6yCxV5VFOIPQruWGHqc3yI7hEmZK6h+pyk69Lk/Ut7rLUY6W/ONF2MjBuGjvmMiIpsrVJ2vjrHlslA==} | |
| engines: {node: '>=6.4.0 <13 || >=14'} | |
| + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net | |
| supertest@6.3.4: | |
| resolution: {integrity: sha512-erY3HFDG0dPnhw4U+udPfrzXa4xhSG+n4rxfRuZWCUvjFWwKl+OxWf/7zk50s84/fAAs7vf5QAb9uRa0cCykxw==} | |
| @@ -13401,6 +13521,17 @@ packages: | |
| engines: {node: '>=14.0.0'} | |
| hasBin: true | |
| + swagger-schema-official@2.0.0-bab6bed: | |
| + resolution: {integrity: sha512-rCC0NWGKr/IJhtRuPq/t37qvZHI/mH4I4sxflVM+qgVe5Z2uOCivzWaVbuioJaB61kvm5UvB7b49E+oBY0M8jA==} | |
| + | |
| + swagger-typescript-api@10.0.3: | |
| + resolution: {integrity: sha512-2jyuLtDIMl43/YDXuX1g4MtymyhO22LFer3wWZWkDEQOCy29pdKeNIi9aDYkWUCsEYSzgSmZfhA2eSa3t4d/XA==} | |
| + hasBin: true | |
| + | |
| + swagger2openapi@7.0.8: | |
| + resolution: {integrity: sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==} | |
| + hasBin: true | |
| + | |
| symbol-observable@1.2.0: | |
| resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} | |
| engines: {node: '>=0.10.0'} | |
| @@ -13798,23 +13929,8 @@ packages: | |
| typedarray@0.0.6: | |
| resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} | |
| - typescript@5.3.2: | |
| - resolution: {integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==} | |
| - engines: {node: '>=14.17'} | |
| - hasBin: true | |
| - | |
| - typescript@5.4.5: | |
| - resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} | |
| - engines: {node: '>=14.17'} | |
| - hasBin: true | |
| - | |
| - typescript@5.5.4: | |
| - resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} | |
| - engines: {node: '>=14.17'} | |
| - hasBin: true | |
| - | |
| - typescript@5.6.2: | |
| - resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} | |
| + typescript@5.6.3: | |
| + resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} | |
| engines: {node: '>=14.17'} | |
| hasBin: true | |
| @@ -14575,8 +14691,8 @@ packages: | |
| resize-detector: ^0.3.0 | |
| vue: latest | |
| - vue@3.5.11: | |
| - resolution: {integrity: sha512-/8Wurrd9J3lb72FTQS7gRMNQD4nztTtKPmuDuPuhqXmmpD6+skVjAeahNpVzsuky6Sy9gy7wn8UadqPtt9SQIg==} | |
| + vue@3.5.12: | |
| + resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==} | |
| peerDependencies: | |
| typescript: latest | |
| peerDependenciesMeta: | |
| @@ -14953,6 +15069,10 @@ packages: | |
| resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==} | |
| engines: {node: ^14.17.0 || >=16.0.0} | |
| + yaml@1.10.2: | |
| + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} | |
| + engines: {node: '>= 6'} | |
| + | |
| yaml@2.3.1: | |
| resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} | |
| engines: {node: '>= 14'} | |
| @@ -15085,11 +15205,11 @@ snapshots: | |
| '@ant-design/icons-svg@4.3.1': {} | |
| - '@ant-design/icons-vue@6.1.0(vue@3.5.11)': | |
| + '@ant-design/icons-vue@6.1.0(vue@3.5.12)': | |
| dependencies: | |
| '@ant-design/colors': 6.0.0 | |
| '@ant-design/icons-svg': 4.3.1 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| '@antfu/eslint-config-basic@0.26.3(@typescript-eslint/parser@5.62.0(eslint@8.56.0))(eslint@8.56.0)': | |
| dependencies: | |
| @@ -16740,11 +16860,11 @@ snapshots: | |
| '@bcoe/v8-coverage@0.2.3': {} | |
| - '@ckpack/vue-color@1.5.0(vue@3.5.11)': | |
| + '@ckpack/vue-color@1.5.0(vue@3.5.12)': | |
| dependencies: | |
| '@ctrl/tinycolor': 3.6.1 | |
| material-colors: 1.2.6 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| '@clickhouse/client-common@0.2.9': {} | |
| @@ -17040,6 +17160,8 @@ snapshots: | |
| '@eslint/js@8.56.0': {} | |
| + '@exodus/schemasafe@1.3.0': {} | |
| + | |
| '@fastify/accept-negotiator@1.1.0': | |
| optional: true | |
| @@ -17248,10 +17370,10 @@ snapshots: | |
| transitivePeerDependencies: | |
| - supports-color | |
| - '@iconify/vue@4.1.2(vue@3.5.11)': | |
| + '@iconify/vue@4.1.2(vue@3.5.12)': | |
| dependencies: | |
| '@iconify/types': 2.0.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| '@img/sharp-darwin-arm64@0.33.2': | |
| optionalDependencies: | |
| @@ -17457,7 +17579,7 @@ snapshots: | |
| '@interactjs/utils@1.10.18': {} | |
| - '@intlify/bundle-utils@7.5.0(vue-i18n@9.9.1(vue@3.5.11))': | |
| + '@intlify/bundle-utils@7.5.0(vue-i18n@9.9.1(vue@3.5.12))': | |
| dependencies: | |
| '@intlify/message-compiler': 9.9.1 | |
| '@intlify/shared': 9.9.1 | |
| @@ -17470,7 +17592,7 @@ snapshots: | |
| source-map-js: 1.2.1 | |
| yaml-eslint-parser: 1.2.2 | |
| optionalDependencies: | |
| - vue-i18n: 9.9.1(vue@3.5.11) | |
| + vue-i18n: 9.9.1(vue@3.5.12) | |
| '@intlify/core-base@9.9.1': | |
| dependencies: | |
| @@ -17484,9 +17606,9 @@ snapshots: | |
| '@intlify/shared@9.9.1': {} | |
| - '@intlify/unplugin-vue-i18n@0.13.0(rollup@4.17.2)(vue-i18n@9.9.1(vue@3.5.11))': | |
| + '@intlify/unplugin-vue-i18n@0.13.0(rollup@4.17.2)(vue-i18n@9.9.1(vue@3.5.12))': | |
| dependencies: | |
| - '@intlify/bundle-utils': 7.5.0(vue-i18n@9.9.1(vue@3.5.11)) | |
| + '@intlify/bundle-utils': 7.5.0(vue-i18n@9.9.1(vue@3.5.12)) | |
| '@intlify/shared': 9.9.1 | |
| '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | |
| '@vue/compiler-sfc': 3.4.27 | |
| @@ -17499,7 +17621,7 @@ snapshots: | |
| source-map-js: 1.0.2 | |
| unplugin: 1.5.1 | |
| optionalDependencies: | |
| - vue-i18n: 9.9.1(vue@3.5.11) | |
| + vue-i18n: 9.9.1(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - rollup | |
| - supports-color | |
| @@ -17536,7 +17658,7 @@ snapshots: | |
| jest-util: 29.7.0 | |
| slash: 3.0.0 | |
| - '@jest/core@29.7.0(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2))': | |
| + '@jest/core@29.7.0(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3))': | |
| dependencies: | |
| '@jest/console': 29.7.0 | |
| '@jest/reporters': 29.7.0 | |
| @@ -17550,7 +17672,7 @@ snapshots: | |
| exit: 0.1.2 | |
| graceful-fs: 4.2.11 | |
| jest-changed-files: 29.7.0 | |
| - jest-config: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)) | |
| + jest-config: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)) | |
| jest-haste-map: 29.7.0 | |
| jest-message-util: 29.7.0 | |
| jest-regex-util: 29.6.3 | |
| @@ -17891,12 +18013,12 @@ snapshots: | |
| '@angular-devkit/core': 17.1.2(chokidar@3.6.0) | |
| '@angular-devkit/schematics': 17.1.2(chokidar@3.6.0) | |
| '@angular-devkit/schematics-cli': 17.1.2(chokidar@3.6.0) | |
| - '@nestjs/schematics': 10.1.1(chokidar@3.6.0)(typescript@5.5.4) | |
| + '@nestjs/schematics': 10.1.1(chokidar@3.6.0)(typescript@5.6.3) | |
| chalk: 4.1.2 | |
| chokidar: 3.6.0 | |
| cli-table3: 0.6.3 | |
| commander: 4.1.1 | |
| - fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.5.4)(webpack@5.90.1(webpack-cli@5.1.4)) | |
| + fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.6.3)(webpack@5.90.1(webpack-cli@5.1.4)) | |
| glob: 10.3.10 | |
| inquirer: 8.2.6 | |
| node-emoji: 1.11.0 | |
| @@ -17907,7 +18029,7 @@ snapshots: | |
| tree-kill: 1.2.2 | |
| tsconfig-paths: 4.2.0 | |
| tsconfig-paths-webpack-plugin: 4.1.0 | |
| - typescript: 5.5.4 | |
| + typescript: 5.6.3 | |
| webpack: 5.90.1(webpack-cli@5.1.4) | |
| webpack-node-externals: 3.0.0 | |
| transitivePeerDependencies: | |
| @@ -18021,25 +18143,14 @@ snapshots: | |
| - supports-color | |
| - utf-8-validate | |
| - '@nestjs/schematics@10.1.1(chokidar@3.6.0)(typescript@5.3.2)': | |
| - dependencies: | |
| - '@angular-devkit/core': 17.1.2(chokidar@3.6.0) | |
| - '@angular-devkit/schematics': 17.1.2(chokidar@3.6.0) | |
| - comment-json: 4.2.3 | |
| - jsonc-parser: 3.2.1 | |
| - pluralize: 8.0.0 | |
| - typescript: 5.3.2 | |
| - transitivePeerDependencies: | |
| - - chokidar | |
| - | |
| - '@nestjs/schematics@10.1.1(chokidar@3.6.0)(typescript@5.5.4)': | |
| + '@nestjs/schematics@10.1.1(chokidar@3.6.0)(typescript@5.6.3)': | |
| dependencies: | |
| '@angular-devkit/core': 17.1.2(chokidar@3.6.0) | |
| '@angular-devkit/schematics': 17.1.2(chokidar@3.6.0) | |
| comment-json: 4.2.3 | |
| jsonc-parser: 3.2.1 | |
| pluralize: 8.0.0 | |
| - typescript: 5.5.4 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - chokidar | |
| @@ -18074,7 +18185,7 @@ snapshots: | |
| '@angular-devkit/core': 8.3.4 | |
| '@angular-devkit/schematics': 8.3.4 | |
| ts-morph: 4.3.3 | |
| - typescript: 5.5.4 | |
| + typescript: 5.6.3 | |
| '@netlify/functions@2.6.3(@opentelemetry/api@1.4.1)': | |
| dependencies: | |
| @@ -18249,12 +18360,12 @@ snapshots: | |
| '@nuxt/devalue@2.0.2': {} | |
| - '@nuxt/devtools-kit@1.3.1(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))': | |
| + '@nuxt/devtools-kit@1.3.1(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))': | |
| dependencies: | |
| '@nuxt/kit': 3.11.2(rollup@4.17.2) | |
| '@nuxt/schema': 3.11.2(rollup@4.17.2) | |
| execa: 7.2.0 | |
| - nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) | |
| + nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) | |
| vite: 5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0) | |
| transitivePeerDependencies: | |
| - rollup | |
| @@ -18273,15 +18384,15 @@ snapshots: | |
| rc9: 2.1.2 | |
| semver: 7.6.3 | |
| - '@nuxt/devtools@1.3.1(aijx6xacnncswvzga6b4kgbs5q)': | |
| + '@nuxt/devtools@1.3.1(j2thjdrzofhhpdfhq2m2m7igja)': | |
| dependencies: | |
| '@antfu/utils': 0.7.8 | |
| - '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) | |
| + '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) | |
| '@nuxt/devtools-wizard': 1.3.1 | |
| '@nuxt/kit': 3.11.2(rollup@4.17.2) | |
| - '@vue/devtools-applet': 7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.11) | |
| - '@vue/devtools-core': 7.2.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.11) | |
| - '@vue/devtools-kit': 7.2.0(vue@3.5.11) | |
| + '@vue/devtools-applet': 7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.12) | |
| + '@vue/devtools-core': 7.2.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.12) | |
| + '@vue/devtools-kit': 7.2.0(vue@3.5.12) | |
| birpc: 0.2.17 | |
| consola: 3.2.3 | |
| cronstrue: 2.50.0 | |
| @@ -18297,7 +18408,7 @@ snapshots: | |
| launch-editor: 2.6.1 | |
| local-pkg: 0.5.0 | |
| magicast: 0.3.4 | |
| - nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) | |
| + nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) | |
| nypm: 0.3.8 | |
| ohash: 1.1.3 | |
| pacote: 18.0.6 | |
| @@ -18651,12 +18762,12 @@ snapshots: | |
| '@nuxt/ui-templates@1.3.3': {} | |
| - '@nuxt/vite-builder@3.11.2(@types/node@20.11.30)(eslint@8.56.0)(optionator@0.9.3)(rollup@4.17.2)(sass@1.71.1)(terser@5.27.0)(vue@3.5.11)': | |
| + '@nuxt/vite-builder@3.11.2(@types/node@20.11.30)(eslint@8.56.0)(optionator@0.9.3)(rollup@4.17.2)(sass@1.71.1)(terser@5.27.0)(vue@3.5.12)': | |
| dependencies: | |
| '@nuxt/kit': 3.11.2(rollup@4.17.2) | |
| '@rollup/plugin-replace': 5.0.5(rollup@4.17.2) | |
| - '@vitejs/plugin-vue': 5.0.4(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.11) | |
| - '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.11) | |
| + '@vitejs/plugin-vue': 5.0.4(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.12) | |
| + '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.12) | |
| autoprefixer: 10.4.19(postcss@8.4.47) | |
| clear: 0.1.0 | |
| consola: 3.2.3 | |
| @@ -18686,7 +18797,7 @@ snapshots: | |
| vite: 5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0) | |
| vite-node: 1.6.0(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0) | |
| vite-plugin-checker: 0.6.4(eslint@8.56.0)(optionator@0.9.3)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| vue-bundle-renderer: 2.0.0 | |
| transitivePeerDependencies: | |
| - '@types/node' | |
| @@ -19111,10 +19222,10 @@ snapshots: | |
| '@parcel/watcher-win32-ia32': 2.4.1 | |
| '@parcel/watcher-win32-x64': 2.4.1 | |
| - '@pinia/nuxt@0.5.1(rollup@4.17.2)(vue@3.5.11)': | |
| + '@pinia/nuxt@0.5.1(rollup@4.17.2)(vue@3.5.12)': | |
| dependencies: | |
| '@nuxt/kit': 3.9.3(rollup@4.17.2) | |
| - pinia: 2.1.7(vue@3.5.11) | |
| + pinia: 2.1.7(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - rollup | |
| @@ -19519,13 +19630,13 @@ snapshots: | |
| dependencies: | |
| '@sentry/types': 7.118.0 | |
| - '@sentry/vue@7.118.0(vue@3.5.11)': | |
| + '@sentry/vue@7.118.0(vue@3.5.12)': | |
| dependencies: | |
| '@sentry/browser': 7.118.0 | |
| '@sentry/core': 7.118.0 | |
| '@sentry/types': 7.118.0 | |
| '@sentry/utils': 7.118.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| '@shikijs/core@1.5.2': {} | |
| @@ -20506,13 +20617,13 @@ snapshots: | |
| transitivePeerDependencies: | |
| - '@tiptap/pm' | |
| - '@tiptap/vue-3@2.4.0(@tiptap/core@2.4.0(@tiptap/pm@2.4.0))(@tiptap/pm@2.4.0)(vue@3.5.11)': | |
| + '@tiptap/vue-3@2.4.0(@tiptap/core@2.4.0(@tiptap/pm@2.4.0))(@tiptap/pm@2.4.0)(vue@3.5.12)': | |
| dependencies: | |
| '@tiptap/core': 2.4.0(@tiptap/pm@2.4.0) | |
| '@tiptap/extension-bubble-menu': 2.4.0(@tiptap/core@2.4.0(@tiptap/pm@2.4.0))(@tiptap/pm@2.4.0) | |
| '@tiptap/extension-floating-menu': 2.4.0(@tiptap/core@2.4.0(@tiptap/pm@2.4.0))(@tiptap/pm@2.4.0) | |
| '@tiptap/pm': 2.4.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| '@tootallnate/once@1.1.2': | |
| optional: true | |
| @@ -20778,6 +20889,8 @@ snapshots: | |
| dependencies: | |
| '@types/node': 20.3.3 | |
| + '@types/parse-json@4.0.2': {} | |
| + | |
| '@types/passport-google-oauth20@2.0.16': | |
| dependencies: | |
| '@types/express': 4.17.21 | |
| @@ -20841,7 +20954,7 @@ snapshots: | |
| '@types/splitpanes@2.2.6': | |
| dependencies: | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| transitivePeerDependencies: | |
| - typescript | |
| @@ -20856,6 +20969,8 @@ snapshots: | |
| dependencies: | |
| '@types/superagent': 4.1.18 | |
| + '@types/swagger-schema-official@2.0.22': {} | |
| + | |
| '@types/throttle-debounce@2.1.0': {} | |
| '@types/tinycolor2@1.4.6': {} | |
| @@ -20874,7 +20989,7 @@ snapshots: | |
| '@types/vue-barcode-reader@0.0.3': | |
| dependencies: | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| transitivePeerDependencies: | |
| - typescript | |
| @@ -20891,15 +21006,15 @@ snapshots: | |
| '@eslint-community/regexpp': 4.8.0 | |
| '@typescript-eslint/parser': 5.62.0(eslint@8.56.0) | |
| '@typescript-eslint/scope-manager': 5.62.0 | |
| - '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2) | |
| - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) | |
| + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) | |
| debug: 4.3.4(supports-color@5.5.0) | |
| eslint: 8.56.0 | |
| graphemer: 1.4.0 | |
| ignore: 5.3.2 | |
| natural-compare-lite: 1.4.0 | |
| semver: 7.6.3 | |
| - tsutils: 3.21.0(typescript@5.3.2) | |
| + tsutils: 3.21.0(typescript@5.6.3) | |
| transitivePeerDependencies: | |
| - supports-color | |
| @@ -20918,17 +21033,17 @@ snapshots: | |
| natural-compare: 1.4.0 | |
| natural-compare-lite: 1.4.0 | |
| semver: 7.5.4 | |
| - ts-api-utils: 1.0.2(typescript@5.3.2) | |
| + ts-api-utils: 1.0.2(typescript@5.6.3) | |
| transitivePeerDependencies: | |
| - supports-color | |
| - '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2))(eslint@8.56.0)(typescript@5.3.2)': | |
| + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3)': | |
| dependencies: | |
| '@eslint-community/regexpp': 4.8.0 | |
| - '@typescript-eslint/parser': 6.21.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/parser': 6.21.0(eslint@8.56.0)(typescript@5.6.3) | |
| '@typescript-eslint/scope-manager': 6.21.0 | |
| - '@typescript-eslint/type-utils': 6.21.0(eslint@8.56.0)(typescript@5.3.2) | |
| - '@typescript-eslint/utils': 6.21.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/type-utils': 6.21.0(eslint@8.56.0)(typescript@5.6.3) | |
| + '@typescript-eslint/utils': 6.21.0(eslint@8.56.0)(typescript@5.6.3) | |
| '@typescript-eslint/visitor-keys': 6.21.0 | |
| debug: 4.3.4(supports-color@5.5.0) | |
| eslint: 8.56.0 | |
| @@ -20936,9 +21051,9 @@ snapshots: | |
| ignore: 5.3.1 | |
| natural-compare: 1.4.0 | |
| semver: 7.6.0 | |
| - ts-api-utils: 1.0.2(typescript@5.3.2) | |
| + ts-api-utils: 1.0.2(typescript@5.6.3) | |
| optionalDependencies: | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - supports-color | |
| @@ -20946,7 +21061,7 @@ snapshots: | |
| dependencies: | |
| '@typescript-eslint/scope-manager': 5.62.0 | |
| '@typescript-eslint/types': 5.62.0 | |
| - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.2) | |
| + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3) | |
| debug: 4.3.4(supports-color@5.5.0) | |
| eslint: 8.56.0 | |
| transitivePeerDependencies: | |
| @@ -20963,16 +21078,16 @@ snapshots: | |
| transitivePeerDependencies: | |
| - supports-color | |
| - '@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2)': | |
| + '@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.6.3)': | |
| dependencies: | |
| '@typescript-eslint/scope-manager': 6.21.0 | |
| '@typescript-eslint/types': 6.21.0 | |
| - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.2) | |
| + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3) | |
| '@typescript-eslint/visitor-keys': 6.21.0 | |
| debug: 4.3.4(supports-color@5.5.0) | |
| eslint: 8.56.0 | |
| optionalDependencies: | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - supports-color | |
| @@ -20993,23 +21108,23 @@ snapshots: | |
| '@typescript-eslint/type-utils@5.62.0(eslint@8.33.0)': | |
| dependencies: | |
| - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.2) | |
| + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3) | |
| '@typescript-eslint/utils': 5.62.0(eslint@8.33.0) | |
| debug: 4.3.4(supports-color@5.5.0) | |
| eslint: 8.33.0 | |
| - tsutils: 3.21.0(typescript@5.3.2) | |
| + tsutils: 3.21.0(typescript@5.6.3) | |
| transitivePeerDependencies: | |
| - supports-color | |
| - '@typescript-eslint/type-utils@5.62.0(eslint@8.56.0)(typescript@5.3.2)': | |
| + '@typescript-eslint/type-utils@5.62.0(eslint@8.56.0)(typescript@5.6.3)': | |
| dependencies: | |
| - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.2) | |
| - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3) | |
| + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) | |
| debug: 4.3.4(supports-color@5.5.0) | |
| eslint: 8.56.0 | |
| - tsutils: 3.21.0(typescript@5.3.2) | |
| + tsutils: 3.21.0(typescript@5.6.3) | |
| optionalDependencies: | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - supports-color | |
| @@ -21019,19 +21134,19 @@ snapshots: | |
| '@typescript-eslint/utils': 6.1.0(eslint@8.33.0) | |
| debug: 4.3.4(supports-color@5.5.0) | |
| eslint: 8.33.0 | |
| - ts-api-utils: 1.0.2(typescript@5.3.2) | |
| + ts-api-utils: 1.0.2(typescript@5.6.3) | |
| transitivePeerDependencies: | |
| - supports-color | |
| - '@typescript-eslint/type-utils@6.21.0(eslint@8.56.0)(typescript@5.3.2)': | |
| + '@typescript-eslint/type-utils@6.21.0(eslint@8.56.0)(typescript@5.6.3)': | |
| dependencies: | |
| - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.2) | |
| - '@typescript-eslint/utils': 6.21.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3) | |
| + '@typescript-eslint/utils': 6.21.0(eslint@8.56.0)(typescript@5.6.3) | |
| debug: 4.3.4(supports-color@5.5.0) | |
| eslint: 8.56.0 | |
| - ts-api-utils: 1.0.2(typescript@5.3.2) | |
| + ts-api-utils: 1.0.2(typescript@5.6.3) | |
| optionalDependencies: | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - supports-color | |
| @@ -21041,7 +21156,7 @@ snapshots: | |
| '@typescript-eslint/types@6.21.0': {} | |
| - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.2)': | |
| + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.3)': | |
| dependencies: | |
| '@typescript-eslint/types': 5.62.0 | |
| '@typescript-eslint/visitor-keys': 5.62.0 | |
| @@ -21049,9 +21164,9 @@ snapshots: | |
| globby: 11.1.0 | |
| is-glob: 4.0.3 | |
| semver: 7.6.3 | |
| - tsutils: 3.21.0(typescript@5.3.2) | |
| + tsutils: 3.21.0(typescript@5.6.3) | |
| optionalDependencies: | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - supports-color | |
| @@ -21063,11 +21178,11 @@ snapshots: | |
| globby: 11.1.0 | |
| is-glob: 4.0.3 | |
| semver: 7.6.3 | |
| - ts-api-utils: 1.0.2(typescript@5.3.2) | |
| + ts-api-utils: 1.0.2(typescript@5.6.3) | |
| transitivePeerDependencies: | |
| - supports-color | |
| - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.3.2)': | |
| + '@typescript-eslint/typescript-estree@6.21.0(typescript@5.6.3)': | |
| dependencies: | |
| '@typescript-eslint/types': 6.21.0 | |
| '@typescript-eslint/visitor-keys': 6.21.0 | |
| @@ -21076,9 +21191,9 @@ snapshots: | |
| is-glob: 4.0.3 | |
| minimatch: 9.0.3 | |
| semver: 7.6.0 | |
| - ts-api-utils: 1.0.2(typescript@5.3.2) | |
| + ts-api-utils: 1.0.2(typescript@5.6.3) | |
| optionalDependencies: | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - supports-color | |
| @@ -21089,7 +21204,7 @@ snapshots: | |
| '@types/semver': 7.5.0 | |
| '@typescript-eslint/scope-manager': 5.62.0 | |
| '@typescript-eslint/types': 5.62.0 | |
| - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.2) | |
| + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3) | |
| eslint: 8.33.0 | |
| eslint-scope: 5.1.1 | |
| semver: 7.6.3 | |
| @@ -21097,14 +21212,14 @@ snapshots: | |
| - supports-color | |
| - typescript | |
| - '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.3.2)': | |
| + '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.6.3)': | |
| dependencies: | |
| '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) | |
| '@types/json-schema': 7.0.15 | |
| '@types/semver': 7.5.0 | |
| '@typescript-eslint/scope-manager': 5.62.0 | |
| '@typescript-eslint/types': 5.62.0 | |
| - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.2) | |
| + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3) | |
| eslint: 8.56.0 | |
| eslint-scope: 5.1.1 | |
| semver: 7.6.3 | |
| @@ -21126,14 +21241,14 @@ snapshots: | |
| - supports-color | |
| - typescript | |
| - '@typescript-eslint/utils@6.21.0(eslint@8.56.0)(typescript@5.3.2)': | |
| + '@typescript-eslint/utils@6.21.0(eslint@8.56.0)(typescript@5.6.3)': | |
| dependencies: | |
| '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) | |
| '@types/json-schema': 7.0.12 | |
| '@types/semver': 7.5.0 | |
| '@typescript-eslint/scope-manager': 6.21.0 | |
| '@typescript-eslint/types': 6.21.0 | |
| - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.2) | |
| + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3) | |
| eslint: 8.56.0 | |
| semver: 7.6.2 | |
| transitivePeerDependencies: | |
| @@ -21176,13 +21291,13 @@ snapshots: | |
| '@unhead/schema': 1.9.10 | |
| '@unhead/shared': 1.9.10 | |
| - '@unhead/vue@1.9.10(vue@3.5.11)': | |
| + '@unhead/vue@1.9.10(vue@3.5.12)': | |
| dependencies: | |
| '@unhead/schema': 1.9.10 | |
| '@unhead/shared': 1.9.10 | |
| hookable: 5.5.3 | |
| unhead: 1.9.10 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| '@unocss/astro@0.58.9(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))': | |
| dependencies: | |
| @@ -21393,20 +21508,20 @@ snapshots: | |
| - encoding | |
| - supports-color | |
| - '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.11)': | |
| + '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.12)': | |
| dependencies: | |
| '@babel/core': 7.24.3 | |
| '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) | |
| '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.24.3) | |
| vite: 5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0) | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| transitivePeerDependencies: | |
| - supports-color | |
| - '@vitejs/plugin-vue@5.0.4(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.11)': | |
| + '@vitejs/plugin-vue@5.0.4(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.12)': | |
| dependencies: | |
| vite: 5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0) | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| '@vitest/expect@1.2.2': | |
| dependencies: | |
| @@ -21454,24 +21569,24 @@ snapshots: | |
| loupe: 2.3.7 | |
| pretty-format: 29.7.0 | |
| - '@vue-flow/additional-components@1.3.3(@vue-flow/core@1.31.0(vue@3.5.11))(vue@3.5.11)': | |
| + '@vue-flow/additional-components@1.3.3(@vue-flow/core@1.31.0(vue@3.5.12))(vue@3.5.12)': | |
| dependencies: | |
| - '@vue-flow/core': 1.31.0(vue@3.5.11) | |
| + '@vue-flow/core': 1.31.0(vue@3.5.12) | |
| d3-selection: 3.0.0 | |
| d3-zoom: 3.0.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| - '@vue-flow/core@1.31.0(vue@3.5.11)': | |
| + '@vue-flow/core@1.31.0(vue@3.5.12)': | |
| dependencies: | |
| - '@vueuse/core': 10.7.2(vue@3.5.11) | |
| + '@vueuse/core': 10.7.2(vue@3.5.12) | |
| d3-drag: 3.0.0 | |
| d3-selection: 3.0.0 | |
| d3-zoom: 3.0.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - '@vue-macros/common@1.8.0(rollup@4.17.2)(vue@3.5.11)': | |
| + '@vue-macros/common@1.8.0(rollup@4.17.2)(vue@3.5.12)': | |
| dependencies: | |
| '@babel/types': 7.25.7 | |
| '@rollup/pluginutils': 5.1.2(rollup@4.17.2) | |
| @@ -21480,7 +21595,7 @@ snapshots: | |
| local-pkg: 0.4.3 | |
| magic-string-ast: 0.3.0 | |
| optionalDependencies: | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| transitivePeerDependencies: | |
| - rollup | |
| @@ -21517,6 +21632,14 @@ snapshots: | |
| estree-walker: 2.0.2 | |
| source-map-js: 1.2.1 | |
| + '@vue/compiler-core@3.5.12': | |
| + dependencies: | |
| + '@babel/parser': 7.25.7 | |
| + '@vue/shared': 3.5.12 | |
| + entities: 4.5.0 | |
| + estree-walker: 2.0.2 | |
| + source-map-js: 1.2.1 | |
| + | |
| '@vue/compiler-dom@3.4.27': | |
| dependencies: | |
| '@vue/compiler-core': 3.4.27 | |
| @@ -21527,6 +21650,11 @@ snapshots: | |
| '@vue/compiler-core': 3.5.11 | |
| '@vue/shared': 3.5.11 | |
| + '@vue/compiler-dom@3.5.12': | |
| + dependencies: | |
| + '@vue/compiler-core': 3.5.12 | |
| + '@vue/shared': 3.5.12 | |
| + | |
| '@vue/compiler-sfc@3.4.27': | |
| dependencies: | |
| '@babel/parser': 7.24.5 | |
| @@ -21551,6 +21679,18 @@ snapshots: | |
| postcss: 8.4.47 | |
| source-map-js: 1.2.1 | |
| + '@vue/compiler-sfc@3.5.12': | |
| + dependencies: | |
| + '@babel/parser': 7.25.7 | |
| + '@vue/compiler-core': 3.5.12 | |
| + '@vue/compiler-dom': 3.5.12 | |
| + '@vue/compiler-ssr': 3.5.12 | |
| + '@vue/shared': 3.5.12 | |
| + estree-walker: 2.0.2 | |
| + magic-string: 0.30.11 | |
| + postcss: 8.4.47 | |
| + source-map-js: 1.2.1 | |
| + | |
| '@vue/compiler-ssr@3.4.27': | |
| dependencies: | |
| '@vue/compiler-dom': 3.4.27 | |
| @@ -21561,22 +21701,27 @@ snapshots: | |
| '@vue/compiler-dom': 3.5.11 | |
| '@vue/shared': 3.5.11 | |
| + '@vue/compiler-ssr@3.5.12': | |
| + dependencies: | |
| + '@vue/compiler-dom': 3.5.12 | |
| + '@vue/shared': 3.5.12 | |
| + | |
| '@vue/devtools-api@6.5.0': {} | |
| '@vue/devtools-api@6.6.1': {} | |
| - '@vue/devtools-applet@7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.11)': | |
| + '@vue/devtools-applet@7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.12)': | |
| dependencies: | |
| - '@vue/devtools-core': 7.2.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.11) | |
| - '@vue/devtools-kit': 7.2.0(vue@3.5.11) | |
| + '@vue/devtools-core': 7.2.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.12) | |
| + '@vue/devtools-kit': 7.2.0(vue@3.5.12) | |
| '@vue/devtools-shared': 7.2.0 | |
| - '@vue/devtools-ui': 7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vue@3.5.11) | |
| + '@vue/devtools-ui': 7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vue@3.5.12) | |
| lodash-es: 4.17.21 | |
| perfect-debounce: 1.0.0 | |
| shiki: 1.5.2 | |
| splitpanes: 3.1.5 | |
| - vue: 3.5.11 | |
| - vue-virtual-scroller: 2.0.0-beta.8(vue@3.5.11) | |
| + vue: 3.5.12 | |
| + vue-virtual-scroller: 2.0.0-beta.8(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@unocss/reset' | |
| - '@vue/composition-api' | |
| @@ -21595,9 +21740,9 @@ snapshots: | |
| - unocss | |
| - vite | |
| - '@vue/devtools-core@7.2.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.11)': | |
| + '@vue/devtools-core@7.2.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.12)': | |
| dependencies: | |
| - '@vue/devtools-kit': 7.2.0(vue@3.5.11) | |
| + '@vue/devtools-kit': 7.2.0(vue@3.5.12) | |
| '@vue/devtools-shared': 7.2.0 | |
| mitt: 3.0.1 | |
| nanoid: 3.3.7 | |
| @@ -21607,31 +21752,31 @@ snapshots: | |
| - vite | |
| - vue | |
| - '@vue/devtools-kit@7.2.0(vue@3.5.11)': | |
| + '@vue/devtools-kit@7.2.0(vue@3.5.12)': | |
| dependencies: | |
| '@vue/devtools-shared': 7.2.0 | |
| hookable: 5.5.3 | |
| mitt: 3.0.1 | |
| perfect-debounce: 1.0.0 | |
| speakingurl: 14.0.1 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| '@vue/devtools-shared@7.2.0': | |
| dependencies: | |
| rfdc: 1.3.1 | |
| - '@vue/devtools-ui@7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vue@3.5.11)': | |
| + '@vue/devtools-ui@7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vue@3.5.12)': | |
| dependencies: | |
| '@unocss/reset': 0.58.9 | |
| '@vue/devtools-shared': 7.2.0 | |
| - '@vueuse/components': 10.9.0(vue@3.5.11) | |
| - '@vueuse/core': 10.9.0(vue@3.5.11) | |
| - '@vueuse/integrations': 10.9.0(async-validator@4.2.5)(axios@1.6.8)(focus-trap@7.5.4)(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.5.11) | |
| + '@vueuse/components': 10.9.0(vue@3.5.12) | |
| + '@vueuse/core': 10.9.0(vue@3.5.12) | |
| + '@vueuse/integrations': 10.9.0(async-validator@4.2.5)(axios@1.6.8)(focus-trap@7.5.4)(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.5.12) | |
| colord: 2.9.3 | |
| - floating-vue: 5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11) | |
| + floating-vue: 5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12) | |
| focus-trap: 7.5.4 | |
| unocss: 0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - async-validator | |
| @@ -21646,39 +21791,39 @@ snapshots: | |
| - sortablejs | |
| - universal-cookie | |
| - '@vue/reactivity@3.5.11': | |
| + '@vue/reactivity@3.5.12': | |
| dependencies: | |
| - '@vue/shared': 3.5.11 | |
| + '@vue/shared': 3.5.12 | |
| - '@vue/runtime-core@3.5.11': | |
| + '@vue/runtime-core@3.5.12': | |
| dependencies: | |
| - '@vue/reactivity': 3.5.11 | |
| - '@vue/shared': 3.5.11 | |
| + '@vue/reactivity': 3.5.12 | |
| + '@vue/shared': 3.5.12 | |
| - '@vue/runtime-dom@3.5.11': | |
| + '@vue/runtime-dom@3.5.12': | |
| dependencies: | |
| - '@vue/reactivity': 3.5.11 | |
| - '@vue/runtime-core': 3.5.11 | |
| - '@vue/shared': 3.5.11 | |
| + '@vue/reactivity': 3.5.12 | |
| + '@vue/runtime-core': 3.5.12 | |
| + '@vue/shared': 3.5.12 | |
| csstype: 3.1.3 | |
| - '@vue/server-renderer@3.4.27(vue@3.5.11(typescript@5.4.5))': | |
| + '@vue/server-renderer@3.4.27(vue@3.5.12(typescript@5.6.3))': | |
| dependencies: | |
| '@vue/compiler-ssr': 3.4.27 | |
| '@vue/shared': 3.4.27 | |
| - vue: 3.5.11(typescript@5.4.5) | |
| + vue: 3.5.12(typescript@5.6.3) | |
| - '@vue/server-renderer@3.5.11(vue@3.5.11(typescript@5.4.5))': | |
| + '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.6.3))': | |
| dependencies: | |
| - '@vue/compiler-ssr': 3.5.11 | |
| - '@vue/shared': 3.5.11 | |
| - vue: 3.5.11(typescript@5.4.5) | |
| + '@vue/compiler-ssr': 3.5.12 | |
| + '@vue/shared': 3.5.12 | |
| + vue: 3.5.12(typescript@5.6.3) | |
| - '@vue/server-renderer@3.5.11(vue@3.5.11)': | |
| + '@vue/server-renderer@3.5.12(vue@3.5.12)': | |
| dependencies: | |
| - '@vue/compiler-ssr': 3.5.11 | |
| - '@vue/shared': 3.5.11 | |
| - vue: 3.5.11 | |
| + '@vue/compiler-ssr': 3.5.12 | |
| + '@vue/shared': 3.5.12 | |
| + vue: 3.5.12 | |
| '@vue/shared@3.4.21': {} | |
| @@ -21686,65 +21831,67 @@ snapshots: | |
| '@vue/shared@3.5.11': {} | |
| + '@vue/shared@3.5.12': {} | |
| + | |
| '@vue/test-utils@2.4.6': | |
| dependencies: | |
| js-beautify: 1.14.11 | |
| vue-component-type-helpers: 2.0.6 | |
| - '@vuelidate/core@2.0.3(vue@3.5.11)': | |
| + '@vuelidate/core@2.0.3(vue@3.5.12)': | |
| dependencies: | |
| - vue: 3.5.11 | |
| - vue-demi: 0.13.11(vue@3.5.11) | |
| + vue: 3.5.12 | |
| + vue-demi: 0.13.11(vue@3.5.12) | |
| - '@vuelidate/validators@2.0.4(vue@3.5.11)': | |
| + '@vuelidate/validators@2.0.4(vue@3.5.12)': | |
| dependencies: | |
| - vue: 3.5.11 | |
| - vue-demi: 0.13.11(vue@3.5.11) | |
| + vue: 3.5.12 | |
| + vue-demi: 0.13.11(vue@3.5.12) | |
| - '@vueuse/components@10.9.0(vue@3.5.11)': | |
| + '@vueuse/components@10.9.0(vue@3.5.12)': | |
| dependencies: | |
| - '@vueuse/core': 10.9.0(vue@3.5.11) | |
| - '@vueuse/shared': 10.9.0(vue@3.5.11) | |
| - vue-demi: 0.14.10(vue@3.5.11) | |
| + '@vueuse/core': 10.9.0(vue@3.5.12) | |
| + '@vueuse/shared': 10.9.0(vue@3.5.12) | |
| + vue-demi: 0.14.10(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - vue | |
| - '@vueuse/core@10.11.1(vue@3.5.11)': | |
| + '@vueuse/core@10.11.1(vue@3.5.12)': | |
| dependencies: | |
| '@types/web-bluetooth': 0.0.20 | |
| '@vueuse/metadata': 10.11.1 | |
| - '@vueuse/shared': 10.11.1(vue@3.5.11) | |
| - vue-demi: 0.14.10(vue@3.5.11) | |
| + '@vueuse/shared': 10.11.1(vue@3.5.12) | |
| + vue-demi: 0.14.10(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - vue | |
| - '@vueuse/core@10.7.2(vue@3.5.11)': | |
| + '@vueuse/core@10.7.2(vue@3.5.12)': | |
| dependencies: | |
| '@types/web-bluetooth': 0.0.20 | |
| '@vueuse/metadata': 10.7.2 | |
| - '@vueuse/shared': 10.7.2(vue@3.5.11) | |
| - vue-demi: 0.14.7(vue@3.5.11) | |
| + '@vueuse/shared': 10.7.2(vue@3.5.12) | |
| + vue-demi: 0.14.7(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - vue | |
| - '@vueuse/core@10.9.0(vue@3.5.11)': | |
| + '@vueuse/core@10.9.0(vue@3.5.12)': | |
| dependencies: | |
| '@types/web-bluetooth': 0.0.20 | |
| '@vueuse/metadata': 10.9.0 | |
| - '@vueuse/shared': 10.9.0(vue@3.5.11) | |
| - vue-demi: 0.14.10(vue@3.5.11) | |
| + '@vueuse/shared': 10.9.0(vue@3.5.12) | |
| + vue-demi: 0.14.10(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - vue | |
| - '@vueuse/integrations@10.7.2(async-validator@4.2.5)(axios@1.6.8)(focus-trap@7.5.4)(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.5.11)': | |
| + '@vueuse/integrations@10.7.2(async-validator@4.2.5)(axios@1.6.8)(focus-trap@7.5.4)(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.5.12)': | |
| dependencies: | |
| - '@vueuse/core': 10.7.2(vue@3.5.11) | |
| - '@vueuse/shared': 10.7.2(vue@3.5.11) | |
| - vue-demi: 0.14.7(vue@3.5.11) | |
| + '@vueuse/core': 10.7.2(vue@3.5.12) | |
| + '@vueuse/shared': 10.7.2(vue@3.5.12) | |
| + vue-demi: 0.14.7(vue@3.5.12) | |
| optionalDependencies: | |
| async-validator: 4.2.5 | |
| axios: 1.6.8(debug@4.3.4) | |
| @@ -21758,11 +21905,11 @@ snapshots: | |
| - '@vue/composition-api' | |
| - vue | |
| - '@vueuse/integrations@10.9.0(async-validator@4.2.5)(axios@1.6.8)(focus-trap@7.5.4)(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.5.11)': | |
| + '@vueuse/integrations@10.9.0(async-validator@4.2.5)(axios@1.6.8)(focus-trap@7.5.4)(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.5.12)': | |
| dependencies: | |
| - '@vueuse/core': 10.9.0(vue@3.5.11) | |
| - '@vueuse/shared': 10.9.0(vue@3.5.11) | |
| - vue-demi: 0.14.10(vue@3.5.11) | |
| + '@vueuse/core': 10.9.0(vue@3.5.12) | |
| + '@vueuse/shared': 10.9.0(vue@3.5.12) | |
| + vue-demi: 0.14.10(vue@3.5.12) | |
| optionalDependencies: | |
| async-validator: 4.2.5 | |
| axios: 1.6.8(debug@4.3.4) | |
| @@ -21782,15 +21929,15 @@ snapshots: | |
| '@vueuse/metadata@10.9.0': {} | |
| - '@vueuse/motion@2.2.5(magicast@0.3.4)(rollup@4.17.2)(vue@3.5.11)(webpack-sources@3.2.3)': | |
| + '@vueuse/motion@2.2.5(magicast@0.3.4)(rollup@4.17.2)(vue@3.5.12)(webpack-sources@3.2.3)': | |
| dependencies: | |
| - '@vueuse/core': 10.11.1(vue@3.5.11) | |
| - '@vueuse/shared': 10.11.1(vue@3.5.11) | |
| + '@vueuse/core': 10.11.1(vue@3.5.12) | |
| + '@vueuse/shared': 10.11.1(vue@3.5.12) | |
| csstype: 3.1.3 | |
| framesync: 6.1.2 | |
| popmotion: 11.0.5 | |
| style-value-types: 5.1.2 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| optionalDependencies: | |
| '@nuxt/kit': 3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3) | |
| transitivePeerDependencies: | |
| @@ -21800,37 +21947,37 @@ snapshots: | |
| - supports-color | |
| - webpack-sources | |
| - '@vueuse/nuxt@10.7.2(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vue@3.5.11)': | |
| + '@vueuse/nuxt@10.7.2(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vue@3.5.12)': | |
| dependencies: | |
| '@nuxt/kit': 3.9.3(rollup@4.17.2) | |
| - '@vueuse/core': 10.7.2(vue@3.5.11) | |
| + '@vueuse/core': 10.7.2(vue@3.5.12) | |
| '@vueuse/metadata': 10.7.2 | |
| local-pkg: 0.5.0 | |
| - nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) | |
| - vue-demi: 0.14.7(vue@3.5.11) | |
| + nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) | |
| + vue-demi: 0.14.7(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - rollup | |
| - supports-color | |
| - vue | |
| - '@vueuse/shared@10.11.1(vue@3.5.11)': | |
| + '@vueuse/shared@10.11.1(vue@3.5.12)': | |
| dependencies: | |
| - vue-demi: 0.14.10(vue@3.5.11) | |
| + vue-demi: 0.14.10(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - vue | |
| - '@vueuse/shared@10.7.2(vue@3.5.11)': | |
| + '@vueuse/shared@10.7.2(vue@3.5.12)': | |
| dependencies: | |
| - vue-demi: 0.14.10(vue@3.5.11) | |
| + vue-demi: 0.14.10(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - vue | |
| - '@vueuse/shared@10.9.0(vue@3.5.11)': | |
| + '@vueuse/shared@10.9.0(vue@3.5.12)': | |
| dependencies: | |
| - vue-demi: 0.14.10(vue@3.5.11) | |
| + vue-demi: 0.14.10(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| - vue | |
| @@ -22188,10 +22335,10 @@ snapshots: | |
| ansi-styles@6.2.1: {} | |
| - ant-design-vue@3.2.20(vue@3.5.11): | |
| + ant-design-vue@3.2.20(vue@3.5.12): | |
| dependencies: | |
| '@ant-design/colors': 6.0.0 | |
| - '@ant-design/icons-vue': 6.1.0(vue@3.5.11) | |
| + '@ant-design/icons-vue': 6.1.0(vue@3.5.12) | |
| '@babel/runtime': 7.22.11 | |
| '@ctrl/tinycolor': 3.6.1 | |
| '@simonwep/pickr': 1.8.2 | |
| @@ -22205,8 +22352,8 @@ snapshots: | |
| resize-observer-polyfill: 1.5.1 | |
| scroll-into-view-if-needed: 2.2.31 | |
| shallow-equal: 1.2.1 | |
| - vue: 3.5.11 | |
| - vue-types: 3.0.2(vue@3.5.11) | |
| + vue: 3.5.12 | |
| + vue-types: 3.0.2(vue@3.5.12) | |
| warning: 4.0.3 | |
| antlr4-c3@3.1.1: | |
| @@ -22867,6 +23014,8 @@ snapshots: | |
| get-intrinsic: 1.2.4 | |
| set-function-length: 1.2.1 | |
| + call-me-maybe@1.0.2: {} | |
| + | |
| callforth@0.3.1: {} | |
| callsites@3.1.0: {} | |
| @@ -23210,6 +23359,8 @@ snapshots: | |
| commander@8.3.0: {} | |
| + commander@9.4.1: {} | |
| + | |
| commander@9.5.0: {} | |
| comment-json@4.2.3: | |
| @@ -23401,6 +23552,14 @@ snapshots: | |
| object-assign: 4.1.1 | |
| vary: 1.1.2 | |
| + cosmiconfig@7.0.1: | |
| + dependencies: | |
| + '@types/parse-json': 4.0.2 | |
| + import-fresh: 3.3.0 | |
| + parse-json: 5.2.0 | |
| + path-type: 4.0.0 | |
| + yaml: 1.10.2 | |
| + | |
| cosmiconfig@8.2.0: | |
| dependencies: | |
| import-fresh: 3.3.0 | |
| @@ -23438,13 +23597,13 @@ snapshots: | |
| crc-32: 1.2.2 | |
| readable-stream: 4.4.2 | |
| - create-jest@29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)): | |
| + create-jest@29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)): | |
| dependencies: | |
| '@jest/types': 29.6.3 | |
| chalk: 4.1.2 | |
| exit: 0.1.2 | |
| graceful-fs: 4.2.11 | |
| - jest-config: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)) | |
| + jest-config: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)) | |
| jest-util: 29.7.0 | |
| prompts: 2.4.2 | |
| transitivePeerDependencies: | |
| @@ -24067,21 +24226,21 @@ snapshots: | |
| dependencies: | |
| embla-carousel: 8.1.7 | |
| - embla-carousel-vue@8.1.7(vue@3.5.11): | |
| + embla-carousel-vue@8.1.7(vue@3.5.12): | |
| dependencies: | |
| embla-carousel: 8.1.7 | |
| embla-carousel-reactive-utils: 8.1.7(embla-carousel@8.1.7) | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| embla-carousel@8.1.7: {} | |
| emittery@0.13.1: {} | |
| - emoji-mart-vue-fast@15.0.2(vue@3.5.11): | |
| + emoji-mart-vue-fast@15.0.2(vue@3.5.12): | |
| dependencies: | |
| '@babel/runtime': 7.22.11 | |
| core-js: 3.32.1 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| emoji-regex@8.0.0: {} | |
| @@ -24320,6 +24479,8 @@ snapshots: | |
| is-date-object: 1.0.5 | |
| is-symbol: 1.0.4 | |
| + es6-promise@3.3.1: {} | |
| + | |
| esbuild-android-64@0.15.18: | |
| optional: true | |
| @@ -24521,11 +24682,11 @@ snapshots: | |
| transitivePeerDependencies: | |
| - supports-color | |
| - eslint-module-utils@2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): | |
| + eslint-module-utils@2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): | |
| dependencies: | |
| debug: 3.2.7 | |
| optionalDependencies: | |
| - '@typescript-eslint/parser': 6.21.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/parser': 6.21.0(eslint@8.56.0)(typescript@5.6.3) | |
| eslint: 8.56.0 | |
| eslint-import-resolver-node: 0.3.9 | |
| transitivePeerDependencies: | |
| @@ -24533,7 +24694,7 @@ snapshots: | |
| eslint-plugin-antfu@0.26.3(eslint@8.56.0): | |
| dependencies: | |
| - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) | |
| transitivePeerDependencies: | |
| - eslint | |
| - supports-color | |
| @@ -24569,17 +24730,17 @@ snapshots: | |
| transitivePeerDependencies: | |
| - supports-color | |
| - eslint-plugin-functional@5.0.8(eslint@8.56.0)(typescript@5.3.2): | |
| + eslint-plugin-functional@5.0.8(eslint@8.56.0)(typescript@5.6.3): | |
| dependencies: | |
| - '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2) | |
| - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) | |
| + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) | |
| deepmerge-ts: 5.1.0 | |
| escape-string-regexp: 4.0.0 | |
| eslint: 8.56.0 | |
| - is-immutable-type: 1.2.9(eslint@8.56.0)(typescript@5.3.2) | |
| + is-immutable-type: 1.2.9(eslint@8.56.0)(typescript@5.6.3) | |
| semver: 7.6.3 | |
| optionalDependencies: | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - supports-color | |
| @@ -24639,7 +24800,7 @@ snapshots: | |
| - eslint-import-resolver-webpack | |
| - supports-color | |
| - eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2))(eslint@8.56.0): | |
| + eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0): | |
| dependencies: | |
| array-includes: 3.1.7 | |
| array.prototype.findlastindex: 1.2.3 | |
| @@ -24649,7 +24810,7 @@ snapshots: | |
| doctrine: 2.1.0 | |
| eslint: 8.56.0 | |
| eslint-import-resolver-node: 0.3.9 | |
| - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.2))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) | |
| + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) | |
| hasown: 2.0.1 | |
| is-core-module: 2.13.1 | |
| is-glob: 4.0.3 | |
| @@ -24660,7 +24821,7 @@ snapshots: | |
| semver: 6.3.1 | |
| tsconfig-paths: 3.15.0 | |
| optionalDependencies: | |
| - '@typescript-eslint/parser': 6.21.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/parser': 6.21.0(eslint@8.56.0)(typescript@5.6.3) | |
| transitivePeerDependencies: | |
| - eslint-import-resolver-typescript | |
| - eslint-import-resolver-webpack | |
| @@ -24932,6 +25093,8 @@ snapshots: | |
| esutils@2.0.3: {} | |
| + eta@1.12.3: {} | |
| + | |
| etag@1.8.1: {} | |
| event-stream@3.3.4: | |
| @@ -25317,11 +25480,11 @@ snapshots: | |
| flatted@3.3.1: {} | |
| - floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11): | |
| + floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12): | |
| dependencies: | |
| '@floating-ui/dom': 1.1.1 | |
| - vue: 3.5.11 | |
| - vue-resize: 2.0.0-alpha.1(vue@3.5.11) | |
| + vue: 3.5.12 | |
| + vue-resize: 2.0.0-alpha.1(vue@3.5.12) | |
| optionalDependencies: | |
| '@nuxt/kit': 3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3) | |
| @@ -25346,7 +25509,7 @@ snapshots: | |
| forever-agent@0.6.1: {} | |
| - fork-ts-checker-webpack-plugin@9.0.2(typescript@5.5.4)(webpack@5.90.1(webpack-cli@5.1.4)): | |
| + fork-ts-checker-webpack-plugin@9.0.2(typescript@5.6.3)(webpack@5.90.1(webpack-cli@5.1.4)): | |
| dependencies: | |
| '@babel/code-frame': 7.24.2 | |
| chalk: 4.1.2 | |
| @@ -25360,7 +25523,7 @@ snapshots: | |
| schema-utils: 3.3.0 | |
| semver: 7.6.3 | |
| tapable: 2.2.1 | |
| - typescript: 5.5.4 | |
| + typescript: 5.6.3 | |
| webpack: 5.90.1(webpack-cli@5.1.4) | |
| form-data@2.3.3: | |
| @@ -26094,6 +26257,8 @@ snapshots: | |
| jsprim: 1.4.2 | |
| sshpk: 1.17.0 | |
| + http2-client@1.3.5: {} | |
| + | |
| https-proxy-agent@5.0.1: | |
| dependencies: | |
| agent-base: 6.0.2 | |
| @@ -26192,11 +26357,11 @@ snapshots: | |
| pkg-dir: 4.2.0 | |
| resolve-cwd: 3.0.0 | |
| - import-string@0.1.2(typescript@5.4.5): | |
| + import-string@0.1.2(typescript@5.6.3): | |
| dependencies: | |
| '@swc/wasm': 1.5.25 | |
| module-from-string: 3.3.0 | |
| - typescript: 5.4.5 | |
| + typescript: 5.6.3 | |
| imurmurhash@0.1.4: {} | |
| @@ -26467,11 +26632,11 @@ snapshots: | |
| transitivePeerDependencies: | |
| - supports-color | |
| - is-immutable-type@1.2.9(eslint@8.56.0)(typescript@5.3.2): | |
| + is-immutable-type@1.2.9(eslint@8.56.0)(typescript@5.6.3): | |
| dependencies: | |
| - '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2) | |
| + '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) | |
| eslint: 8.56.0 | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - supports-color | |
| @@ -26757,16 +26922,16 @@ snapshots: | |
| - babel-plugin-macros | |
| - supports-color | |
| - jest-cli@29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)): | |
| + jest-cli@29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)): | |
| dependencies: | |
| - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)) | |
| + '@jest/core': 29.7.0(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)) | |
| '@jest/test-result': 29.7.0 | |
| '@jest/types': 29.6.3 | |
| chalk: 4.1.2 | |
| - create-jest: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)) | |
| + create-jest: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)) | |
| exit: 0.1.2 | |
| import-local: 3.1.0 | |
| - jest-config: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)) | |
| + jest-config: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)) | |
| jest-util: 29.7.0 | |
| jest-validate: 29.7.0 | |
| yargs: 17.7.2 | |
| @@ -26776,7 +26941,7 @@ snapshots: | |
| - supports-color | |
| - ts-node | |
| - jest-config@29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)): | |
| + jest-config@29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)): | |
| dependencies: | |
| '@babel/core': 7.24.3 | |
| '@jest/test-sequencer': 29.7.0 | |
| @@ -26802,7 +26967,7 @@ snapshots: | |
| strip-json-comments: 3.1.1 | |
| optionalDependencies: | |
| '@types/node': 20.11.30 | |
| - ts-node: 10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2) | |
| + ts-node: 10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3) | |
| transitivePeerDependencies: | |
| - babel-plugin-macros | |
| - supports-color | |
| @@ -27056,12 +27221,12 @@ snapshots: | |
| merge-stream: 2.0.0 | |
| supports-color: 8.1.1 | |
| - jest@29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)): | |
| + jest@29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)): | |
| dependencies: | |
| - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)) | |
| + '@jest/core': 29.7.0(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)) | |
| '@jest/types': 29.6.3 | |
| import-local: 3.1.0 | |
| - jest-cli: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)) | |
| + jest-cli: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)) | |
| transitivePeerDependencies: | |
| - '@types/node' | |
| - babel-plugin-macros | |
| @@ -27427,7 +27592,7 @@ snapshots: | |
| strong-log-transformer: 2.1.0 | |
| tar: 6.1.11 | |
| temp-dir: 1.0.0 | |
| - typescript: 5.6.2 | |
| + typescript: 5.6.3 | |
| upath: 2.0.1 | |
| uuid: 9.0.1 | |
| validate-npm-package-license: 3.0.4 | |
| @@ -28265,7 +28430,7 @@ snapshots: | |
| mkdirp@2.1.6: {} | |
| - mkdist@1.5.1(typescript@5.4.5): | |
| + mkdist@1.5.1(typescript@5.6.3): | |
| dependencies: | |
| autoprefixer: 10.4.19(postcss@8.4.47) | |
| citty: 0.1.6 | |
| @@ -28283,7 +28448,7 @@ snapshots: | |
| postcss-nested: 6.0.1(postcss@8.4.47) | |
| semver: 7.6.3 | |
| optionalDependencies: | |
| - typescript: 5.4.5 | |
| + typescript: 5.6.3 | |
| mlly@1.5.0: | |
| dependencies: | |
| @@ -28483,6 +28648,8 @@ snapshots: | |
| nanoid@2.1.11: {} | |
| + nanoid@3.3.4: {} | |
| + | |
| nanoid@3.3.7: {} | |
| nanoid@4.0.2: {} | |
| @@ -28627,6 +28794,10 @@ snapshots: | |
| dependencies: | |
| lodash: 4.17.21 | |
| + node-fetch-h2@2.3.0: | |
| + dependencies: | |
| + http2-client: 1.3.5 | |
| + | |
| node-fetch-native@1.6.1: {} | |
| node-fetch-native@1.6.4: {} | |
| @@ -28702,6 +28873,10 @@ snapshots: | |
| node-machine-id@1.1.12: {} | |
| + node-readfiles@0.2.0: | |
| + dependencies: | |
| + es6-promise: 3.3.1 | |
| + | |
| node-releases@2.0.14: {} | |
| node-releases@2.0.18: {} | |
| @@ -28926,18 +29101,18 @@ snapshots: | |
| - supports-color | |
| - vite | |
| - nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.11))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2): | |
| + nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.12))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2): | |
| dependencies: | |
| '@nuxt/devalue': 2.0.2 | |
| - '@nuxt/devtools': 1.3.1(aijx6xacnncswvzga6b4kgbs5q) | |
| + '@nuxt/devtools': 1.3.1(j2thjdrzofhhpdfhq2m2m7igja) | |
| '@nuxt/kit': 3.11.2(rollup@4.17.2) | |
| '@nuxt/schema': 3.11.2(rollup@4.17.2) | |
| '@nuxt/telemetry': 2.5.3(rollup@4.17.2) | |
| '@nuxt/ui-templates': 1.3.3 | |
| - '@nuxt/vite-builder': 3.11.2(@types/node@20.11.30)(eslint@8.56.0)(optionator@0.9.3)(rollup@4.17.2)(sass@1.71.1)(terser@5.27.0)(vue@3.5.11) | |
| + '@nuxt/vite-builder': 3.11.2(@types/node@20.11.30)(eslint@8.56.0)(optionator@0.9.3)(rollup@4.17.2)(sass@1.71.1)(terser@5.27.0)(vue@3.5.12) | |
| '@unhead/dom': 1.9.10 | |
| '@unhead/ssr': 1.9.10 | |
| - '@unhead/vue': 1.9.10(vue@3.5.11) | |
| + '@unhead/vue': 1.9.10(vue@3.5.12) | |
| '@vue/shared': 3.4.21 | |
| acorn: 8.11.3 | |
| c12: 1.10.0 | |
| @@ -28977,13 +29152,13 @@ snapshots: | |
| unenv: 1.9.0 | |
| unimport: 3.7.1(rollup@4.17.2) | |
| unplugin: 1.10.1 | |
| - unplugin-vue-router: 0.7.0(rollup@4.17.2)(vue-router@4.3.0(vue@3.5.11))(vue@3.5.11) | |
| + unplugin-vue-router: 0.7.0(rollup@4.17.2)(vue-router@4.3.0(vue@3.5.12))(vue@3.5.12) | |
| unstorage: 1.10.2(ioredis@5.4.1) | |
| untyped: 1.4.2 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| vue-bundle-renderer: 2.0.0 | |
| vue-devtools-stub: 0.1.0 | |
| - vue-router: 4.3.0(vue@3.5.11) | |
| + vue-router: 4.3.0(vue@3.5.12) | |
| optionalDependencies: | |
| '@parcel/watcher': 2.4.1 | |
| '@types/node': 20.11.30 | |
| @@ -29109,6 +29284,37 @@ snapshots: | |
| pathe: 1.1.2 | |
| ufo: 1.5.3 | |
| + oas-kit-common@1.0.8: | |
| + dependencies: | |
| + fast-safe-stringify: 2.1.1 | |
| + | |
| + oas-linter@3.2.2: | |
| + dependencies: | |
| + '@exodus/schemasafe': 1.3.0 | |
| + should: 13.2.3 | |
| + yaml: 1.10.2 | |
| + | |
| + oas-resolver@2.5.6: | |
| + dependencies: | |
| + node-fetch-h2: 2.3.0 | |
| + oas-kit-common: 1.0.8 | |
| + reftools: 1.1.9 | |
| + yaml: 1.10.2 | |
| + yargs: 17.7.2 | |
| + | |
| + oas-schema-walker@1.1.5: {} | |
| + | |
| + oas-validator@5.0.8: | |
| + dependencies: | |
| + call-me-maybe: 1.0.2 | |
| + oas-kit-common: 1.0.8 | |
| + oas-linter: 3.2.2 | |
| + oas-resolver: 2.5.6 | |
| + oas-schema-walker: 1.1.5 | |
| + reftools: 1.1.9 | |
| + should: 13.2.3 | |
| + yaml: 1.10.2 | |
| + | |
| oauth-sign@0.9.0: {} | |
| oauth@0.9.15: {} | |
| @@ -29525,10 +29731,10 @@ snapshots: | |
| pause@0.0.1: {} | |
| - pdfobject-vue@0.0.4(pdfobject@2.3.0)(vue@3.5.11): | |
| + pdfobject-vue@0.0.4(pdfobject@2.3.0)(vue@3.5.12): | |
| dependencies: | |
| pdfobject: 2.3.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| pdfobject@2.3.0: {} | |
| @@ -29629,11 +29835,11 @@ snapshots: | |
| pify@5.0.0: {} | |
| - pinia@2.1.7(vue@3.5.11): | |
| + pinia@2.1.7(vue@3.5.12): | |
| dependencies: | |
| '@vue/devtools-api': 6.5.0 | |
| - vue: 3.5.11 | |
| - vue-demi: 0.14.6(vue@3.5.11) | |
| + vue: 3.5.12 | |
| + vue-demi: 0.14.6(vue@3.5.12) | |
| pinkie-promise@1.0.0: | |
| dependencies: | |
| @@ -30091,6 +30297,8 @@ snapshots: | |
| dependencies: | |
| fast-diff: 1.3.0 | |
| + prettier@2.7.1: {} | |
| + | |
| prettier@2.8.8: {} | |
| pretty-bytes@6.1.1: {} | |
| @@ -30511,6 +30719,8 @@ snapshots: | |
| globalthis: 1.0.3 | |
| which-builtin-type: 1.1.3 | |
| + reftools@1.1.9: {} | |
| + | |
| regenerator-runtime@0.14.0: {} | |
| regexp-tree@0.1.27: {} | |
| @@ -30680,11 +30890,11 @@ snapshots: | |
| dependencies: | |
| glob: 10.3.10 | |
| - rollup-plugin-dts@6.1.1(rollup@3.29.4)(typescript@5.4.5): | |
| + rollup-plugin-dts@6.1.1(rollup@3.29.4)(typescript@5.6.3): | |
| dependencies: | |
| magic-string: 0.30.11 | |
| rollup: 3.29.4 | |
| - typescript: 5.4.5 | |
| + typescript: 5.6.3 | |
| optionalDependencies: | |
| '@babel/code-frame': 7.24.2 | |
| @@ -31020,6 +31230,32 @@ snapshots: | |
| dependencies: | |
| nanoid: 2.1.11 | |
| + should-equal@2.0.0: | |
| + dependencies: | |
| + should-type: 1.4.0 | |
| + | |
| + should-format@3.0.3: | |
| + dependencies: | |
| + should-type: 1.4.0 | |
| + should-type-adaptors: 1.1.0 | |
| + | |
| + should-type-adaptors@1.1.0: | |
| + dependencies: | |
| + should-type: 1.4.0 | |
| + should-util: 1.0.1 | |
| + | |
| + should-type@1.4.0: {} | |
| + | |
| + should-util@1.0.1: {} | |
| + | |
| + should@13.2.3: | |
| + dependencies: | |
| + should-equal: 2.0.0 | |
| + should-format: 3.0.3 | |
| + should-type: 1.4.0 | |
| + should-type-adaptors: 1.1.0 | |
| + should-util: 1.0.1 | |
| + | |
| showdown@2.1.0: | |
| dependencies: | |
| commander: 9.5.0 | |
| @@ -31603,6 +31839,44 @@ snapshots: | |
| csso: 5.0.5 | |
| picocolors: 1.1.0 | |
| + swagger-schema-official@2.0.0-bab6bed: {} | |
| + | |
| + swagger-typescript-api@10.0.3(encoding@0.1.13): | |
| + dependencies: | |
| + '@types/swagger-schema-official': 2.0.22 | |
| + axios: 1.6.8(debug@4.3.4) | |
| + commander: 9.4.1 | |
| + cosmiconfig: 7.0.1 | |
| + eta: 1.12.3 | |
| + js-yaml: 4.1.0 | |
| + lodash: 4.17.21 | |
| + make-dir: 3.1.0 | |
| + nanoid: 3.3.4 | |
| + node-emoji: 1.11.0 | |
| + prettier: 2.7.1 | |
| + swagger-schema-official: 2.0.0-bab6bed | |
| + swagger2openapi: 7.0.8(encoding@0.1.13) | |
| + typescript: 5.6.3 | |
| + transitivePeerDependencies: | |
| + - debug | |
| + - encoding | |
| + | |
| + swagger2openapi@7.0.8(encoding@0.1.13): | |
| + dependencies: | |
| + call-me-maybe: 1.0.2 | |
| + node-fetch: 2.7.0(encoding@0.1.13) | |
| + node-fetch-h2: 2.3.0 | |
| + node-readfiles: 0.2.0 | |
| + oas-kit-common: 1.0.8 | |
| + oas-resolver: 2.5.6 | |
| + oas-schema-walker: 1.1.5 | |
| + oas-validator: 5.0.8 | |
| + reftools: 1.1.9 | |
| + yaml: 1.10.2 | |
| + yargs: 17.7.2 | |
| + transitivePeerDependencies: | |
| + - encoding | |
| + | |
| symbol-observable@1.2.0: | |
| optional: true | |
| @@ -31832,37 +32106,37 @@ snapshots: | |
| trough@2.2.0: {} | |
| - ts-api-utils@1.0.2(typescript@5.3.2): | |
| + ts-api-utils@1.0.2(typescript@5.6.3): | |
| dependencies: | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| ts-custom-error@3.3.1: {} | |
| - ts-jest@29.1.2(@babel/core@7.24.3)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.3))(jest@29.7.0)(typescript@5.3.2): | |
| + ts-jest@29.1.2(@babel/core@7.24.3)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.3))(jest@29.7.0)(typescript@5.6.3): | |
| dependencies: | |
| bs-logger: 0.2.6 | |
| fast-json-stable-stringify: 2.1.0 | |
| - jest: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2)) | |
| + jest: 29.7.0(@types/node@20.11.30)(ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3)) | |
| jest-util: 29.6.3 | |
| json5: 2.2.3 | |
| lodash.memoize: 4.1.2 | |
| make-error: 1.3.6 | |
| semver: 7.5.4 | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| yargs-parser: 21.1.1 | |
| optionalDependencies: | |
| '@babel/core': 7.24.3 | |
| '@jest/types': 29.6.3 | |
| babel-jest: 29.7.0(@babel/core@7.24.3) | |
| - ts-loader@9.5.1(typescript@5.3.2)(webpack@5.90.1(webpack-cli@5.1.4)): | |
| + ts-loader@9.5.1(typescript@5.6.3)(webpack@5.90.1(webpack-cli@5.1.4)): | |
| dependencies: | |
| chalk: 4.1.2 | |
| enhanced-resolve: 5.15.0 | |
| micromatch: 4.0.5 | |
| semver: 7.5.4 | |
| source-map: 0.7.4 | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| webpack: 5.90.1(webpack-cli@5.1.4) | |
| ts-loader@9.5.1(webpack@5.91.0(esbuild@0.20.2)): | |
| @@ -31884,9 +32158,9 @@ snapshots: | |
| globby: 10.0.2 | |
| is-negated-glob: 1.0.0 | |
| multimatch: 4.0.0 | |
| - typescript: 5.6.2 | |
| + typescript: 5.6.3 | |
| - ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.3.2): | |
| + ts-node@10.9.2(@swc/wasm@1.5.25)(@types/node@20.11.30)(typescript@5.6.3): | |
| dependencies: | |
| '@cspotcode/source-map-support': 0.8.1 | |
| '@tsconfig/node10': 1.0.9 | |
| @@ -31900,7 +32174,7 @@ snapshots: | |
| create-require: 1.1.1 | |
| diff: 4.0.2 | |
| make-error: 1.3.6 | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| v8-compile-cache-lib: 3.0.1 | |
| yn: 3.1.1 | |
| optionalDependencies: | |
| @@ -31949,10 +32223,10 @@ snapshots: | |
| tslib@2.6.2: {} | |
| - tsutils@3.21.0(typescript@5.3.2): | |
| + tsutils@3.21.0(typescript@5.6.3): | |
| dependencies: | |
| tslib: 1.14.1 | |
| - typescript: 5.3.2 | |
| + typescript: 5.6.3 | |
| tsv@0.2.0: {} | |
| @@ -32065,13 +32339,7 @@ snapshots: | |
| typedarray@0.0.6: {} | |
| - typescript@5.3.2: {} | |
| - | |
| - typescript@5.4.5: {} | |
| - | |
| - typescript@5.5.4: {} | |
| - | |
| - typescript@5.6.2: {} | |
| + typescript@5.6.3: {} | |
| uc.micro@2.0.0: {} | |
| @@ -32095,7 +32363,7 @@ snapshots: | |
| has-symbols: 1.0.3 | |
| which-boxed-primitive: 1.0.2 | |
| - unbuild@2.0.0(typescript@5.4.5): | |
| + unbuild@2.0.0(typescript@5.6.3): | |
| dependencies: | |
| '@rollup/plugin-alias': 5.1.0(rollup@3.29.4) | |
| '@rollup/plugin-commonjs': 25.0.7(rollup@3.29.4) | |
| @@ -32112,17 +32380,17 @@ snapshots: | |
| hookable: 5.5.3 | |
| jiti: 1.21.0 | |
| magic-string: 0.30.11 | |
| - mkdist: 1.5.1(typescript@5.4.5) | |
| + mkdist: 1.5.1(typescript@5.6.3) | |
| mlly: 1.7.0 | |
| pathe: 1.1.2 | |
| pkg-types: 1.1.1 | |
| pretty-bytes: 6.1.1 | |
| rollup: 3.29.4 | |
| - rollup-plugin-dts: 6.1.1(rollup@3.29.4)(typescript@5.4.5) | |
| + rollup-plugin-dts: 6.1.1(rollup@3.29.4)(typescript@5.6.3) | |
| scule: 1.3.0 | |
| untyped: 1.4.2 | |
| optionalDependencies: | |
| - typescript: 5.4.5 | |
| + typescript: 5.6.3 | |
| transitivePeerDependencies: | |
| - sass | |
| - supports-color | |
| @@ -32326,7 +32594,7 @@ snapshots: | |
| transitivePeerDependencies: | |
| - supports-color | |
| - unplugin-vue-components@0.26.0(@babel/parser@7.25.7)(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(rollup@4.17.2)(vue@3.5.11): | |
| + unplugin-vue-components@0.26.0(@babel/parser@7.25.7)(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(rollup@4.17.2)(vue@3.5.12): | |
| dependencies: | |
| '@antfu/utils': 0.7.6 | |
| '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | |
| @@ -32338,7 +32606,7 @@ snapshots: | |
| minimatch: 9.0.3 | |
| resolve: 1.22.4 | |
| unplugin: 1.7.1 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| optionalDependencies: | |
| '@babel/parser': 7.25.7 | |
| '@nuxt/kit': 3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3) | |
| @@ -32346,11 +32614,11 @@ snapshots: | |
| - rollup | |
| - supports-color | |
| - unplugin-vue-router@0.7.0(rollup@4.17.2)(vue-router@4.3.0(vue@3.5.11))(vue@3.5.11): | |
| + unplugin-vue-router@0.7.0(rollup@4.17.2)(vue-router@4.3.0(vue@3.5.12))(vue@3.5.12): | |
| dependencies: | |
| '@babel/types': 7.25.6 | |
| '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | |
| - '@vue-macros/common': 1.8.0(rollup@4.17.2)(vue@3.5.11) | |
| + '@vue-macros/common': 1.8.0(rollup@4.17.2)(vue@3.5.12) | |
| ast-walker-scope: 0.5.0(rollup@4.17.2) | |
| chokidar: 3.6.0 | |
| fast-glob: 3.3.2 | |
| @@ -32362,7 +32630,7 @@ snapshots: | |
| unplugin: 1.10.1 | |
| yaml: 2.3.4 | |
| optionalDependencies: | |
| - vue-router: 4.3.0(vue@3.5.11) | |
| + vue-router: 4.3.0(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - rollup | |
| - vue | |
| @@ -32797,12 +33065,12 @@ snapshots: | |
| vscode-uri@3.0.7: {} | |
| - vue-advanced-cropper@2.8.8(vue@3.5.11): | |
| + vue-advanced-cropper@2.8.8(vue@3.5.12): | |
| dependencies: | |
| classnames: 2.5.1 | |
| debounce: 1.2.1 | |
| easy-bem: 1.1.1 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| vue-barcode-reader@1.0.3: | |
| dependencies: | |
| @@ -32812,36 +33080,36 @@ snapshots: | |
| dependencies: | |
| ufo: 1.5.3 | |
| - vue-chartjs@5.3.1(chart.js@4.4.2)(vue@3.5.11): | |
| + vue-chartjs@5.3.1(chart.js@4.4.2)(vue@3.5.12): | |
| dependencies: | |
| chart.js: 4.4.2 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| vue-component-type-helpers@2.0.6: {} | |
| - vue-demi@0.13.11(vue@3.5.11): | |
| + vue-demi@0.13.11(vue@3.5.12): | |
| dependencies: | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| - vue-demi@0.14.10(vue@3.5.11): | |
| + vue-demi@0.14.10(vue@3.5.12): | |
| dependencies: | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| - vue-demi@0.14.6(vue@3.5.11): | |
| + vue-demi@0.14.6(vue@3.5.12): | |
| dependencies: | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| - vue-demi@0.14.7(vue@3.5.11): | |
| + vue-demi@0.14.7(vue@3.5.12): | |
| dependencies: | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| vue-devtools-stub@0.1.0: {} | |
| - vue-dompurify-html@3.1.2(vue@3.5.11): | |
| + vue-dompurify-html@3.1.2(vue@3.5.12): | |
| dependencies: | |
| dompurify: 2.4.7 | |
| - vue: 3.5.11 | |
| - vue-demi: 0.13.11(vue@3.5.11) | |
| + vue: 3.5.12 | |
| + vue-demi: 0.13.11(vue@3.5.12) | |
| transitivePeerDependencies: | |
| - '@vue/composition-api' | |
| @@ -32858,13 +33126,13 @@ snapshots: | |
| transitivePeerDependencies: | |
| - supports-color | |
| - vue-extensible-mail@0.0.3(typescript@5.4.5): | |
| + vue-extensible-mail@0.0.3(typescript@5.6.3): | |
| dependencies: | |
| - '@vue/server-renderer': 3.4.27(vue@3.5.11(typescript@5.4.5)) | |
| - import-string: 0.1.2(typescript@5.4.5) | |
| + '@vue/server-renderer': 3.4.27(vue@3.5.12(typescript@5.6.3)) | |
| + import-string: 0.1.2(typescript@5.6.3) | |
| scule: 1.3.0 | |
| - unbuild: 2.0.0(typescript@5.4.5) | |
| - vue: 3.5.11(typescript@5.4.5) | |
| + unbuild: 2.0.0(typescript@5.6.3) | |
| + vue: 3.5.12(typescript@5.6.3) | |
| transitivePeerDependencies: | |
| - sass | |
| - supports-color | |
| @@ -32875,58 +33143,58 @@ snapshots: | |
| dependencies: | |
| github-buttons: 2.27.0 | |
| - vue-i18n@9.9.1(vue@3.5.11): | |
| + vue-i18n@9.9.1(vue@3.5.12): | |
| dependencies: | |
| '@intlify/core-base': 9.9.1 | |
| '@intlify/shared': 9.9.1 | |
| '@vue/devtools-api': 6.5.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| - vue-observe-visibility@2.0.0-alpha.1(vue@3.5.11): | |
| + vue-observe-visibility@2.0.0-alpha.1(vue@3.5.12): | |
| dependencies: | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| vue-qrcode-reader@3.1.9: | |
| dependencies: | |
| barcode-detector: 1.0.4 | |
| callforth: 0.3.1 | |
| core-js: 3.32.1 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| webrtc-adapter: 7.7.0 | |
| transitivePeerDependencies: | |
| - typescript | |
| - vue-resize@2.0.0-alpha.1(vue@3.5.11): | |
| + vue-resize@2.0.0-alpha.1(vue@3.5.12): | |
| dependencies: | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| - vue-router@4.3.0(vue@3.5.11): | |
| + vue-router@4.3.0(vue@3.5.12): | |
| dependencies: | |
| '@vue/devtools-api': 6.6.1 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| - vue-types@3.0.2(vue@3.5.11): | |
| + vue-types@3.0.2(vue@3.5.12): | |
| dependencies: | |
| is-plain-object: 3.0.1 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| - vue-virtual-scroller@2.0.0-beta.8(vue@3.5.11): | |
| + vue-virtual-scroller@2.0.0-beta.8(vue@3.5.12): | |
| dependencies: | |
| mitt: 2.1.0 | |
| - vue: 3.5.11 | |
| - vue-observe-visibility: 2.0.0-alpha.1(vue@3.5.11) | |
| - vue-resize: 2.0.0-alpha.1(vue@3.5.11) | |
| + vue: 3.5.12 | |
| + vue-observe-visibility: 2.0.0-alpha.1(vue@3.5.12) | |
| + vue-resize: 2.0.0-alpha.1(vue@3.5.12) | |
| - vue3-calendar-heatmap@2.0.5(tippy.js@6.3.7)(vue@3.5.11): | |
| + vue3-calendar-heatmap@2.0.5(tippy.js@6.3.7)(vue@3.5.12): | |
| dependencies: | |
| tippy.js: 6.3.7 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| vue3-contextmenu@0.2.12: | |
| dependencies: | |
| core-js: 3.32.1 | |
| mitt: 2.1.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| transitivePeerDependencies: | |
| - typescript | |
| @@ -32944,33 +33212,33 @@ snapshots: | |
| interactjs: 1.10.18 | |
| mitt: 3.0.1 | |
| - vue3-text-clamp@0.1.2(resize-detector@0.3.0)(vue@3.5.11): | |
| + vue3-text-clamp@0.1.2(resize-detector@0.3.0)(vue@3.5.12): | |
| dependencies: | |
| resize-detector: 0.3.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| - vue@3.5.11: | |
| + vue@3.5.12: | |
| dependencies: | |
| - '@vue/compiler-dom': 3.5.11 | |
| - '@vue/compiler-sfc': 3.5.11 | |
| - '@vue/runtime-dom': 3.5.11 | |
| - '@vue/server-renderer': 3.5.11(vue@3.5.11) | |
| - '@vue/shared': 3.5.11 | |
| + '@vue/compiler-dom': 3.5.12 | |
| + '@vue/compiler-sfc': 3.5.12 | |
| + '@vue/runtime-dom': 3.5.12 | |
| + '@vue/server-renderer': 3.5.12(vue@3.5.12) | |
| + '@vue/shared': 3.5.12 | |
| - vue@3.5.11(typescript@5.4.5): | |
| + vue@3.5.12(typescript@5.6.3): | |
| dependencies: | |
| - '@vue/compiler-dom': 3.5.11 | |
| - '@vue/compiler-sfc': 3.5.11 | |
| - '@vue/runtime-dom': 3.5.11 | |
| - '@vue/server-renderer': 3.5.11(vue@3.5.11(typescript@5.4.5)) | |
| - '@vue/shared': 3.5.11 | |
| + '@vue/compiler-dom': 3.5.12 | |
| + '@vue/compiler-sfc': 3.5.12 | |
| + '@vue/runtime-dom': 3.5.12 | |
| + '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.6.3)) | |
| + '@vue/shared': 3.5.12 | |
| optionalDependencies: | |
| - typescript: 5.4.5 | |
| + typescript: 5.6.3 | |
| - vuedraggable@4.1.0(vue@3.5.11): | |
| + vuedraggable@4.1.0(vue@3.5.12): | |
| dependencies: | |
| sortablejs: 1.14.0 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| w3c-keyname@2.2.8: {} | |
| @@ -33381,6 +33649,8 @@ snapshots: | |
| lodash: 4.17.21 | |
| yaml: 2.3.4 | |
| + yaml@1.10.2: {} | |
| + | |
| yaml@2.3.1: {} | |
| yaml@2.3.4: {} | |
| @@ -33456,7 +33726,7 @@ snapshots: | |
| core-js: 3.32.1 | |
| cpy-cli: 4.2.0 | |
| shortid: 2.2.16 | |
| - vue: 3.5.11 | |
| + vue: 3.5.12 | |
| youtube-player: 5.6.0 | |
| transitivePeerDependencies: | |
| - supports-color |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment