From 4b46d2ce4ad663c07d05117a1b6560b355dc1b82 Mon Sep 17 00:00:00 2001 From: liyasthomas Date: Mon, 4 Apr 2022 10:54:15 +0530 Subject: [PATCH] chore(deps): bump --- package.json | 2 +- packages/codemirror-lang-graphql/package.json | 6 +- .../helpers/backend/caching/resolvers.ts | 35 +- .../helpers/editor/themes/baseTheme.ts | 4 +- packages/hoppscotch-app/package.json | 50 +- packages/hoppscotch-cli/package.json | 6 +- packages/hoppscotch-data/package.json | 4 +- packages/hoppscotch-js-sandbox/package.json | 18 +- pnpm-lock.yaml | 2002 +++++++++-------- 9 files changed, 1082 insertions(+), 1045 deletions(-) diff --git a/package.json b/package.json index c4e9b1713..900cd4fac 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,6 @@ "devDependencies": { "@commitlint/cli": "^16.2.3", "@commitlint/config-conventional": "^16.2.1", - "@types/node": "^17.0.21" + "@types/node": "^17.0.23" } } diff --git a/packages/codemirror-lang-graphql/package.json b/packages/codemirror-lang-graphql/package.json index 91e022592..3c71a68f1 100644 --- a/packages/codemirror-lang-graphql/package.json +++ b/packages/codemirror-lang-graphql/package.json @@ -17,8 +17,8 @@ "types": "dist/index.d.ts", "sideEffects": false, "dependencies": { - "@codemirror/highlight": "^0.19.7", - "@codemirror/language": "^0.19.8", + "@codemirror/highlight": "^0.19.8", + "@codemirror/language": "^0.19.10", "@lezer/lr": "^0.15.8" }, "devDependencies": { @@ -27,6 +27,6 @@ "rollup": "^2.70.1", "rollup-plugin-dts": "^4.2.0", "rollup-plugin-ts": "^2.0.5", - "typescript": "^4.6.2" + "typescript": "^4.6.3" } } diff --git a/packages/hoppscotch-app/helpers/backend/caching/resolvers.ts b/packages/hoppscotch-app/helpers/backend/caching/resolvers.ts index ae1c4e41f..e7c449b13 100644 --- a/packages/hoppscotch-app/helpers/backend/caching/resolvers.ts +++ b/packages/hoppscotch-app/helpers/backend/caching/resolvers.ts @@ -1,22 +1,31 @@ -import { GraphCacheResolvers } from "../graphql" +import { + GraphCacheResolvers, + Shortcode, + Team, + TeamInvitation, + WithTypename, +} from "../graphql" export const resolversDef: GraphCacheResolvers = { Query: { - team: (_parent, { teamID }, _cache, _info) => ({ - __typename: "Team", - id: teamID, - }), + team: (_parent, { teamID }, _cache, _info) => + >{ + __typename: "Team" as const, + id: teamID, + }, user: (_parent, { uid }, _cache, _info) => ({ __typename: "User", uid, }), - teamInvitation: (_parent, args, _cache, _info) => ({ - __typename: "TeamInvitation", - id: args.inviteID, - }), - shortcode: (_parent, args, _cache, _info) => ({ - __typename: "Shortcode", - id: args.code, - }), + teamInvitation: (_parent, args, _cache, _info) => + >{ + __typename: "TeamInvitation", + id: args.inviteID, + }, + shortcode: (_parent, args, _cache, _info) => + >{ + __typename: "Shortcode", + id: args.code, + }, }, } diff --git a/packages/hoppscotch-app/helpers/editor/themes/baseTheme.ts b/packages/hoppscotch-app/helpers/editor/themes/baseTheme.ts index 7a6c48328..d1668f0f9 100644 --- a/packages/hoppscotch-app/helpers/editor/themes/baseTheme.ts +++ b/packages/hoppscotch-app/helpers/editor/themes/baseTheme.ts @@ -29,7 +29,7 @@ import { autocompletion, completionKeymap } from "@codemirror/autocomplete" import { commentKeymap } from "@codemirror/comment" import { rectangularSelection, - // crosshairCursor, + crosshairCursor, } from "@codemirror/rectangular-selection" import { lintKeymap } from "@codemirror/lint" @@ -375,7 +375,7 @@ export const basicSetup: Extension = [ closeBrackets(), autocompletion(), rectangularSelection(), - // crosshairCursor(), + crosshairCursor(), highlightActiveLine(), highlightSelectionMatches(), keymap.of([ diff --git a/packages/hoppscotch-app/package.json b/packages/hoppscotch-app/package.json index 41cedda3b..46aa47e32 100644 --- a/packages/hoppscotch-app/package.json +++ b/packages/hoppscotch-app/package.json @@ -35,35 +35,35 @@ }, "dependencies": { "@apidevtools/swagger-parser": "^10.0.3", - "@codemirror/autocomplete": "^0.19.14", - "@codemirror/closebrackets": "^0.19.1", + "@codemirror/autocomplete": "^0.19.15", + "@codemirror/closebrackets": "^0.19.2", "@codemirror/commands": "^0.19.8", "@codemirror/comment": "^0.19.1", "@codemirror/fold": "^0.19.3", "@codemirror/gutter": "^0.19.9", - "@codemirror/highlight": "^0.19.7", + "@codemirror/highlight": "^0.19.8", "@codemirror/history": "^0.19.2", "@codemirror/lang-javascript": "^0.19.7", "@codemirror/lang-json": "^0.19.2", "@codemirror/lang-xml": "^0.19.2", - "@codemirror/language": "^0.19.8", + "@codemirror/language": "^0.19.10", "@codemirror/legacy-modes": "^0.19.1", "@codemirror/lint": "^0.19.6", "@codemirror/matchbrackets": "^0.19.4", - "@codemirror/rectangular-selection": "^0.19.1", + "@codemirror/rectangular-selection": "^0.19.2", "@codemirror/search": "^0.19.9", "@codemirror/state": "^0.19.9", - "@codemirror/stream-parser": "^0.19.7", + "@codemirror/stream-parser": "^0.19.9", "@codemirror/text": "^0.19.6", "@codemirror/tooltip": "^0.19.16", - "@codemirror/view": "^0.19.47", + "@codemirror/view": "^0.19.48", "@hoppscotch/codemirror-lang-graphql": "workspace:^0.1.0", "@hoppscotch/data": "workspace:^0.4.0", "@hoppscotch/js-sandbox": "workspace:^2.0.0", "@nuxtjs/axios": "^5.13.6", "@nuxtjs/composition-api": "^0.32.0", "@nuxtjs/gtm": "^2.4.0", - "@nuxtjs/i18n": "^7.2.0", + "@nuxtjs/i18n": "^7.2.1", "@nuxtjs/robots": "^2.5.0", "@nuxtjs/sentry": "^5.1.7", "@nuxtjs/sitemap": "^2.4.0", @@ -76,7 +76,7 @@ "axios": "^0.26.1", "core-js": "^3.21.1", "esprima": "^4.0.1", - "firebase": "^9.6.9", + "firebase": "^9.6.10", "fp-ts": "^2.11.9", "fuse.js": "^6.5.3", "graphql": "^15.5.0", @@ -84,7 +84,7 @@ "graphql-language-service-parser": "^1.10.4", "graphql-tag": "^2.12.6", "httpsnippet": "^2.0.0", - "insomnia-importers": "^2.7.0", + "insomnia-importers": "^2.8.0", "io-ts": "^2.2.16", "js-yaml": "^4.1.0", "json-loader": "^0.5.7", @@ -95,7 +95,7 @@ "nuxt": "^2.15.8", "openapi-types": "^10.0.0", "paho-mqtt": "^1.1.0", - "postman-collection": "^4.1.1", + "postman-collection": "^4.1.2", "qs": "^6.10.3", "rxjs": "^7.5.5", "socket.io-client-v2": "npm:socket.io-client@^2.4.0", @@ -108,7 +108,7 @@ "uuid": "8.3.2", "vue-functional-data-merge": "^3.1.0", "vue-github-button": "^1.3.0", - "vue-pdf-embed": "^1.1.0", + "vue-pdf-embed": "^1.1.1", "vue-textarea-autosize": "^1.1.1", "vue-tippy": "^4.13.0", "vuedraggable": "^2.24.3", @@ -124,7 +124,7 @@ "@graphql-codegen/typed-document-node": "^2.2.8", "@graphql-codegen/typescript": "2.4.8", "@graphql-codegen/typescript-operations": "^2.3.5", - "@graphql-codegen/typescript-urql-graphcache": "^2.2.9", + "@graphql-codegen/typescript-urql-graphcache": "^2.2.10", "@graphql-codegen/urql-introspection": "^2.1.1", "@graphql-typed-document-node/core": "^3.1.1", "@nuxt/types": "^2.15.8", @@ -139,14 +139,14 @@ "@nuxtjs/stylelint-module": "^4.1.0", "@nuxtjs/svg": "^0.4.0", "@relmify/jest-fp-ts": "^2.0.0", - "@sentry/browser": "^6.18.2", - "@testing-library/jest-dom": "^5.16.2", + "@sentry/browser": "^6.19.3", + "@testing-library/jest-dom": "^5.16.3", "@types/codemirror": "^5.60.5", "@types/cookie": "^0.4.1", "@types/esprima": "^4.0.3", "@types/har-format": "^1.2.8", "@types/httpsnippet": "^1.23.1", - "@types/lodash": "^4.14.180", + "@types/lodash": "^4.14.181", "@types/lossless-json": "^1.0.1", "@types/paho-mqtt": "^1.0.6", "@types/postman-collection": "^3.5.7", @@ -156,12 +156,12 @@ "@vue/composition-api": "^1.4.9", "@vue/runtime-dom": "^3.2.31", "@vue/test-utils": "^1.3.0", - "@vueuse/core": "^8.1.2", + "@vueuse/core": "^8.2.4", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^27.5.1", - "babel-loader": "^8.2.3", + "babel-loader": "^8.2.4", "chokidar": "^3.5.3", - "eslint": "^8.11.0", + "eslint": "^8.12.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-nuxt": "^3.2.0", "eslint-plugin-prettier": "^4.0.0", @@ -171,17 +171,17 @@ "npm-run-all": "^4.1.5", "nuxt-windicss": "^2.2.8", "postcss-html": "^1.3.0", - "prettier": "^2.6.0", + "prettier": "^2.6.2", "raw-loader": "^4.0.2", - "sass": "^1.49.9", + "sass": "^1.49.11", "sass-loader": "^10.2.0", - "stylelint": "^14.6.0", + "stylelint": "^14.6.1", "stylelint-config-prettier": "^9.0.3", - "stylelint-config-recommended-vue": "^1.3.0", + "stylelint-config-recommended-vue": "^1.4.0", "stylelint-config-standard": "^25.0.0", "stylelint-config-standard-scss": "^3.0.0", - "ts-jest": "^27.1.3", - "typescript": "^4.6.2", + "ts-jest": "^27.1.4", + "typescript": "^4.6.3", "vue-jest": "^3.0.7", "vue-template-babel-compiler": "^1.1.3", "worker-loader": "^3.0.8" diff --git a/packages/hoppscotch-cli/package.json b/packages/hoppscotch-cli/package.json index 46e20206a..da4f130a1 100644 --- a/packages/hoppscotch-cli/package.json +++ b/packages/hoppscotch-cli/package.json @@ -37,7 +37,7 @@ "devDependencies": { "@hoppscotch/data": "workspace:^0.4.1", "@hoppscotch/js-sandbox": "workspace:^2.0.0", - "@swc/core": "^1.2.162", + "@swc/core": "^1.2.163", "@types/axios": "^0.14.0", "@types/chalk": "^2.2.0", "@types/commander": "^2.12.2", @@ -47,9 +47,9 @@ "esm": "^3.2.25", "fp-ts": "^2.11.3", "lodash": "^4.17.21", - "prettier": "^2.6.1", + "prettier": "^2.6.2", "qs": "^6.10.3", - "tsup": "^5.12.2", + "tsup": "^5.12.4", "typescript": "^4.6.3" } } diff --git a/packages/hoppscotch-data/package.json b/packages/hoppscotch-data/package.json index 19eaeae2c..74629ca1a 100644 --- a/packages/hoppscotch-data/package.json +++ b/packages/hoppscotch-data/package.json @@ -31,8 +31,8 @@ }, "homepage": "https://github.com/hoppscotch/hoppscotch#readme", "devDependencies": { - "@types/lodash": "^4.14.180", - "tsup": "^5.12.1" + "@types/lodash": "^4.14.181", + "tsup": "^5.12.4" }, "dependencies": { "fp-ts": "^2.11.9", diff --git a/packages/hoppscotch-js-sandbox/package.json b/packages/hoppscotch-js-sandbox/package.json index 9aa81af68..9a1ef12c6 100644 --- a/packages/hoppscotch-js-sandbox/package.json +++ b/packages/hoppscotch-js-sandbox/package.json @@ -44,23 +44,23 @@ "fp-ts": "^2.11.9", "lodash": "^4.17.21", "quickjs-emscripten": "^0.15.0", - "tsup": "^5.11.13" + "tsup": "^5.12.4" }, "devDependencies": { "@digitak/esrun": "^3.1.2", "@relmify/jest-fp-ts": "^2.0.0", "@types/jest": "^27.4.1", - "@types/lodash": "^4.14.180", - "@types/node": "^17.0.21", - "@typescript-eslint/eslint-plugin": "^5.15.0", - "@typescript-eslint/parser": "^5.15.0", - "eslint": "^8.11.0", + "@types/lodash": "^4.14.181", + "@types/node": "^17.0.23", + "@typescript-eslint/eslint-plugin": "^5.17.0", + "@typescript-eslint/parser": "^5.17.0", + "eslint": "^8.12.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.0.0", "io-ts": "^2.2.16", "jest": "^27.5.1", - "prettier": "^2.6.0", - "ts-jest": "^27.1.3", - "typescript": "^4.6.2" + "prettier": "^2.6.2", + "ts-jest": "^27.1.4", + "typescript": "^4.6.3" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d6c49739e..7ee8f2cc4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,7 +6,7 @@ importers: specifiers: '@commitlint/cli': ^16.2.3 '@commitlint/config-conventional': ^16.2.1 - '@types/node': ^17.0.21 + '@types/node': ^17.0.23 husky: ^7.0.4 lint-staged: ^12.3.7 dependencies: @@ -15,64 +15,64 @@ importers: devDependencies: '@commitlint/cli': 16.2.3 '@commitlint/config-conventional': 16.2.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 packages/codemirror-lang-graphql: specifiers: - '@codemirror/highlight': ^0.19.7 - '@codemirror/language': ^0.19.8 + '@codemirror/highlight': ^0.19.8 + '@codemirror/language': ^0.19.10 '@lezer/generator': ^0.15.4 '@lezer/lr': ^0.15.8 mocha: ^9.2.2 rollup: ^2.70.1 rollup-plugin-dts: ^4.2.0 rollup-plugin-ts: ^2.0.5 - typescript: ^4.6.2 + typescript: ^4.6.3 dependencies: - '@codemirror/highlight': 0.19.7 - '@codemirror/language': 0.19.8 + '@codemirror/highlight': 0.19.8 + '@codemirror/language': 0.19.10 '@lezer/lr': 0.15.8 devDependencies: '@lezer/generator': 0.15.4 mocha: 9.2.2 rollup: 2.70.1 - rollup-plugin-dts: 4.2.0_rollup@2.70.1+typescript@4.6.2 - rollup-plugin-ts: 2.0.5_rollup@2.70.1+typescript@4.6.2 - typescript: 4.6.2 + rollup-plugin-dts: 4.2.0_rollup@2.70.1+typescript@4.6.3 + rollup-plugin-ts: 2.0.5_rollup@2.70.1+typescript@4.6.3 + typescript: 4.6.3 packages/hoppscotch-app: specifiers: '@apidevtools/swagger-parser': ^10.0.3 '@babel/core': ^7.17.8 '@babel/preset-env': ^7.16.11 - '@codemirror/autocomplete': ^0.19.14 - '@codemirror/closebrackets': ^0.19.1 + '@codemirror/autocomplete': ^0.19.15 + '@codemirror/closebrackets': ^0.19.2 '@codemirror/commands': ^0.19.8 '@codemirror/comment': ^0.19.1 '@codemirror/fold': ^0.19.3 '@codemirror/gutter': ^0.19.9 - '@codemirror/highlight': ^0.19.7 + '@codemirror/highlight': ^0.19.8 '@codemirror/history': ^0.19.2 '@codemirror/lang-javascript': ^0.19.7 '@codemirror/lang-json': ^0.19.2 '@codemirror/lang-xml': ^0.19.2 - '@codemirror/language': ^0.19.8 + '@codemirror/language': ^0.19.10 '@codemirror/legacy-modes': ^0.19.1 '@codemirror/lint': ^0.19.6 '@codemirror/matchbrackets': ^0.19.4 - '@codemirror/rectangular-selection': ^0.19.1 + '@codemirror/rectangular-selection': ^0.19.2 '@codemirror/search': ^0.19.9 '@codemirror/state': ^0.19.9 - '@codemirror/stream-parser': ^0.19.7 + '@codemirror/stream-parser': ^0.19.9 '@codemirror/text': ^0.19.6 '@codemirror/tooltip': ^0.19.16 - '@codemirror/view': ^0.19.47 + '@codemirror/view': ^0.19.48 '@graphql-codegen/add': ^3.1.1 '@graphql-codegen/cli': 2.6.2 '@graphql-codegen/typed-document-node': ^2.2.8 '@graphql-codegen/typescript': 2.4.8 '@graphql-codegen/typescript-operations': ^2.3.5 - '@graphql-codegen/typescript-urql-graphcache': ^2.2.9 + '@graphql-codegen/typescript-urql-graphcache': ^2.2.10 '@graphql-codegen/urql-introspection': ^2.1.1 '@graphql-typed-document-node/core': ^3.1.1 '@hoppscotch/codemirror-lang-graphql': workspace:^0.1.0 @@ -89,7 +89,7 @@ importers: '@nuxtjs/google-analytics': ^2.4.0 '@nuxtjs/google-fonts': ^1.3.0 '@nuxtjs/gtm': ^2.4.0 - '@nuxtjs/i18n': ^7.2.0 + '@nuxtjs/i18n': ^7.2.1 '@nuxtjs/pwa': ^3.3.5 '@nuxtjs/robots': ^2.5.0 '@nuxtjs/sentry': ^5.1.7 @@ -98,14 +98,14 @@ importers: '@nuxtjs/svg': ^0.4.0 '@nuxtjs/toast': ^3.3.1 '@relmify/jest-fp-ts': ^2.0.0 - '@sentry/browser': ^6.18.2 - '@testing-library/jest-dom': ^5.16.2 + '@sentry/browser': ^6.19.3 + '@testing-library/jest-dom': ^5.16.3 '@types/codemirror': ^5.60.5 '@types/cookie': ^0.4.1 '@types/esprima': ^4.0.3 '@types/har-format': ^1.2.8 '@types/httpsnippet': ^1.23.1 - '@types/lodash': ^4.14.180 + '@types/lodash': ^4.14.181 '@types/lossless-json': ^1.0.1 '@types/paho-mqtt': ^1.0.6 '@types/postman-collection': ^3.5.7 @@ -118,22 +118,22 @@ importers: '@vue/composition-api': ^1.4.9 '@vue/runtime-dom': ^3.2.31 '@vue/test-utils': ^1.3.0 - '@vueuse/core': ^8.1.2 + '@vueuse/core': ^8.2.4 acorn: ^8.7.0 acorn-walk: ^8.2.0 axios: ^0.26.1 babel-core: ^7.0.0-bridge.0 babel-jest: ^27.5.1 - babel-loader: ^8.2.3 + babel-loader: ^8.2.4 chokidar: ^3.5.3 core-js: ^3.21.1 - eslint: ^8.11.0 + eslint: ^8.12.0 eslint-config-prettier: ^8.5.0 eslint-plugin-nuxt: ^3.2.0 eslint-plugin-prettier: ^4.0.0 eslint-plugin-vue: ^8.5.0 esprima: ^4.0.1 - firebase: ^9.6.9 + firebase: ^9.6.10 fp-ts: ^2.11.9 fuse.js: ^6.5.3 graphql: ^15.5.0 @@ -141,7 +141,7 @@ importers: graphql-language-service-parser: ^1.10.4 graphql-tag: ^2.12.6 httpsnippet: ^2.0.0 - insomnia-importers: ^2.7.0 + insomnia-importers: ^2.8.0 io-ts: ^2.2.16 jest: ^27.5.1 jest-serializer-vue: ^2.0.2 @@ -157,32 +157,32 @@ importers: openapi-types: ^10.0.0 paho-mqtt: ^1.1.0 postcss-html: ^1.3.0 - postman-collection: ^4.1.1 - prettier: ^2.6.0 + postman-collection: ^4.1.2 + prettier: ^2.6.2 qs: ^6.10.3 raw-loader: ^4.0.2 rxjs: ^7.5.5 - sass: ^1.49.9 + sass: ^1.49.11 sass-loader: ^10.2.0 socket.io-client-v2: npm:socket.io-client@^2.4.0 socket.io-client-v3: npm:socket.io-client@^3.1.3 socket.io-client-v4: npm:socket.io-client@^4.4.1 socketio-wildcard: ^2.0.0 splitpanes: ^2.4.1 - stylelint: ^14.6.0 + stylelint: ^14.6.1 stylelint-config-prettier: ^9.0.3 - stylelint-config-recommended-vue: ^1.3.0 + stylelint-config-recommended-vue: ^1.4.0 stylelint-config-standard: ^25.0.0 stylelint-config-standard-scss: ^3.0.0 subscriptions-transport-ws: ^0.11.0 tern: ^0.24.3 - ts-jest: ^27.1.3 - typescript: ^4.6.2 + ts-jest: ^27.1.4 + typescript: ^4.6.3 uuid: 8.3.2 vue-functional-data-merge: ^3.1.0 vue-github-button: ^1.3.0 vue-jest: ^3.0.7 - vue-pdf-embed: ^1.1.0 + vue-pdf-embed: ^1.1.1 vue-template-babel-compiler: ^1.1.3 vue-textarea-autosize: ^1.1.1 vue-tippy: ^4.13.0 @@ -193,35 +193,35 @@ importers: yargs-parser: ^21.0.1 dependencies: '@apidevtools/swagger-parser': 10.0.3_openapi-types@10.0.0 - '@codemirror/autocomplete': 0.19.14 - '@codemirror/closebrackets': 0.19.1 + '@codemirror/autocomplete': 0.19.15 + '@codemirror/closebrackets': 0.19.2 '@codemirror/commands': 0.19.8 '@codemirror/comment': 0.19.1 '@codemirror/fold': 0.19.3 '@codemirror/gutter': 0.19.9 - '@codemirror/highlight': 0.19.7 + '@codemirror/highlight': 0.19.8 '@codemirror/history': 0.19.2 '@codemirror/lang-javascript': 0.19.7 '@codemirror/lang-json': 0.19.2 '@codemirror/lang-xml': 0.19.2 - '@codemirror/language': 0.19.8 + '@codemirror/language': 0.19.10 '@codemirror/legacy-modes': 0.19.1 '@codemirror/lint': 0.19.6 '@codemirror/matchbrackets': 0.19.4 - '@codemirror/rectangular-selection': 0.19.1 + '@codemirror/rectangular-selection': 0.19.2 '@codemirror/search': 0.19.9 '@codemirror/state': 0.19.9 - '@codemirror/stream-parser': 0.19.7 + '@codemirror/stream-parser': 0.19.9 '@codemirror/text': 0.19.6 '@codemirror/tooltip': 0.19.16 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 '@hoppscotch/codemirror-lang-graphql': link:../codemirror-lang-graphql '@hoppscotch/data': link:../hoppscotch-data '@hoppscotch/js-sandbox': link:../hoppscotch-js-sandbox '@nuxtjs/axios': 5.13.6 '@nuxtjs/composition-api': 0.32.0_f76cbbf5da9c2936d5fdbb58483aa887 '@nuxtjs/gtm': 2.4.0 - '@nuxtjs/i18n': 7.2.0 + '@nuxtjs/i18n': 7.2.1 '@nuxtjs/robots': 2.5.0 '@nuxtjs/sentry': 5.1.7 '@nuxtjs/sitemap': 2.4.0 @@ -234,15 +234,15 @@ importers: axios: 0.26.1 core-js: 3.21.1 esprima: 4.0.1 - firebase: 9.6.9 + firebase: 9.6.10 fp-ts: 2.11.9 fuse.js: 6.5.3 graphql: 15.7.2 - graphql-language-service-interface: 2.9.1_b10c7c805a70317564c606afefa10ca5 - graphql-language-service-parser: 1.10.4_b10c7c805a70317564c606afefa10ca5 + graphql-language-service-interface: 2.9.1_50dbbce7419ab720b01d03d0e2a001aa + graphql-language-service-parser: 1.10.4_50dbbce7419ab720b01d03d0e2a001aa graphql-tag: 2.12.6_graphql@15.7.2 httpsnippet: 2.0.0 - insomnia-importers: 2.7.0_openapi-types@10.0.0 + insomnia-importers: 2.8.0_openapi-types@10.0.0 io-ts: 2.2.16_fp-ts@2.11.9 js-yaml: 4.1.0 json-loader: 0.5.7 @@ -250,10 +250,10 @@ importers: lossless-json: 1.0.5 mustache: 4.2.0 node-interval-tree: 1.3.3 - nuxt: 2.15.8_typescript@4.6.2 + nuxt: 2.15.8_typescript@4.6.3 openapi-types: 10.0.0 paho-mqtt: 1.1.0 - postman-collection: 4.1.1 + postman-collection: 4.1.2 qs: 6.10.3 rxjs: 7.5.5 socket.io-client-v2: /socket.io-client/2.4.0 @@ -266,7 +266,7 @@ importers: uuid: 8.3.2 vue-functional-data-merge: 3.1.0 vue-github-button: 1.3.0 - vue-pdf-embed: 1.1.0 + vue-pdf-embed: 1.1.1 vue-textarea-autosize: 1.1.1 vue-tippy: 4.13.0 vuedraggable: 2.24.3 @@ -277,33 +277,33 @@ importers: '@babel/core': 7.17.8 '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@graphql-codegen/add': 3.1.1_graphql@15.7.2 - '@graphql-codegen/cli': 2.6.2_b10c7c805a70317564c606afefa10ca5 + '@graphql-codegen/cli': 2.6.2_50dbbce7419ab720b01d03d0e2a001aa '@graphql-codegen/typed-document-node': 2.2.8_graphql@15.7.2 '@graphql-codegen/typescript': 2.4.8_graphql@15.7.2 '@graphql-codegen/typescript-operations': 2.3.5_graphql@15.7.2 - '@graphql-codegen/typescript-urql-graphcache': 2.2.9_0078faba29fbf2fd40f25b4af19ce6b4 + '@graphql-codegen/typescript-urql-graphcache': 2.2.10_0078faba29fbf2fd40f25b4af19ce6b4 '@graphql-codegen/urql-introspection': 2.1.1_graphql@15.7.2 '@graphql-typed-document-node/core': 3.1.1_graphql@15.7.2 - '@nuxt/types': 2.15.8_sass@1.49.9 - '@nuxt/typescript-build': 2.1.0_@nuxt+types@2.15.8+eslint@8.11.0 + '@nuxt/types': 2.15.8_sass@1.49.11 + '@nuxt/typescript-build': 2.1.0_@nuxt+types@2.15.8+eslint@8.12.0 '@nuxtjs/color-mode': 2.1.1 '@nuxtjs/dotenv': 1.4.1 - '@nuxtjs/eslint-config-typescript': 9.0.0_39394221a84a0125a51a7138e62e9739 - '@nuxtjs/eslint-module': 3.0.2_eslint@8.11.0 + '@nuxtjs/eslint-config-typescript': 9.0.0_d0062e76d70ab01651d408ef76fbe2be + '@nuxtjs/eslint-module': 3.0.2_eslint@8.12.0 '@nuxtjs/google-analytics': 2.4.0 '@nuxtjs/google-fonts': 1.3.0 '@nuxtjs/pwa': 3.3.5 - '@nuxtjs/stylelint-module': 4.1.0_stylelint@14.6.0 + '@nuxtjs/stylelint-module': 4.1.0_stylelint@14.6.1 '@nuxtjs/svg': 0.4.0 '@relmify/jest-fp-ts': 2.0.0_fp-ts@2.11.9+io-ts@2.2.16 - '@sentry/browser': 6.18.2 - '@testing-library/jest-dom': 5.16.2 + '@sentry/browser': 6.19.3 + '@testing-library/jest-dom': 5.16.3 '@types/codemirror': 5.60.5 '@types/cookie': 0.4.1 '@types/esprima': 4.0.3 '@types/har-format': 1.2.8 '@types/httpsnippet': 1.23.1 - '@types/lodash': 4.14.180 + '@types/lodash': 4.14.181 '@types/lossless-json': 1.0.1 '@types/paho-mqtt': 1.0.6 '@types/postman-collection': 3.5.7 @@ -313,32 +313,32 @@ importers: '@vue/composition-api': 1.4.9 '@vue/runtime-dom': 3.2.31 '@vue/test-utils': 1.3.0 - '@vueuse/core': 8.1.2_@vue+composition-api@1.4.9 + '@vueuse/core': 8.2.4_@vue+composition-api@1.4.9 babel-core: 7.0.0-bridge.0_@babel+core@7.17.8 babel-jest: 27.5.1_@babel+core@7.17.8 - babel-loader: 8.2.3_@babel+core@7.17.8 + babel-loader: 8.2.4_@babel+core@7.17.8 chokidar: 3.5.3 - eslint: 8.11.0 - eslint-config-prettier: 8.5.0_eslint@8.11.0 - eslint-plugin-nuxt: 3.2.0_eslint@8.11.0 - eslint-plugin-prettier: 4.0.0_68edcf5670f37721baf5d2cac6124e4d - eslint-plugin-vue: 8.5.0_eslint@8.11.0 + eslint: 8.12.0 + eslint-config-prettier: 8.5.0_eslint@8.12.0 + eslint-plugin-nuxt: 3.2.0_eslint@8.12.0 + eslint-plugin-prettier: 4.0.0_f2c91d0f54113167d2bd9214a5ab5a36 + eslint-plugin-vue: 8.5.0_eslint@8.12.0 jest: 27.5.1 jest-serializer-vue: 2.0.2 npm-run-all: 4.1.5 nuxt-windicss: 2.2.8 postcss-html: 1.3.0 - prettier: 2.6.0 + prettier: 2.6.2 raw-loader: 4.0.2 - sass: 1.49.9 - sass-loader: 10.2.0_sass@1.49.9 - stylelint: 14.6.0 - stylelint-config-prettier: 9.0.3_stylelint@14.6.0 - stylelint-config-recommended-vue: 1.3.0_f552817e5b8b1b7dca381d844218922e - stylelint-config-standard: 25.0.0_stylelint@14.6.0 - stylelint-config-standard-scss: 3.0.0_stylelint@14.6.0 - ts-jest: 27.1.3_f7ed6b971a5360a14708ed7d94494e96 - typescript: 4.6.2 + sass: 1.49.11 + sass-loader: 10.2.0_sass@1.49.11 + stylelint: 14.6.1 + stylelint-config-prettier: 9.0.3_stylelint@14.6.1 + stylelint-config-recommended-vue: 1.4.0_50484b26a38601352aaf9ea7986ae8a8 + stylelint-config-standard: 25.0.0_stylelint@14.6.1 + stylelint-config-standard-scss: 3.0.0_stylelint@14.6.1 + ts-jest: 27.1.4_e1df7840075a73eb70c3461b78455f05 + typescript: 4.6.3 vue-jest: 3.0.7_babel-core@7.0.0-bridge.0 vue-template-babel-compiler: 1.1.3 worker-loader: 3.0.8 @@ -347,7 +347,7 @@ importers: specifiers: '@hoppscotch/data': workspace:^0.4.1 '@hoppscotch/js-sandbox': workspace:^2.0.0 - '@swc/core': ^1.2.162 + '@swc/core': ^1.2.163 '@types/axios': ^0.14.0 '@types/chalk': ^2.2.0 '@types/commander': ^2.12.2 @@ -357,14 +357,14 @@ importers: esm: ^3.2.25 fp-ts: ^2.11.3 lodash: ^4.17.21 - prettier: ^2.6.1 + prettier: ^2.6.2 qs: ^6.10.3 - tsup: ^5.12.2 + tsup: ^5.12.4 typescript: ^4.6.3 devDependencies: '@hoppscotch/data': link:../hoppscotch-data '@hoppscotch/js-sandbox': link:../hoppscotch-js-sandbox - '@swc/core': 1.2.162 + '@swc/core': 1.2.163 '@types/axios': 0.14.0 '@types/chalk': 2.2.0 '@types/commander': 2.12.2 @@ -374,27 +374,27 @@ importers: esm: 3.2.25 fp-ts: 2.11.9 lodash: 4.17.21 - prettier: 2.6.1 + prettier: 2.6.2 qs: 6.10.3 - tsup: 5.12.2_typescript@4.6.3 + tsup: 5.12.4_typescript@4.6.3 typescript: 4.6.3 packages/hoppscotch-data: specifiers: - '@types/lodash': ^4.14.180 + '@types/lodash': ^4.14.181 fp-ts: ^2.11.9 io-ts: ^2.2.16 lodash: ^4.17.21 parser-ts: ^0.6.16 - tsup: ^5.12.1 + tsup: ^5.12.4 dependencies: fp-ts: 2.11.9 io-ts: 2.2.16_fp-ts@2.11.9 lodash: 4.17.21 parser-ts: 0.6.16_fp-ts@2.11.9 devDependencies: - '@types/lodash': 4.14.180 - tsup: 5.12.1 + '@types/lodash': 4.14.181 + tsup: 5.12.4 packages/hoppscotch-js-sandbox: specifiers: @@ -402,44 +402,44 @@ importers: '@hoppscotch/data': workspace:^0.4.0 '@relmify/jest-fp-ts': ^2.0.0 '@types/jest': ^27.4.1 - '@types/lodash': ^4.14.180 - '@types/node': ^17.0.21 - '@typescript-eslint/eslint-plugin': ^5.15.0 - '@typescript-eslint/parser': ^5.15.0 - eslint: ^8.11.0 + '@types/lodash': ^4.14.181 + '@types/node': ^17.0.23 + '@typescript-eslint/eslint-plugin': ^5.17.0 + '@typescript-eslint/parser': ^5.17.0 + eslint: ^8.12.0 eslint-config-prettier: ^8.5.0 eslint-plugin-prettier: ^4.0.0 fp-ts: ^2.11.9 io-ts: ^2.2.16 jest: ^27.5.1 lodash: ^4.17.21 - prettier: ^2.6.0 + prettier: ^2.6.2 quickjs-emscripten: ^0.15.0 - ts-jest: ^27.1.3 - tsup: ^5.11.13 - typescript: ^4.6.2 + ts-jest: ^27.1.4 + tsup: ^5.12.4 + typescript: ^4.6.3 dependencies: '@hoppscotch/data': link:../hoppscotch-data fp-ts: 2.11.9 lodash: 4.17.21 quickjs-emscripten: 0.15.0 - tsup: 5.12.1_typescript@4.6.2 + tsup: 5.12.4_typescript@4.6.3 devDependencies: '@digitak/esrun': 3.1.2 '@relmify/jest-fp-ts': 2.0.0_fp-ts@2.11.9+io-ts@2.2.16 '@types/jest': 27.4.1 - '@types/lodash': 4.14.180 - '@types/node': 17.0.21 - '@typescript-eslint/eslint-plugin': 5.16.0_3fed250b11519414a4c7d52468dd6bf5 - '@typescript-eslint/parser': 5.16.0_eslint@8.11.0+typescript@4.6.2 - eslint: 8.11.0 - eslint-config-prettier: 8.5.0_eslint@8.11.0 - eslint-plugin-prettier: 4.0.0_68edcf5670f37721baf5d2cac6124e4d + '@types/lodash': 4.14.181 + '@types/node': 17.0.23 + '@typescript-eslint/eslint-plugin': 5.17.0_689ff565753ecf7c3328c07fad067df5 + '@typescript-eslint/parser': 5.17.0_eslint@8.12.0+typescript@4.6.3 + eslint: 8.12.0 + eslint-config-prettier: 8.5.0_eslint@8.12.0 + eslint-plugin-prettier: 4.0.0_f2c91d0f54113167d2bd9214a5ab5a36 io-ts: 2.2.16_fp-ts@2.11.9 jest: 27.5.1 - prettier: 2.6.0 - ts-jest: 27.1.3_60149d457e34ffba7d4e845dde6a1263 - typescript: 4.6.2 + prettier: 2.6.2 + ts-jest: 27.1.4_9985e1834e803358b7be1e6ce5ca0eea + typescript: 4.6.3 packages: @@ -962,6 +962,7 @@ packages: resolution: {integrity: sha512-RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw==} engines: {node: '>=6.0.0'} hasBin: true + dev: true /@babel/parser/7.17.3: resolution: {integrity: sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==} @@ -1992,16 +1993,16 @@ packages: engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 + dev: false - /@babel/runtime/7.17.2: - resolution: {integrity: sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==} + /@babel/runtime/7.17.8: + resolution: {integrity: sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 - dev: true - /@babel/standalone/7.17.7: - resolution: {integrity: sha512-461jrYyk7g4bRQoOROABqErtygmZrx1cZXWONIPCQzVTynT5VL83btu1PJIaXNgl4JtHXjzaYT7j3IOlVhnC1Q==} + /@babel/standalone/7.17.8: + resolution: {integrity: sha512-tr3SDpVnxR/fzrxyG+HZPAyEA9eTHZIAjy4eqrc7m+KBwsdo1YvTbUfJ6teWHQ177mk6GmdmltsIiOYCcvRPWA==} engines: {node: '>=6.9.0'} dev: true @@ -2019,23 +2020,6 @@ packages: debug: 4.3.3 globals: 11.12.0 - /@babel/traverse/7.16.0: - resolution: {integrity: sha512-qQ84jIs1aRQxaGaxSysII9TuDaguZ5yVrEuC0BN2vcPlalwfLovVmCjbFDPECPXcYM/wLvNFfp8uDOliLxIoUQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.3 - '@babel/helper-function-name': 7.16.0 - '@babel/helper-hoist-variables': 7.16.0 - '@babel/helper-split-export-declaration': 7.16.0 - '@babel/parser': 7.17.3 - '@babel/types': 7.17.0 - debug: 4.3.3 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/traverse/7.17.0: resolution: {integrity: sha512-fpFIXvqD6kC7c7PUNnZ0Z8cQXlarCLtCUpt2S1Dx7PjoRtCFffvOkHHSom+m5HIxMZn5bIBVb71lhabcmjEsqg==} engines: {node: '>=6.9.0'} @@ -2096,35 +2080,35 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@codemirror/autocomplete/0.19.14: - resolution: {integrity: sha512-4PqJG7GGTePc+FQF387RFebDV4ERvKj23gQBmzNtu64ZSHlYEGulwP5EIIfulBiaWEmei9TYVaMFmTdNfofpRQ==} + /@codemirror/autocomplete/0.19.15: + resolution: {integrity: sha512-GQWzvvuXxNUyaEk+5gawbAD8s51/v2Chb++nx0e2eGWrphWk42isBtzOMdc3DxrxrZtPZ55q2ldNp+6G8KJLIQ==} dependencies: - '@codemirror/language': 0.19.8 + '@codemirror/language': 0.19.10 '@codemirror/state': 0.19.9 '@codemirror/text': 0.19.6 '@codemirror/tooltip': 0.19.16 - '@codemirror/view': 0.19.47 - '@lezer/common': 0.15.11 + '@codemirror/view': 0.19.48 + '@lezer/common': 0.15.12 dev: false - /@codemirror/closebrackets/0.19.1: - resolution: {integrity: sha512-ZiLXT6u+VuBK5QnfBbt/Vmfd9Pg6449wn1DIOWFZHUOldg5eFn3VGGjYY2XWuHQz5WuK+7dXamV2KE885O1gyA==} + /@codemirror/closebrackets/0.19.2: + resolution: {integrity: sha512-ClMPzPcPP0eQiDcVjtVPl6OLxgdtZSYDazsvT0AKl70V1OJva0eHgl4/6kCW3RZ0pb2n34i9nJz4eXCmK+TYDA==} dependencies: - '@codemirror/language': 0.19.8 - '@codemirror/rangeset': 0.19.8 + '@codemirror/language': 0.19.10 + '@codemirror/rangeset': 0.19.9 '@codemirror/state': 0.19.9 '@codemirror/text': 0.19.6 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 dev: false /@codemirror/commands/0.19.8: resolution: {integrity: sha512-65LIMSGUGGpY3oH6mzV46YWRrgao6NmfJ+AuC7jNz3K5NPnH6GCV1H5I6SwOFyVbkiygGyd0EFwrWqywTBD1aw==} dependencies: - '@codemirror/language': 0.19.8 + '@codemirror/language': 0.19.10 '@codemirror/matchbrackets': 0.19.4 '@codemirror/state': 0.19.9 '@codemirror/text': 0.19.6 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 '@lezer/common': 0.15.11 dev: false @@ -2133,17 +2117,17 @@ packages: dependencies: '@codemirror/state': 0.19.9 '@codemirror/text': 0.19.6 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 dev: false /@codemirror/fold/0.19.3: resolution: {integrity: sha512-8hT+Eq2G68mL0yPRvSD2ewhnLQAX6sbUJmtGVKFcj8oAXtfpYCX8LIcfXsuI19Qs7gZkOSpqZvn+KKj8IhZoAw==} dependencies: '@codemirror/gutter': 0.19.9 - '@codemirror/language': 0.19.8 + '@codemirror/language': 0.19.10 '@codemirror/rangeset': 0.19.8 '@codemirror/state': 0.19.9 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 dev: false /@codemirror/gutter/0.19.9: @@ -2151,17 +2135,17 @@ packages: dependencies: '@codemirror/rangeset': 0.19.8 '@codemirror/state': 0.19.9 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 dev: false - /@codemirror/highlight/0.19.7: - resolution: {integrity: sha512-3W32hBCY0pbbv/xidismw+RDMKuIag+fo4kZIbD7WoRj+Ttcaxjf+vP6RttRHXLaaqbWh031lTeON8kMlDhMYw==} + /@codemirror/highlight/0.19.8: + resolution: {integrity: sha512-v/lzuHjrYR8MN2mEJcUD6fHSTXXli9C1XGYpr+ElV6fLBIUhMTNKR3qThp611xuWfXfwDxeL7ppcbkM/MzPV3A==} dependencies: - '@codemirror/language': 0.19.8 + '@codemirror/language': 0.19.10 '@codemirror/rangeset': 0.19.9 '@codemirror/state': 0.19.9 - '@codemirror/view': 0.19.47 - '@lezer/common': 0.15.11 + '@codemirror/view': 0.19.48 + '@lezer/common': 0.15.12 style-mod: 4.0.0 dev: false @@ -2169,54 +2153,54 @@ packages: resolution: {integrity: sha512-unhP4t3N2smzmHoo/Yio6ueWi+il8gm9VKrvi6wlcdGH5fOfVDNkmjHQ495SiR+EdOG35+3iNebSPYww0vN7ow==} dependencies: '@codemirror/state': 0.19.9 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 dev: false /@codemirror/lang-javascript/0.19.7: resolution: {integrity: sha512-DL9f3JLqOEHH9cIwEqqjnP5bkjdVXeECksLtV+/MbPm+l4H+AG+PkwZaJQ2oR1GfPZKh8MVSIE94aGWNkJP8WQ==} dependencies: - '@codemirror/autocomplete': 0.19.14 - '@codemirror/highlight': 0.19.7 - '@codemirror/language': 0.19.8 + '@codemirror/autocomplete': 0.19.15 + '@codemirror/highlight': 0.19.8 + '@codemirror/language': 0.19.10 '@codemirror/lint': 0.19.6 '@codemirror/state': 0.19.9 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 '@lezer/javascript': 0.15.3 dev: false /@codemirror/lang-json/0.19.2: resolution: {integrity: sha512-fgUWR58Is59P5D/tiazX6oTczioOCDYqjFT5PEBAmLBFMSsRqcnJE0xNO1snrhg7pWEFDq5wR/oN0eZhkeR6Gg==} dependencies: - '@codemirror/highlight': 0.19.7 - '@codemirror/language': 0.19.8 + '@codemirror/highlight': 0.19.8 + '@codemirror/language': 0.19.10 '@lezer/json': 0.15.0 dev: false /@codemirror/lang-xml/0.19.2: resolution: {integrity: sha512-9VIjxvqcH1sk8bmYbxQon0lXhVZgdHdfjGes+e4Akgvb43aMBDNvIQVALwrCb+XMEHTxLUMQtrsBN0G64yCUXw==} dependencies: - '@codemirror/autocomplete': 0.19.14 - '@codemirror/highlight': 0.19.7 - '@codemirror/language': 0.19.8 + '@codemirror/autocomplete': 0.19.15 + '@codemirror/highlight': 0.19.8 + '@codemirror/language': 0.19.10 '@codemirror/state': 0.19.9 '@lezer/common': 0.15.11 '@lezer/xml': 0.15.1 dev: false - /@codemirror/language/0.19.8: - resolution: {integrity: sha512-KhRne8qmzSKkaw+qhkwgNsPKxmThlyeJ3umfc33B9kJzVP7xhTkwX2MEPl0almM3brxMi+lPYx7gCPOy1gHsWw==} + /@codemirror/language/0.19.10: + resolution: {integrity: sha512-yA0DZ3RYn2CqAAGW62VrU8c4YxscMQn45y/I9sjBlqB1e2OTQLg4CCkMBuMSLXk4xaqjlsgazeOQWaJQOKfV8Q==} dependencies: '@codemirror/state': 0.19.9 '@codemirror/text': 0.19.6 - '@codemirror/view': 0.19.47 - '@lezer/common': 0.15.11 + '@codemirror/view': 0.19.48 + '@lezer/common': 0.15.12 '@lezer/lr': 0.15.8 dev: false /@codemirror/legacy-modes/0.19.1: resolution: {integrity: sha512-vYPLsD/ON+3SXhlGj9Qb3fpFNNU3Ya/AtDiv/g3OyqVzhh5vs5rAnOvk8xopGWRwppdhlNPD9VyXjiOmZUQtmQ==} dependencies: - '@codemirror/stream-parser': 0.19.7 + '@codemirror/stream-parser': 0.19.9 dev: false /@codemirror/lint/0.19.6: @@ -2227,16 +2211,16 @@ packages: '@codemirror/rangeset': 0.19.8 '@codemirror/state': 0.19.9 '@codemirror/tooltip': 0.19.16 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 crelt: 1.0.5 dev: false /@codemirror/matchbrackets/0.19.4: resolution: {integrity: sha512-VFkaOKPNudAA5sGP1zikRHCEKU0hjYmkKpr04pybUpQvfTvNJXlReCyP0rvH/1iEwAGPL990ZTT+QrLdu4MeEA==} dependencies: - '@codemirror/language': 0.19.8 + '@codemirror/language': 0.19.10 '@codemirror/state': 0.19.9 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 '@lezer/common': 0.15.11 dev: false @@ -2244,7 +2228,7 @@ packages: resolution: {integrity: sha512-sYeOCMA3KRYxZYJYn5PNlt9yNsjy3zTNTrbYSfVgjgL9QomIVgOJWPO5hZ2sTN8lufO6lw0vTBsIPL9MSidmBg==} dependencies: '@codemirror/state': 0.19.9 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 dev: false /@codemirror/rangeset/0.19.8: @@ -2259,12 +2243,12 @@ packages: '@codemirror/state': 0.19.9 dev: false - /@codemirror/rectangular-selection/0.19.1: - resolution: {integrity: sha512-9ElnqOg3mpZIWe0prPRd1SZ48Q9QB3bR8Aocq8UtjboJSUG8ABhRrbuTZMW/rMqpBPSjVpCe9xkCCkEQMYQVmw==} + /@codemirror/rectangular-selection/0.19.2: + resolution: {integrity: sha512-AXK/p5eGwFJ9GJcLfntqN4dgY+XiIF7eHfXNQJX5HhQLSped2wJE6WuC1rMEaOlcpOqlb9mrNi/ZdUjSIj9mbA==} dependencies: '@codemirror/state': 0.19.9 '@codemirror/text': 0.19.6 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 dev: false /@codemirror/search/0.19.9: @@ -2274,7 +2258,7 @@ packages: '@codemirror/rangeset': 0.19.8 '@codemirror/state': 0.19.9 '@codemirror/text': 0.19.6 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 crelt: 1.0.5 dev: false @@ -2284,14 +2268,14 @@ packages: '@codemirror/text': 0.19.6 dev: false - /@codemirror/stream-parser/0.19.7: - resolution: {integrity: sha512-4ExcbKksmU4PIT8s11/dPESgMNLQqlMlbQzRQ1CyMcmygcuQk+58zQ84nv/X17OCUd2ephZ1DKEaHHACifzCiA==} + /@codemirror/stream-parser/0.19.9: + resolution: {integrity: sha512-WTmkEFSRCetpk8xIOvV2yyXdZs3DgYckM0IP7eFi4ewlxWnJO/H4BeJZLs4wQaydWsAqTQoDyIwNH1BCzK5LUQ==} dependencies: - '@codemirror/highlight': 0.19.7 - '@codemirror/language': 0.19.8 + '@codemirror/highlight': 0.19.8 + '@codemirror/language': 0.19.10 '@codemirror/state': 0.19.9 '@codemirror/text': 0.19.6 - '@lezer/common': 0.15.11 + '@lezer/common': 0.15.12 '@lezer/lr': 0.15.8 dev: false @@ -2303,11 +2287,11 @@ packages: resolution: {integrity: sha512-zxKDHryUV5/RS45AQL+wOeN+i7/l81wK56OMnUPoTSzCWNITfxHn7BToDsjtrRKbzHqUxKYmBnn/4hPjpZ4WJQ==} dependencies: '@codemirror/state': 0.19.9 - '@codemirror/view': 0.19.47 + '@codemirror/view': 0.19.48 dev: false - /@codemirror/view/0.19.47: - resolution: {integrity: sha512-SfbagKvJQl5dtt+9wYpo9sa3ZkMgUxTq+/hXDf0KVwIx+zu3cJIqfEm9xSx6yXkq7it7RsPGHaPasApNffF/8g==} + /@codemirror/view/0.19.48: + resolution: {integrity: sha512-0eg7D2Nz4S8/caetCTz61rK0tkHI17V/d15Jy0kLOT8dTLGGNJUponDnW28h2B6bERmPlVHKh8MJIr5OCp1nGw==} dependencies: '@codemirror/rangeset': 0.19.9 '@codemirror/state': 0.19.9 @@ -2329,7 +2313,7 @@ packages: lodash: 4.17.21 resolve-from: 5.0.0 resolve-global: 1.0.0 - yargs: 17.3.1 + yargs: 17.4.0 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -2397,10 +2381,10 @@ packages: '@commitlint/execute-rule': 16.2.1 '@commitlint/resolve-extends': 16.2.1 '@commitlint/types': 16.2.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 chalk: 4.1.2 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 1.0.6_f01b7c141b75a45db67b7d9ae4c261df + cosmiconfig-typescript-loader: 1.0.7_ee885bc7281b682b6adbed6ae09ee090 lodash: 4.17.21 resolve-from: 5.0.0 typescript: 4.6.3 @@ -2502,7 +2486,7 @@ packages: esbuild: 0.12.29 dev: true - /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_c84a270c92bf6e8d30a9786dab5936e4: + /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_ec5c0ebd3030a0a5109338876648df1b: resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -2511,7 +2495,7 @@ packages: cosmiconfig: 7.0.1 lodash.get: 4.4.2 make-error: 1.3.6 - ts-node: 9.1.1_typescript@4.6.2 + ts-node: 9.1.1_typescript@4.6.3 tslib: 2.3.1 transitivePeerDependencies: - typescript @@ -2521,9 +2505,9 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.3 + debug: 4.3.4 espree: 9.3.1 - globals: 13.12.1 + globals: 13.13.0 ignore: 5.2.0 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -2533,16 +2517,21 @@ packages: - supports-color dev: true - /@firebase/analytics-compat/0.1.7_c8a60333997e76cbef3dda80e0a2394a: - resolution: {integrity: sha512-bVnv+xM2YwAouWjeo+HCN0GWu6i0sLzM2AcpmfsQuC97SNRFqIpRUYmjaeTdDALt3k1fIUzYMcZZE4xuC2qK/A==} + /@faker-js/faker/6.0.0: + resolution: {integrity: sha512-10zLCKhp3YEmBuko71ivcMoIZcCLXgQVck6aNswX+AWwaek/L8S3yz9i8m3tHigRkcF6F2vI+qtdtyySHK+bGA==} + engines: {node: '>=14.0.0', npm: '>=7.0.0'} + dev: false + + /@firebase/analytics-compat/0.1.8_868085a1841bc1620876e13ffdfa88b5: + resolution: {integrity: sha512-2XBPTFD4DPVZUJZ2tPOib7BfyHB/Ucfq3DfYMNRZFUrgctABTO/lRwjm3oqv4EsoqEOlbxRurvfFN8BQEe28LA==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/analytics': 0.7.6_@firebase+app@0.7.19 + '@firebase/analytics': 0.7.7_@firebase+app@0.7.20 '@firebase/analytics-types': 0.7.0 - '@firebase/app-compat': 0.1.20 - '@firebase/component': 0.5.11 - '@firebase/util': 1.5.0 + '@firebase/app-compat': 0.1.21 + '@firebase/component': 0.5.12 + '@firebase/util': 1.5.1 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app' @@ -2552,29 +2541,30 @@ packages: resolution: {integrity: sha512-DNE2Waiwy5+zZnCfintkDtBfaW6MjIG883474v6Z0K1XZIvl76cLND4iv0YUb48leyF+PJK1KO2XrgHb/KpmhQ==} dev: false - /@firebase/analytics/0.7.6_@firebase+app@0.7.19: - resolution: {integrity: sha512-hfN+cnWuRY5QfbeBeZOOD9xC/ePavPaAPh3Bc1u0yZLMgF3No3ME6K2dVHKWK1K0BIPzLsliojYYRYnWMF6TZw==} + /@firebase/analytics/0.7.7_@firebase+app@0.7.20: + resolution: {integrity: sha512-duzzyDmBSF2ql6lp0m2jxmOH5PIgw0utqSXRjSgoYzD7lURncMAZVC2u3IgsAoUNTW/lcBSHpv+t4lnxTCNMCw==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 - '@firebase/installations': 0.5.6_@firebase+app@0.7.19 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 + '@firebase/installations': 0.5.7_@firebase+app@0.7.20 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 dev: false - /@firebase/app-check-compat/0.2.4_c8a60333997e76cbef3dda80e0a2394a: - resolution: {integrity: sha512-CnbjhzIdpL7671wwcWMgYDBfCxuMjjg8OITlTtP2vN8h6uBFuPosRpc2GZ/h32IA3fzwyeFplFjy/y8Gyhh6Dw==} + /@firebase/app-check-compat/0.2.5_868085a1841bc1620876e13ffdfa88b5: + resolution: {integrity: sha512-W1jGGcXXw1sdFia3qqnhlkg/5aQGiV6lAurq0FxfMXiV+qUxVuQ2roRbkJrcuJ3jxth8OGOir/yxOk/4YwkfHA==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-check': 0.5.4_@firebase+app@0.7.19 - '@firebase/app-compat': 0.1.20 - '@firebase/component': 0.5.11 + '@firebase/app-check': 0.5.5_@firebase+app@0.7.20 + '@firebase/app-check-types': 0.4.0 + '@firebase/app-compat': 0.1.21 + '@firebase/component': 0.5.12 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app' @@ -2584,25 +2574,29 @@ packages: resolution: {integrity: sha512-uZfn9s4uuRsaX5Lwx+gFP3B6YsyOKUE+Rqa6z9ojT4VSRAsZFko9FRn6OxQUA1z5t5d08fY4pf+/+Dkd5wbdbA==} dev: false - /@firebase/app-check/0.5.4_@firebase+app@0.7.19: - resolution: {integrity: sha512-UX6IcuapbLb8Q4zYaUq5UKbpXURY4lrK41Is2c56Q/h7i4zRiMYLKEETJZIfVATE2vKsbjxSxn02xS9g/VPftw==} + /@firebase/app-check-types/0.4.0: + resolution: {integrity: sha512-SsWafqMABIOu7zLgWbmwvHGOeQQVQlwm42kwwubsmfLmL4Sf5uGpBfDhQ0CAkpi7bkJ/NwNFKafNDL9prRNP0Q==} + dev: false + + /@firebase/app-check/0.5.5_@firebase+app@0.7.20: + resolution: {integrity: sha512-thGjl8Ys2VFKitUUM/xqkXXV8GS56yUdOBMpsjpTSH5iwa49dSBUTGzbwmUMARSkiSF+AzcjNonO6LQczTU/AA==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 dev: false - /@firebase/app-compat/0.1.20: - resolution: {integrity: sha512-s+MQQv5acNZ2Mx/TNyr+B0XaqATq14hkAL9247exIvV0RBwP28THuadPVw99kjrwkHilQtBMFJmmCm1S5ZoktQ==} + /@firebase/app-compat/0.1.21: + resolution: {integrity: sha512-zKRjOt6JXZ6gBdl3ELdjvEQ7cdrsrCjLEaLttBxioqW9VxXZfBOgP38uUb0baJk2XNEUA6YWM+H/bg1y+FGFYA==} dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 dev: false @@ -2610,25 +2604,25 @@ packages: resolution: {integrity: sha512-6fbHQwDv2jp/v6bXhBw2eSRbNBpxHcd1NBF864UksSMVIqIyri9qpJB1Mn6sGZE+bnDsSQBC5j2TbMxYsJQkQg==} dev: false - /@firebase/app/0.7.19: - resolution: {integrity: sha512-Xs8s3OF4Tn7Ls833TOTAUSMDq/pDs1fDsLRprR1+B4wyxyWCYBisgDMnPx25z9wKJESOWoZTDjyBVHrn6sG92w==} + /@firebase/app/0.7.20: + resolution: {integrity: sha512-tTVrEYCbEKBcMp/bj5rUa35iM32W5z9l3jbLAqDh0ZM2yO4JvF08a3hHacZ32XDh9Av/yCgla0QmVPp/Z2klNg==} dependencies: - '@firebase/component': 0.5.11 + '@firebase/component': 0.5.12 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 dev: false - /@firebase/auth-compat/0.2.10_cdfe7719f379a3fdf450aeb4d04c93da: - resolution: {integrity: sha512-FYsU18N3nZq/l7gfnmH8tYOPDWSU3pPJa/JAmflfcwcDJnYLAiHRHZb0KmLV5baRMD8QdMdER5bGbzWgtOmczQ==} + /@firebase/auth-compat/0.2.11_dfadae57191c8ff11d89085862f0c8e3: + resolution: {integrity: sha512-6C42yXevri3F7H1LS3h524UsQsUlzGuszlIL3YsDuS+WJFqBe8I5AHOEM+Opi/VtIpWaXxPhWsp75TQndaCjKA==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.1.20 - '@firebase/auth': 0.19.10_@firebase+app@0.7.19 - '@firebase/auth-types': 0.11.0_8d05954f5748666b17f36dcdd243eda6 - '@firebase/component': 0.5.11 - '@firebase/util': 1.5.0 + '@firebase/app-compat': 0.1.21 + '@firebase/auth': 0.19.11_@firebase+app@0.7.20 + '@firebase/auth-types': 0.11.0_28551417bc65badf6b618d048d805f44 + '@firebase/component': 0.5.12 + '@firebase/util': 1.5.1 node-fetch: 2.6.7 selenium-webdriver: 4.1.1 tslib: 2.3.1 @@ -2640,35 +2634,35 @@ packages: - utf-8-validate dev: false - /@firebase/auth-interop-types/0.1.6_8d05954f5748666b17f36dcdd243eda6: + /@firebase/auth-interop-types/0.1.6_28551417bc65badf6b618d048d805f44: resolution: {integrity: sha512-etIi92fW3CctsmR9e3sYM3Uqnoq861M0Id9mdOPF6PWIg38BXL5k4upCNBggGUpLIS0H1grMOvy/wn1xymwe2g==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.7.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 dev: false - /@firebase/auth-types/0.11.0_8d05954f5748666b17f36dcdd243eda6: + /@firebase/auth-types/0.11.0_28551417bc65badf6b618d048d805f44: resolution: {integrity: sha512-q7Bt6cx+ySj9elQHTsKulwk3+qDezhzRBFC9zlQ1BjgMueUOnGMcvqmU0zuKlQ4RhLSH7MNAdBV2znVaoN3Vxw==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.7.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 dev: false - /@firebase/auth/0.19.10_@firebase+app@0.7.19: - resolution: {integrity: sha512-FqKHohxZriJM4S8hY0RbNwGVb+Y5INsWkWsqOaWQ9pM0hEolYruE10gKqrOHO9kauXhKbdUUGPgKHJJ9+r8eVg==} + /@firebase/auth/0.19.11_@firebase+app@0.7.20: + resolution: {integrity: sha512-9bctXmQA5pRhLL03wkbg6ibmhoTMa8QRHm3uDnb+iyMcHTJ5AyILRc5AVPS9FsnpWPDOLiVjtuMC28D6iC+zew==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 node-fetch: 2.6.7 selenium-webdriver: 4.0.0-rc-1 tslib: 2.3.1 @@ -2678,59 +2672,59 @@ packages: - utf-8-validate dev: false - /@firebase/component/0.5.11: - resolution: {integrity: sha512-amtUrJxfJhJdjR3JzXqkHIoghJJ34o8OiSDj3gq96uKL4BRkSpmPaxi0+1r8DcDQ6bQxh3kDSoge8bRCDQCvsw==} + /@firebase/component/0.5.12: + resolution: {integrity: sha512-gAKwxo0Ev+rp7Px+Yr71WbcC0CM9Tevhv0g38ORp2p57HqGjY65D3MD+jTKGZl58N/0nmX6MRRKym3bq/3k1gw==} dependencies: - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 dev: false - /@firebase/database-compat/0.1.6_2668787785cafa51f0d66ef4e88354f7: - resolution: {integrity: sha512-fDAJWI5ZdXPlS84NC87Et7pE6mJxF5uUoePCaQFpU56wrYVk58COomcSXtFrdX9U5/1FHjR3TaDWV5pJakv83g==} + /@firebase/database-compat/0.1.7_b2c59dabb74e592c496f4266c968bb15: + resolution: {integrity: sha512-T1mleRv2A8wyTV/jUuOdkN9Tl2lz0RGauqGc9nxP3AUzS9m3gIDN7u4CahZSdJlkR6tSU/MEWlfs5Q/oZStqxg==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.1.20 - '@firebase/component': 0.5.11 - '@firebase/database': 0.12.6_@firebase+app-types@0.7.0 - '@firebase/database-types': 0.9.5 + '@firebase/app-compat': 0.1.21 + '@firebase/component': 0.5.12 + '@firebase/database': 0.12.7_@firebase+app-types@0.7.0 + '@firebase/database-types': 0.9.6 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app-types' dev: false - /@firebase/database-types/0.9.5: - resolution: {integrity: sha512-0p9BDmoZCbW5c//tl7IUn8hOIM4M6wCnLmVdbVUvD30V4hZT36phdhajf36pcMgE9suMsz4xtvWlngEy9FeHwA==} + /@firebase/database-types/0.9.6: + resolution: {integrity: sha512-E7U28X+FtVtug7EkIkaOXbdP8ghCPno21WWgEiDKsneY28N5WOwccfXqSzHgAAezkR40ht/ZqXlCsUhEpv6JXw==} dependencies: '@firebase/app-types': 0.7.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 dev: false - /@firebase/database/0.12.6_@firebase+app-types@0.7.0: - resolution: {integrity: sha512-vokGkgpk+4bvy1d/s0lsPP9GmC1nrAtctQwEEDH5ZO4WCYPj16Y6rKILsOjrWwJ+Ih21ORnekxSzfpKyd1KHEg==} + /@firebase/database/0.12.7_@firebase+app-types@0.7.0: + resolution: {integrity: sha512-HL2NMQ3Ce5YNM2MdEuACHmU9NQEwq2F64R0XK+CReph40skxp+A7TvlJDO5bTAC0s3l3ebgCA9VmxfJu5R6UAA==} dependencies: - '@firebase/auth-interop-types': 0.1.6_8d05954f5748666b17f36dcdd243eda6 - '@firebase/component': 0.5.11 + '@firebase/auth-interop-types': 0.1.6_28551417bc65badf6b618d048d805f44 + '@firebase/component': 0.5.12 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 faye-websocket: 0.11.4 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app-types' dev: false - /@firebase/firestore-compat/0.1.15_cdfe7719f379a3fdf450aeb4d04c93da: - resolution: {integrity: sha512-bk0f2JbdgJc0P0eHnQBrqRF7xgMiSh6qyYqDTUh08/5kwdJed1SlmvF/3BSDhQHABcji99YhgR3E1ms6uoZwdg==} + /@firebase/firestore-compat/0.1.16_dfadae57191c8ff11d89085862f0c8e3: + resolution: {integrity: sha512-nLSBYGTkcGDbNFHBBMl74e7gwNo++BDTALlWNBaYRjTNj0TctYt8q4lggNy+MxXRQhP+dZjq/mrClS9T8RJZ4g==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.1.20 - '@firebase/component': 0.5.11 - '@firebase/firestore': 3.4.6_@firebase+app@0.7.19 - '@firebase/firestore-types': 2.5.0_8d05954f5748666b17f36dcdd243eda6 - '@firebase/util': 1.5.0 + '@firebase/app-compat': 0.1.21 + '@firebase/component': 0.5.12 + '@firebase/firestore': 3.4.7_@firebase+app@0.7.20 + '@firebase/firestore-types': 2.5.0_28551417bc65badf6b618d048d805f44 + '@firebase/util': 1.5.1 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app' @@ -2738,28 +2732,28 @@ packages: - encoding dev: false - /@firebase/firestore-types/2.5.0_8d05954f5748666b17f36dcdd243eda6: + /@firebase/firestore-types/2.5.0_28551417bc65badf6b618d048d805f44: resolution: {integrity: sha512-I6c2m1zUhZ5SH0cWPmINabDyH5w0PPFHk2UHsjBpKdZllzJZ2TwTkXbDtpHUZNmnc/zAa0WNMNMvcvbb/xJLKA==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.7.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 dev: false - /@firebase/firestore/3.4.6_@firebase+app@0.7.19: - resolution: {integrity: sha512-HVyrg1LAVePvut+qf856mCSdZbVL9dhnK1skZ6LY2KquS71RW0v7/iu+/Wn00kPHbZSmHGvYzHD6JOf+kjjbuQ==} + /@firebase/firestore/3.4.7_@firebase+app@0.7.20: + resolution: {integrity: sha512-bE8k72cw0zJKOsKTOeRp2As0nNZIv3To9qQe0mTtHu4O8dSdst6izSXixZEXDOuMf/dp7VOY8+VBW/ZqeqWQsA==} engines: {node: '>=10.10.0'} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 '@firebase/webchannel-wrapper': 0.6.1 - '@grpc/grpc-js': 1.5.7 + '@grpc/grpc-js': 1.6.1 '@grpc/proto-loader': 0.6.9 node-fetch: 2.6.7 tslib: 2.3.1 @@ -2767,16 +2761,16 @@ packages: - encoding dev: false - /@firebase/functions-compat/0.1.10_cdfe7719f379a3fdf450aeb4d04c93da: - resolution: {integrity: sha512-Iqq1335rnhed+6WcOGUr+C8PzBAUwGnrQCKmo0YkyiLrO7UwRhIEeS/su4cthp4KNTsT5bdZWzEh9I4ZJ00bjw==} + /@firebase/functions-compat/0.1.11_dfadae57191c8ff11d89085862f0c8e3: + resolution: {integrity: sha512-4U3BU4hOPAhG5YKpLAY/qKhNxsEn4yWSJHLc83H81Y75o2jSsyVklFR2bZNHl0qfq6A7KwUbL8HU48qLbhPlGg==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.1.20 - '@firebase/component': 0.5.11 - '@firebase/functions': 0.7.9_5c860adfc5c562292497b8beda4959cd + '@firebase/app-compat': 0.1.21 + '@firebase/component': 0.5.12 + '@firebase/functions': 0.7.10_d8b1d8a8908d69140f74bf409d5ccca7 '@firebase/functions-types': 0.5.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app' @@ -2788,17 +2782,17 @@ packages: resolution: {integrity: sha512-qza0M5EwX+Ocrl1cYI14zoipUX4gI/Shwqv0C1nB864INAD42Dgv4v94BCyxGHBg2kzlWy8PNafdP7zPO8aJQA==} dev: false - /@firebase/functions/0.7.9_5c860adfc5c562292497b8beda4959cd: - resolution: {integrity: sha512-C8FpECq2tSOXnWT+npw/qDihxWvs6vT0NdsOEV0artNKphf0tzUleo8NgklyqSmwnAy0v35YGTNdVvxCWt5N8A==} + /@firebase/functions/0.7.10_d8b1d8a8908d69140f74bf409d5ccca7: + resolution: {integrity: sha512-d+8M6RENmrF2/Y2J+V3fuad6Vq8aiwEzeJCl5sdUA4TydAnAPmGPaEz7uEyaxp8gIx/j373CZy2jTuI3PCxEyw==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 + '@firebase/app': 0.7.20 '@firebase/app-check-interop-types': 0.1.0 - '@firebase/auth-interop-types': 0.1.6_8d05954f5748666b17f36dcdd243eda6 - '@firebase/component': 0.5.11 + '@firebase/auth-interop-types': 0.1.6_28551417bc65badf6b618d048d805f44 + '@firebase/component': 0.5.12 '@firebase/messaging-interop-types': 0.1.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 node-fetch: 2.6.7 tslib: 2.3.1 transitivePeerDependencies: @@ -2806,14 +2800,14 @@ packages: - encoding dev: false - /@firebase/installations/0.5.6_@firebase+app@0.7.19: - resolution: {integrity: sha512-e/sDDungY/haSw9H+DmknZkf6M8Q3O9CLUHoVldqX96lvOpT8le6YndJOgK6fTHiRs0ro3amg+4ef2mn40NqzQ==} + /@firebase/installations/0.5.7_@firebase+app@0.7.20: + resolution: {integrity: sha512-qt6crxYyzUc19OYmNunOilcPUrVd+g0VJ42C3+clFJXsYzHey9xfr4q+5vALTJKLXbsX3QPzqEFEpe37sGSRRQ==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 - '@firebase/util': 1.5.0 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 + '@firebase/util': 1.5.1 tslib: 2.3.1 dev: false @@ -2823,15 +2817,15 @@ packages: tslib: 2.3.1 dev: false - /@firebase/messaging-compat/0.1.10_c8a60333997e76cbef3dda80e0a2394a: - resolution: {integrity: sha512-RtdXnn8MWPvWm/1BKR0g0U763RcAALzqPl8zEIkjFBq9wBS7rWqbj9zZ+c4rFUVks4vleLqLv9v6M0O/FsieMg==} + /@firebase/messaging-compat/0.1.11_868085a1841bc1620876e13ffdfa88b5: + resolution: {integrity: sha512-icqaH66Fdn1704WRnF3NxPuDYA7SQTJv1klDuN2/LZi029w2jd9j7Tkld2egcwDgF2IrIIgxdCTRcwFZQIG2kQ==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.1.20 - '@firebase/component': 0.5.11 - '@firebase/messaging': 0.9.10_@firebase+app@0.7.19 - '@firebase/util': 1.5.0 + '@firebase/app-compat': 0.1.21 + '@firebase/component': 0.5.12 + '@firebase/messaging': 0.9.11_@firebase+app@0.7.20 + '@firebase/util': 1.5.1 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app' @@ -2841,30 +2835,30 @@ packages: resolution: {integrity: sha512-DbvUl/rXAZpQeKBnwz0NYY5OCqr2nFA0Bj28Fmr3NXGqR4PAkfTOHuQlVtLO1Nudo3q0HxAYLa68ZDAcuv2uKQ==} dev: false - /@firebase/messaging/0.9.10_@firebase+app@0.7.19: - resolution: {integrity: sha512-Q59obc+hhqDxz5oJh012lI7kCKxcnNV7nMB74Hc7LGT7/oZ3abPl1rmnC0KKdaAHm37/riJgEgDW0HrUTc5REA==} + /@firebase/messaging/0.9.11_@firebase+app@0.7.20: + resolution: {integrity: sha512-AdUvAz3S6fAhGlaP0gAT83vuuLtieXzr8TKjEeREbz/cJHx3DKZuDPK1RVElQos0ACc5kFtSJrKlEa8N2rdYjQ==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 - '@firebase/installations': 0.5.6_@firebase+app@0.7.19 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 + '@firebase/installations': 0.5.7_@firebase+app@0.7.20 '@firebase/messaging-interop-types': 0.1.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 dev: false - /@firebase/performance-compat/0.1.6_c8a60333997e76cbef3dda80e0a2394a: - resolution: {integrity: sha512-DHGw/u4iGZGeEj95CQooA3oOBcPBUw4+JuMSnk7qmY6iYBsYmkcUPVCFsgYNcAVtHBdU64DJX9RZbjkMmNX0uQ==} + /@firebase/performance-compat/0.1.7_868085a1841bc1620876e13ffdfa88b5: + resolution: {integrity: sha512-U0kxTs5mhzLM4tEkLCnlThgdJUh43dZQsk3Q9/fhuI4FrI8I2uUhx6BMVnyeiT7O9G4lEmhV3ag3QSmzdw4hzQ==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.1.20 - '@firebase/component': 0.5.11 + '@firebase/app-compat': 0.1.21 + '@firebase/component': 0.5.12 '@firebase/logger': 0.3.2 - '@firebase/performance': 0.5.6_@firebase+app@0.7.19 + '@firebase/performance': 0.5.7_@firebase+app@0.7.20 '@firebase/performance-types': 0.1.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app' @@ -2874,16 +2868,16 @@ packages: resolution: {integrity: sha512-6p1HxrH0mpx+622Ql6fcxFxfkYSBpE3LSuwM7iTtYU2nw91Hj6THC8Bc8z4nboIq7WvgsT/kOTYVVZzCSlXl8w==} dev: false - /@firebase/performance/0.5.6_@firebase+app@0.7.19: - resolution: {integrity: sha512-QfVq2Pa5PSoYLgwVyEFApb1i0mKISDzBRDC76VHx5wOSi28c31coYK0qrHjVkHlG51nnyEtBIWqXC2fFaOzr5Q==} + /@firebase/performance/0.5.7_@firebase+app@0.7.20: + resolution: {integrity: sha512-V8dIYqCr+STiwY09JRPlRo1X59nwpT+s5gy34pdF4DNe/9Ck2XN0WkzDRb1oYwRtMl1cvWwLktbjtFICp4VYfA==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 - '@firebase/installations': 0.5.6_@firebase+app@0.7.19 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 + '@firebase/installations': 0.5.7_@firebase+app@0.7.20 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 dev: false @@ -2895,17 +2889,17 @@ packages: whatwg-fetch: 2.0.4 dev: false - /@firebase/remote-config-compat/0.1.6_c8a60333997e76cbef3dda80e0a2394a: - resolution: {integrity: sha512-OEGADnpKIoVQF1blOTxzFBrP6LzEXR+IA7vyLwh7lL+qXpDJGvmg0Eoxb4yxZw4cQCZBGO6fcilBZkDmTDEp/w==} + /@firebase/remote-config-compat/0.1.7_868085a1841bc1620876e13ffdfa88b5: + resolution: {integrity: sha512-i3qfpqNL1iYRP8JSxorV9vQuReTst/xJ6voEodIiTR/JbTM0pXlQ4E+zlS5Nw+6GzsZUW21cmXwk1Yzz5a0AFQ==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.1.20 - '@firebase/component': 0.5.11 + '@firebase/app-compat': 0.1.21 + '@firebase/component': 0.5.12 '@firebase/logger': 0.3.2 - '@firebase/remote-config': 0.3.5_@firebase+app@0.7.19 + '@firebase/remote-config': 0.3.6_@firebase+app@0.7.20 '@firebase/remote-config-types': 0.2.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app' @@ -2915,29 +2909,29 @@ packages: resolution: {integrity: sha512-hqK5sCPeZvcHQ1D6VjJZdW6EexLTXNMJfPdTwbD8NrXUw6UjWC4KWhLK/TSlL0QPsQtcKRkaaoP+9QCgKfMFPw==} dev: false - /@firebase/remote-config/0.3.5_@firebase+app@0.7.19: - resolution: {integrity: sha512-sxV8dpgQNWVPWDAVX7KtLCbkBJyox1L+RlGn/Djpj47YgeNuLOqjRZeEoydL9RO3EdzKG6EcHeqOhdpMBgeiNA==} + /@firebase/remote-config/0.3.6_@firebase+app@0.7.20: + resolution: {integrity: sha512-eec1gbwFWslZZKdwC/tAC1cM1cUQSr+beS/uNkevrrC0cOjAJ1xqFPayvd0e2kbjAO2+pbp1Oe0yreORe28Cvg==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 - '@firebase/installations': 0.5.6_@firebase+app@0.7.19 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 + '@firebase/installations': 0.5.7_@firebase+app@0.7.20 '@firebase/logger': 0.3.2 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 tslib: 2.3.1 dev: false - /@firebase/storage-compat/0.1.11_cdfe7719f379a3fdf450aeb4d04c93da: - resolution: {integrity: sha512-dD0OaFKgNqtNvirOB6omXw2RJEDGnfJtus2K93cgIqkUxso0NawTA/7LyD3nMccb2L11BMh57GcdyKHL0AWoJQ==} + /@firebase/storage-compat/0.1.12_dfadae57191c8ff11d89085862f0c8e3: + resolution: {integrity: sha512-Qa21YWM5AZvRSH8/lmT4r//xdlEP01azt0GHgcX+MkKLi18qpPjgXpxCstVALH4XCKBP0RMaNiIToWIRTdRSxw==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.1.20 - '@firebase/component': 0.5.11 - '@firebase/storage': 0.9.3_@firebase+app@0.7.19 - '@firebase/storage-types': 0.6.0_8d05954f5748666b17f36dcdd243eda6 - '@firebase/util': 1.5.0 + '@firebase/app-compat': 0.1.21 + '@firebase/component': 0.5.12 + '@firebase/storage': 0.9.4_@firebase+app@0.7.20 + '@firebase/storage-types': 0.6.0_28551417bc65badf6b618d048d805f44 + '@firebase/util': 1.5.1 tslib: 2.3.1 transitivePeerDependencies: - '@firebase/app' @@ -2945,32 +2939,32 @@ packages: - encoding dev: false - /@firebase/storage-types/0.6.0_8d05954f5748666b17f36dcdd243eda6: + /@firebase/storage-types/0.6.0_28551417bc65badf6b618d048d805f44: resolution: {integrity: sha512-1LpWhcCb1ftpkP/akhzjzeFxgVefs6eMD2QeKiJJUGH1qOiows2w5o0sKCUSQrvrRQS1lz3SFGvNR1Ck/gqxeA==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.7.0 - '@firebase/util': 1.5.0 + '@firebase/util': 1.5.1 dev: false - /@firebase/storage/0.9.3_@firebase+app@0.7.19: - resolution: {integrity: sha512-bi1sxMGduTl/cidtIqVyPyIAHEjMrQ5cMry2s4LfJMwaztUdSjgeSZRKLo5Nqy5/CC5fPhNIU3ueLhDm9z7dsA==} + /@firebase/storage/0.9.4_@firebase+app@0.7.20: + resolution: {integrity: sha512-oDqIIxoGMuchwTDHugDE/ul0h+hFVh7eAmvIWHrchaj0R2BTivb+H5qgszWjlCs2pjHS6waGsnSGJgpBTW4AeA==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.7.19 - '@firebase/component': 0.5.11 - '@firebase/util': 1.5.0 + '@firebase/app': 0.7.20 + '@firebase/component': 0.5.12 + '@firebase/util': 1.5.1 node-fetch: 2.6.7 tslib: 2.3.1 transitivePeerDependencies: - encoding dev: false - /@firebase/util/1.5.0: - resolution: {integrity: sha512-4w4OY3YJVHV/4UBZ8OcXb8BD8I83P5n2y+FW0dHhn9OLXdYDg8bvCTA08P0nszpZqBhwutKQ4OS7c530SGjeLg==} + /@firebase/util/1.5.1: + resolution: {integrity: sha512-ojwPg8sKVcoU/kC1QdTrD+eUDyjQkZyiH9tlouXeZdAeDddCYNvHgIeBQhZt62WIcjlNhy1zro/xdV5nUUU38A==} dependencies: tslib: 2.3.1 dev: false @@ -2993,7 +2987,7 @@ packages: tslib: 2.3.1 dev: true - /@graphql-codegen/cli/2.6.2_b10c7c805a70317564c606afefa10ca5: + /@graphql-codegen/cli/2.6.2_50dbbce7419ab720b01d03d0e2a001aa: resolution: {integrity: sha512-UO75msoVgvLEvfjCezM09cQQqp32+mR8Ma1ACsBpr7nroFvHbgcu2ulx1cMovg4sxDBCsvd9Eq/xOOMpARUxtw==} hasBin: true peerDependencies: @@ -3008,8 +3002,8 @@ packages: '@graphql-tools/graphql-file-loader': 7.3.3_graphql@15.7.2 '@graphql-tools/json-file-loader': 7.3.3_graphql@15.7.2 '@graphql-tools/load': 7.5.1_graphql@15.7.2 - '@graphql-tools/prisma-loader': 7.1.1_e92fd8447452a16eb0b9d4ba1df1f876 - '@graphql-tools/url-loader': 7.7.1_e92fd8447452a16eb0b9d4ba1df1f876 + '@graphql-tools/prisma-loader': 7.1.1_ecd77fc38bdf37a66d139aef3f5dc8c0 + '@graphql-tools/url-loader': 7.7.1_ecd77fc38bdf37a66d139aef3f5dc8c0 '@graphql-tools/utils': 8.6.1_graphql@15.7.2 ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -3023,7 +3017,7 @@ packages: glob: 7.2.0 globby: 11.1.0 graphql: 15.7.2 - graphql-config: 4.1.0_b10c7c805a70317564c606afefa10ca5 + graphql-config: 4.1.0_50dbbce7419ab720b01d03d0e2a001aa inquirer: 8.2.0 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -3147,8 +3141,8 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-urql-graphcache/2.2.9_0078faba29fbf2fd40f25b4af19ce6b4: - resolution: {integrity: sha512-yboU7vXI89Jh3zMYgFL8V5AOI5hagbdgtM5nBWUUhfm9vPOk+43+DaMxCQGyocDS7LLq5EdUqn5K07W1E1D0rQ==} + /@graphql-codegen/typescript-urql-graphcache/2.2.10_0078faba29fbf2fd40f25b4af19ce6b4: + resolution: {integrity: sha512-GRWisSY9zdf2tdT0jBYqapesw68B88ExpG9DkInyeQf62MfBDjxzncmiPbuHxRjd2QJBCo2WfycHTwgkMGT1JA==} peerDependencies: '@urql/exchange-graphcache': ^4.1.1 graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -3404,12 +3398,12 @@ packages: tslib: 2.3.1 dev: true - /@graphql-tools/prisma-loader/7.1.1_e92fd8447452a16eb0b9d4ba1df1f876: + /@graphql-tools/prisma-loader/7.1.1_ecd77fc38bdf37a66d139aef3f5dc8c0: resolution: {integrity: sha512-9hVpG3BNsXAYMLPlZhSHubk6qBmiHLo/UlU0ldL100sMpqI46iBaHNhTNXZCSdd81hT+4HNqaDXNFqyKJ22OGQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/url-loader': 7.7.1_e92fd8447452a16eb0b9d4ba1df1f876 + '@graphql-tools/url-loader': 7.7.1_ecd77fc38bdf37a66d139aef3f5dc8c0 '@graphql-tools/utils': 8.6.1_graphql@15.7.2 '@types/js-yaml': 4.0.5 '@types/json-stable-stringify': 1.0.33 @@ -3463,7 +3457,7 @@ packages: tslib: 2.3.1 value-or-promise: 1.0.11 - /@graphql-tools/url-loader/7.7.0_e92fd8447452a16eb0b9d4ba1df1f876: + /@graphql-tools/url-loader/7.7.0_ecd77fc38bdf37a66d139aef3f5dc8c0: resolution: {integrity: sha512-mBBb+aJqI4E0MVEzyfi76Pi/G6lGxGTVt/tP1YtKJly7UnonNoWOtDusdL3zIVAGhGgLsNrLbGhLDbwSd6TV6A==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -3481,7 +3475,7 @@ packages: graphql-sse: 1.0.6_graphql@15.7.2 graphql-ws: 5.5.5_graphql@15.7.2 isomorphic-ws: 4.0.1_ws@8.5.0 - meros: 1.1.4_@types+node@17.0.21 + meros: 1.1.4_@types+node@17.0.23 subscriptions-transport-ws: 0.11.0_graphql@15.7.2 sync-fetch: 0.3.1 tslib: 2.3.1 @@ -3494,7 +3488,7 @@ packages: - encoding - utf-8-validate - /@graphql-tools/url-loader/7.7.1_e92fd8447452a16eb0b9d4ba1df1f876: + /@graphql-tools/url-loader/7.7.1_ecd77fc38bdf37a66d139aef3f5dc8c0: resolution: {integrity: sha512-K/5amdeHtKYI976HVd/AXdSNvLL7vx5QVjMlwN0OHeYyxSgC+UOH+KkS7cshYgL13SekGu0Mxbg9ABfgQ34ECA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -3512,7 +3506,7 @@ packages: graphql-sse: 1.0.6_graphql@15.7.2 graphql-ws: 5.5.5_graphql@15.7.2 isomorphic-ws: 4.0.1_ws@8.5.0 - meros: 1.1.4_@types+node@17.0.21 + meros: 1.1.4_@types+node@17.0.23 subscriptions-transport-ws: 0.11.0_graphql@15.7.2 sync-fetch: 0.3.1 tslib: 2.3.1 @@ -3584,12 +3578,12 @@ packages: dependencies: graphql: 15.7.2 - /@grpc/grpc-js/1.5.7: - resolution: {integrity: sha512-RAlSbZ9LXo0wNoHKeUlwP9dtGgVBDUbnBKFpfAv5iSqMG4qWz9um2yLH215+Wow1I48etIa1QMS+WAGmsE/7HQ==} + /@grpc/grpc-js/1.6.1: + resolution: {integrity: sha512-ix3rQS64rKL1s6CfIaRgnts+RNYZZ2NaYyTK7iimai6an/0GGDbukzy990hJ5vtKHjhaqJxJMB6Qq7BMZ0zZSQ==} engines: {node: ^8.13.0 || >=10.10.0} dependencies: '@grpc/proto-loader': 0.6.9 - '@types/node': 17.0.21 + '@types/node': 17.0.23 dev: false /@grpc/proto-loader/0.6.9: @@ -3609,7 +3603,7 @@ packages: engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.3 + debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -3631,7 +3625,7 @@ packages: resolution: {integrity: sha512-rnfA0ScyBXyp9xsSD4EAMGeOh1yv/AE7fhqdAdSOr5X8N39azz257umfRtzNT9sHXAKSSzpCVhIbMAkp5c/gjQ==} engines: {node: '>= 10.0'} dependencies: - '@babel/parser': 7.17.3 + '@babel/parser': 7.17.8 dev: false /@intlify/vue-i18n-loader/1.1.0: @@ -3640,7 +3634,7 @@ packages: dependencies: '@intlify/shared': 9.1.9 js-yaml: 3.14.1 - json5: 2.2.0 + json5: 2.2.1 dev: false /@istanbuljs/load-nyc-config/1.1.0: @@ -3664,7 +3658,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -3685,7 +3679,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -3722,7 +3716,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 jest-mock: 27.5.1 dev: true @@ -3732,7 +3726,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 17.0.21 + '@types/node': 17.0.23 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -3761,7 +3755,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -3845,7 +3839,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: true @@ -3869,12 +3863,16 @@ packages: /@lezer/common/0.15.11: resolution: {integrity: sha512-vv0nSdIaVCRcJ8rPuDdsrNVfBOYe/4Szr/LhF929XyDmBndLDuWiCCHooGlGlJfzELyO608AyDhVsuX/ZG36NA==} + dev: false + + /@lezer/common/0.15.12: + resolution: {integrity: sha512-edfwCxNLnzq5pBA/yaIhwJ3U3Kz8VAUOTRg0hhxaizaI1N+qxV7EXDv/kLCkLeq2RzSFvxexlaj5Mzfn2kY0Ig==} /@lezer/generator/0.15.4: resolution: {integrity: sha512-9bBwU2TzKMBQ6OCEDevuMNWGOBKlkq5YIGEhjrz9pb3MLb+oYYR4dVFZ7ehwLcDoSecsSA7PdlAy0thJO5pt2w==} hasBin: true dependencies: - '@lezer/common': 0.15.11 + '@lezer/common': 0.15.12 '@lezer/lr': 0.15.8 dev: true @@ -3893,7 +3891,7 @@ packages: /@lezer/lr/0.15.8: resolution: {integrity: sha512-bM6oE6VQZ6hIFxDNKk8bKPa14hqFrV07J/vHGOeiAbJReIaQXmkVb6xQu4MR+JBTLa5arGRyAAjJe1qaQt3Uvg==} dependencies: - '@lezer/common': 0.15.11 + '@lezer/common': 0.15.12 /@lezer/xml/0.15.1: resolution: {integrity: sha512-vVh01enxM9hSGOcFtztmX+Pa460HDq5jIeft9bDCe17PUOU0nAbfo883I3cW9lUOcmWNQ3btbkmXMGjRszJE6g==} @@ -3901,8 +3899,8 @@ packages: '@lezer/lr': 0.15.8 dev: false - /@mdn/browser-compat-data/4.1.11: - resolution: {integrity: sha512-sYJ5CWXVAJX3608rV3WowUGxPm3p7HCgoGh/eBseCQ2c5ALBz6oRTK2OWPFz679aBUik6IY1IlA89uxbb5/FjA==} + /@mdn/browser-compat-data/4.1.14: + resolution: {integrity: sha512-pndsgd4jXIGcgWKPXkN5AL1rdwhgQpLXWyK25jb42SUaeujs/GhRK8+Q4W97RTiCirf/DoaahcTI/3Op6+/gfw==} dev: true /@n1ru4l/graphql-live-query/0.9.0_graphql@15.7.2: @@ -3968,13 +3966,13 @@ packages: - supports-color dev: false - /@nuxt/builder/2.15.8_typescript@4.6.2: + /@nuxt/builder/2.15.8_typescript@4.6.3: resolution: {integrity: sha512-WVhN874LFMdgRiJqpxmeKI+vh5lhCUBVOyR9PhL1m1V/GV3fb+Dqc1BKS6XgayrWAWavPLveCJmQ/FID0puOfQ==} dependencies: '@nuxt/devalue': 1.2.5 '@nuxt/utils': 2.15.8 '@nuxt/vue-app': 2.15.8 - '@nuxt/webpack': 2.15.8_typescript@4.6.2 + '@nuxt/webpack': 2.15.8_typescript@4.6.3 chalk: 4.1.2 chokidar: 3.5.3 consola: 2.15.3 @@ -4101,11 +4099,11 @@ packages: ufo: 0.7.11 dev: false - /@nuxt/kit-edge/3.0.0-27470397.9ebea90: - resolution: {integrity: sha512-mBUqr6uAqXBurjf63m3/AtaLlKnXMy2OguW4nCismxE30/fz0LtF/MndKcX7SrfeOcpsnrOYvIUhgLheS0Lhpg==} + /@nuxt/kit-edge/3.0.0-27480376.fdd38f9: + resolution: {integrity: sha512-WGvYVg9i8iN35fNOA8zPKgymB61+NeugLxHs3QC/oAHZVObYvlDvpEdTeGNtNtrXGuvxm9ShxopQWpG30M+VDQ==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0} dependencies: - '@nuxt/schema': /@nuxt/schema-edge/3.0.0-27470397.9ebea90 + '@nuxt/schema': /@nuxt/schema-edge/3.0.0-27480376.fdd38f9 c12: 0.2.4 consola: 2.15.3 defu: 6.0.0 @@ -4120,9 +4118,9 @@ packages: pkg-types: 0.3.2 scule: 0.2.1 semver: 7.3.5 - unctx: 1.1.3 + unctx: 1.1.4 unimport: 0.1.3 - untyped: 0.4.3 + untyped: 0.4.4 transitivePeerDependencies: - esbuild - rollup @@ -4153,8 +4151,8 @@ packages: - encoding dev: false - /@nuxt/schema-edge/3.0.0-27470397.9ebea90: - resolution: {integrity: sha512-NTVqtIozgUW83uRLoEufjCulfkcZKPjrUXIuVNMmJwkkpO1SxJt4jY2uVTU8ahi8uG+iETkERcMbGi8NA86dtw==} + /@nuxt/schema-edge/3.0.0-27480376.fdd38f9: + resolution: {integrity: sha512-hnWMkGkIbe5KH//n9ChFGoRc2lSK7NSvvtbXqCR5Ssw1dk5zWGpVd8WRoG6QHOZB0YfTedxX/0QcJ5YApZ1JnA==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0} dependencies: c12: 0.2.4 @@ -4165,7 +4163,7 @@ packages: postcss-import-resolver: 2.0.0 scule: 0.2.1 std-env: 3.0.1 - ufo: 0.8.1 + ufo: 0.8.3 unimport: 0.1.3 transitivePeerDependencies: - esbuild @@ -4222,7 +4220,7 @@ packages: - encoding dev: false - /@nuxt/types/2.15.8_sass@1.49.9: + /@nuxt/types/2.15.8_sass@1.49.11: resolution: {integrity: sha512-zBAG5Fy+SIaZIerOVF1vxy1zz16ZK07QSbsuQAjdtEFlvr+vKK+0AqCv8r8DBY5IVqdMIaw5FgNUz5py0xWdPg==} dependencies: '@types/autoprefixer': 9.7.2 @@ -4243,7 +4241,7 @@ packages: '@types/webpack-bundle-analyzer': 3.9.3 '@types/webpack-dev-middleware': 4.1.2 '@types/webpack-hot-middleware': 2.25.4 - sass-loader: 10.1.1_sass@1.49.9 + sass-loader: 10.1.1_sass@1.49.11 transitivePeerDependencies: - fibers - node-sass @@ -4251,14 +4249,14 @@ packages: - webpack dev: true - /@nuxt/typescript-build/2.1.0_@nuxt+types@2.15.8+eslint@8.11.0: + /@nuxt/typescript-build/2.1.0_@nuxt+types@2.15.8+eslint@8.12.0: resolution: {integrity: sha512-7TLMpfzgOckf3cBkzoPFns6Xl8FzY6MoFfm/5HUE47QeTWAdOG9ZFxMrVhHWieZHYUuV+k6byRtaRv4S/3R8zA==} peerDependencies: '@nuxt/types': '>=2.13.1' dependencies: - '@nuxt/types': 2.15.8_sass@1.49.9 + '@nuxt/types': 2.15.8_sass@1.49.11 consola: 2.15.3 - fork-ts-checker-webpack-plugin: 6.4.0_eslint@8.11.0+typescript@4.2.4 + fork-ts-checker-webpack-plugin: 6.4.0_eslint@8.12.0+typescript@4.2.4 ts-loader: 8.3.0_typescript@4.2.4 typescript: 4.2.4 transitivePeerDependencies: @@ -4317,14 +4315,14 @@ packages: vue-server-renderer: 2.6.14 dev: false - /@nuxt/webpack/2.15.8_typescript@4.6.2: + /@nuxt/webpack/2.15.8_typescript@4.6.3: resolution: {integrity: sha512-CzJYFed23Ow/UK0+cI1FVthDre1p2qc8Q97oizG39d3/SIh3aUHjgj8c60wcR+RSxVO0FzZMXkmq02NmA7vWJg==} dependencies: '@babel/core': 7.17.8 '@nuxt/babel-preset-app': 2.15.8 '@nuxt/friendly-errors-webpack-plugin': 2.5.2_webpack@4.46.0 '@nuxt/utils': 2.15.8 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-loader: 8.2.4_b72fb7e629d39881e138edb6dcd0dfbe cache-loader: 4.1.0_webpack@4.46.0 caniuse-lite: 1.0.30001274 consola: 2.15.3 @@ -4341,7 +4339,7 @@ packages: memory-fs: 0.5.0 optimize-css-assets-webpack-plugin: 5.0.8_webpack@4.46.0 pify: 5.0.0 - pnp-webpack-plugin: 1.7.0_typescript@4.6.2 + pnp-webpack-plugin: 1.7.0_typescript@4.6.3 postcss: 7.0.39 postcss-import: 12.0.1 postcss-import-resolver: 2.0.0 @@ -4406,7 +4404,7 @@ packages: estree-walker: 2.0.2 fs-extra: 9.1.0 magic-string: 0.25.7 - nuxt: 2.15.8_typescript@4.6.2 + nuxt: 2.15.8_typescript@4.6.3 ufo: 0.7.10 unplugin-vue2-script-setup: 0.9.3_084b6226078c1c34ec4d8a8c1a23d732 upath: 2.0.1 @@ -4427,16 +4425,16 @@ packages: dotenv: 8.6.0 dev: true - /@nuxtjs/eslint-config-typescript/9.0.0_39394221a84a0125a51a7138e62e9739: + /@nuxtjs/eslint-config-typescript/9.0.0_d0062e76d70ab01651d408ef76fbe2be: resolution: {integrity: sha512-IgilIOcwJZ3Af4P7r35vHBl2GS9SIG0TuOINyUiIfzZBmEpX5vYhAbxHeeJhNosIywexDvZZ5m8EQwuJJYUJBg==} peerDependencies: eslint: ^8.11.0 dependencies: - '@nuxtjs/eslint-config': 9.0.0_001ad503201c4e9538a066f91264180f - '@typescript-eslint/eslint-plugin': 5.14.0_ace6f9e7722b813e21eaf2dc993bc413 - '@typescript-eslint/parser': 5.14.0_eslint@8.11.0+typescript@4.6.2 - eslint: 8.11.0 - eslint-import-resolver-typescript: 2.5.0_eslint@8.11.0 + '@nuxtjs/eslint-config': 9.0.0_c30465dd6e9f0d9f4143fa8904563102 + '@typescript-eslint/eslint-plugin': 5.14.0_d6b65a03bf66ac0c7f7b640f483a14f3 + '@typescript-eslint/parser': 5.14.0_eslint@8.12.0+typescript@4.6.3 + eslint: 8.12.0 + eslint-import-resolver-typescript: 2.5.0_eslint@8.12.0 transitivePeerDependencies: - eslint-plugin-import - jest @@ -4444,19 +4442,19 @@ packages: - typescript dev: true - /@nuxtjs/eslint-config/9.0.0_001ad503201c4e9538a066f91264180f: + /@nuxtjs/eslint-config/9.0.0_c30465dd6e9f0d9f4143fa8904563102: resolution: {integrity: sha512-S44hgSrAKEBJMmzg3Wes0uIZBASOgVAOnMYeNZNeeawRX1WpSS9w3WbqcIwjVL1Orx/XwrzMMH32A1ncEd/DQg==} peerDependencies: eslint: ^8.11.0 dependencies: - eslint: 8.11.0 - eslint-config-standard: 16.0.3_7dc77a0be22b3241d34262bf15f20ff9 - eslint-plugin-import: 2.25.4_eslint@8.11.0 - eslint-plugin-jest: 26.1.1_001ad503201c4e9538a066f91264180f - eslint-plugin-node: 11.1.0_eslint@8.11.0 - eslint-plugin-promise: 6.0.0_eslint@8.11.0 - eslint-plugin-unicorn: 41.0.0_eslint@8.11.0 - eslint-plugin-vue: 8.5.0_eslint@8.11.0 + eslint: 8.12.0 + eslint-config-standard: 16.0.3_146d38e67599a909c4e567a04144449b + eslint-plugin-import: 2.25.4_eslint@8.12.0 + eslint-plugin-jest: 26.1.1_c30465dd6e9f0d9f4143fa8904563102 + eslint-plugin-node: 11.1.0_eslint@8.12.0 + eslint-plugin-promise: 6.0.0_eslint@8.12.0 + eslint-plugin-unicorn: 41.0.0_eslint@8.12.0 + eslint-plugin-vue: 8.5.0_eslint@8.12.0 transitivePeerDependencies: - '@typescript-eslint/eslint-plugin' - jest @@ -4464,14 +4462,14 @@ packages: - typescript dev: true - /@nuxtjs/eslint-module/3.0.2_eslint@8.11.0: + /@nuxtjs/eslint-module/3.0.2_eslint@8.12.0: resolution: {integrity: sha512-9q6/bMSvUU2L7Vhy5LUmghW3BQZMReQAvywBwZtX7s62W6dIL7IdD1T3u2zc8JW90grtJK84Ocx3dyYTj/Oavw==} peerDependencies: eslint: '>=7' dependencies: consola: 2.15.3 - eslint: 8.11.0 - eslint-webpack-plugin: 2.5.4_eslint@8.11.0 + eslint: 8.12.0 + eslint-webpack-plugin: 2.5.4_eslint@8.12.0 transitivePeerDependencies: - webpack dev: true @@ -4496,21 +4494,21 @@ packages: semver: 7.3.5 dev: false - /@nuxtjs/i18n/7.2.0: - resolution: {integrity: sha512-fO/QRMxZ0t6LpYJ7ti6mHc0lsog4SMr7Xll3d45zdVSI7+5eBE1YcoG8yXv1sndGQZoq8k0iD1dXuAJA6UL5ww==} + /@nuxtjs/i18n/7.2.1: + resolution: {integrity: sha512-VAr/TQNu7rXqJomzcWi1+hhKO+BNfSiHjZSTakM03IaaUwf/lxXnd5MXvn7YHZGNvG1rED8P+bVvzkSwQ4bEGg==} dependencies: - '@babel/parser': 7.16.2 - '@babel/traverse': 7.16.0 + '@babel/parser': 7.17.8 + '@babel/traverse': 7.17.3 '@intlify/vue-i18n-extensions': 1.0.2 '@intlify/vue-i18n-loader': 1.1.0 - cookie: 0.4.1 + cookie: 0.4.2 devalue: 2.0.1 is-https: 4.0.0 js-cookie: 3.0.1 klona: 2.0.5 lodash.merge: 4.6.2 - ufo: 0.7.9 - vue-i18n: 8.26.7 + ufo: 0.8.3 + vue-i18n: 8.27.1 transitivePeerDependencies: - supports-color dev: false @@ -4544,7 +4542,7 @@ packages: /@nuxtjs/sentry/5.1.7: resolution: {integrity: sha512-VO8V6Yj3Y9SdNuOGi/kVnyHIuFtDNLtLpcdB52P3c/FGrSh6wXlzRiDGc0mY+znMhzYazeOwe9oW5Ej8MptrHA==} dependencies: - '@sentry/browser': 6.18.2 + '@sentry/browser': 6.19.3 '@sentry/integrations': 6.17.4 '@sentry/node': 6.17.4 '@sentry/webpack-plugin': 1.18.5 @@ -4571,15 +4569,15 @@ packages: sitemap: 4.1.1 dev: false - /@nuxtjs/stylelint-module/4.1.0_stylelint@14.6.0: + /@nuxtjs/stylelint-module/4.1.0_stylelint@14.6.1: resolution: {integrity: sha512-XeUZobXlSVW5VDbZBDktB3oFkBm+4JhYlyvZqu4tD7F3Qf4IU5aFwlELbK+VLVewbGgKSEg4QaT5nZdWpgXQBw==} peerDependencies: stylelint: ^13.0.0 || ^14.0.0 webpack: ^4.0.0 || ^5.0.0 dependencies: consola: 2.15.3 - stylelint: 14.6.0 - stylelint-webpack-plugin: 2.3.1_stylelint@14.6.0 + stylelint: 14.6.1 + stylelint-webpack-plugin: 2.3.1_stylelint@14.6.1 dev: true /@nuxtjs/svg/0.4.0: @@ -4700,13 +4698,13 @@ packages: rxjs: 6.6.7 dev: true - /@sentry/browser/6.18.2: - resolution: {integrity: sha512-EsqKSNboi2gOiMuEwQranLucxrARi00y2vgUnaPXcqTKTlVlHDetoWHvq8/r29idA1JHGka5tDrwrmWccWIkrg==} + /@sentry/browser/6.19.3: + resolution: {integrity: sha512-E8UA6IN8z9hL6aGzOHUzqgNZiBwARkA89i8ncKB9QU1/+jl7598ZLziN4+uyPeZiRquEz8Ub7Ve1eacs1u+fbw==} engines: {node: '>=6'} dependencies: - '@sentry/core': 6.18.2 - '@sentry/types': 6.18.2 - '@sentry/utils': 6.18.2 + '@sentry/core': 6.19.3 + '@sentry/types': 6.19.3 + '@sentry/utils': 6.19.3 tslib: 1.14.1 /@sentry/cli/1.72.1: @@ -4737,14 +4735,14 @@ packages: tslib: 1.14.1 dev: false - /@sentry/core/6.18.2: - resolution: {integrity: sha512-r5ad/gq5S/JHc9sd5CUhZQT9ojQ+f+thk/AoGeGawX/8HURZYAgIqD565d6FK0VsZEDkdRMl58z1Qon20h3y1g==} + /@sentry/core/6.19.3: + resolution: {integrity: sha512-RcGmYdkrE3VYBMl9Hgv4GKsC8FEVUdWYsfGIcT/btwP2YpBeUaTZl+1vV9r3Ncdl125LqzP5CKSj5otVxiEg6g==} engines: {node: '>=6'} dependencies: - '@sentry/hub': 6.18.2 - '@sentry/minimal': 6.18.2 - '@sentry/types': 6.18.2 - '@sentry/utils': 6.18.2 + '@sentry/hub': 6.19.3 + '@sentry/minimal': 6.19.3 + '@sentry/types': 6.19.3 + '@sentry/utils': 6.19.3 tslib: 1.14.1 /@sentry/hub/6.17.4: @@ -4756,12 +4754,12 @@ packages: tslib: 1.14.1 dev: false - /@sentry/hub/6.18.2: - resolution: {integrity: sha512-d0AugekMkbnN12b4EXMjseJxtLPc9S20DGobCPUb4oAQT6S2oDQEj1jwP6PQ5vtgyy+GMYWxBMgqAQ4pjVYISQ==} + /@sentry/hub/6.19.3: + resolution: {integrity: sha512-iYbkrxEZt6CrHP3U3r54MARVZSs3YHjAMUMOTlC16s/Amz1McwV95XtI3NJaqMhwzl7R5vbGrs3xOtLg1V1Uyw==} engines: {node: '>=6'} dependencies: - '@sentry/types': 6.18.2 - '@sentry/utils': 6.18.2 + '@sentry/types': 6.19.3 + '@sentry/utils': 6.19.3 tslib: 1.14.1 /@sentry/integrations/6.17.4: @@ -4783,12 +4781,12 @@ packages: tslib: 1.14.1 dev: false - /@sentry/minimal/6.18.2: - resolution: {integrity: sha512-n7KYuo34W2LxE+3dnZ47of7XHuORINCnXq66XH72eoj67tf0XeWbIhEJrYGmoLRyRfoCYYrBLWiDl/uTjLzrzQ==} + /@sentry/minimal/6.19.3: + resolution: {integrity: sha512-xy/6ThHK8B2NJT98nWrx6V9eVgUbzq2N/8lv5/QqrKsICjxx22TRC8Q6zPg/o7BYcrY5vpugSEbIeErTnyxHDA==} engines: {node: '>=6'} dependencies: - '@sentry/hub': 6.18.2 - '@sentry/types': 6.18.2 + '@sentry/hub': 6.19.3 + '@sentry/types': 6.19.3 tslib: 1.14.1 /@sentry/node/6.17.4: @@ -4824,8 +4822,8 @@ packages: engines: {node: '>=6'} dev: false - /@sentry/types/6.18.2: - resolution: {integrity: sha512-WzpJf/Q5aORTzrSwer/As1NlO90dBAQpaHV2ikDDKqOyMWEgjKb5/4gh59p9gH8JMMnLetP1AvQel0fOj5UnUw==} + /@sentry/types/6.19.3: + resolution: {integrity: sha512-jHhqxp8MIWSfOc3krorirTGKTEaSFO6XrAvi+2AZhr6gvOChwOgzgrN2ZqesJcZmgCsqWV21u3usSwYeRrjOJA==} engines: {node: '>=6'} /@sentry/utils/6.17.4: @@ -4836,11 +4834,11 @@ packages: tslib: 1.14.1 dev: false - /@sentry/utils/6.18.2: - resolution: {integrity: sha512-EC619jesknyu4xpwud5WC/5odYLz6JUy7OSFy5405PpdGeh/m8XUvuJAx4zDx0Iz/Mlk0S1Md+ZcQwqkv39dkw==} + /@sentry/utils/6.19.3: + resolution: {integrity: sha512-GdC9B/FK7qd0zItY43135bYbhuVSawE18bIrQDNuno8gTpDJ5OgShpTN9zR53AmMh16/lwKNnV3ZZjlpKcxuNw==} engines: {node: '>=6'} dependencies: - '@sentry/types': 6.18.2 + '@sentry/types': 6.19.3 tslib: 1.14.1 /@sentry/webpack-plugin/1.18.5: @@ -4886,8 +4884,8 @@ packages: resolution: {integrity: sha512-2pTGuibAXJswAPJjaKisthqS/NOK5ypG4LYT6tEAV0S/mxW0zOIvYvGK0V8w8+SHxAm6vRMSjqSalFXeBAqs+Q==} dev: false - /@swc/core-android-arm-eabi/1.2.162: - resolution: {integrity: sha512-mQSuLspB1qBAYXyDP0Da60tPumhwD0CIm7tMjAFiOplEJN+9YKBlZ3EV9Xc1wF5bdWzJpmzmqEdN9FEfOQqlwQ==} + /@swc/core-android-arm-eabi/1.2.163: + resolution: {integrity: sha512-8tv6EMcL5zkgXikwkEMu4I2iy79gmCDe44a3PtQjAc7O/QxxyjJnEVxB6/1U1TnpyLBjcjVfLLzX572LnK9p4Q==} engines: {node: '>=10'} cpu: [arm] os: [android] @@ -4895,8 +4893,8 @@ packages: dev: true optional: true - /@swc/core-android-arm64/1.2.162: - resolution: {integrity: sha512-9TuuTrsrxbw1W1xUfcmRuEIKImJC725S/4McSFpoylYRIoHzD1DPpgP4fquU0/fzq7rldVD1tu4tg3xvEL8auw==} + /@swc/core-android-arm64/1.2.163: + resolution: {integrity: sha512-nDnogIlm1JMs+lSBNH5MIKf7h2h1JQ7kpZSIhnCrr8kajFP5YWQyz9pu2GMv2oc9iWp9TafRk2h2ov3rBJwzIg==} engines: {node: '>=10'} cpu: [arm64] os: [android] @@ -4904,8 +4902,8 @@ packages: dev: true optional: true - /@swc/core-darwin-arm64/1.2.162: - resolution: {integrity: sha512-gWJjD7NqKVxGFSJ4BeTXfBpRRRkxaQcWmmkwoXDQ1tmLRUX6K3V8MXp41mTdg7jJWDyKq4VTN6D8zLQcCUEhmQ==} + /@swc/core-darwin-arm64/1.2.163: + resolution: {integrity: sha512-5sxTJUfWK8hFZNdh3MNYJBB4X58WL8gRzr/U7rWMRpA9GKFcKNAsvPZICICXEVGVX7glC6LZX94ML2fGsW/NeA==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] @@ -4913,8 +4911,8 @@ packages: dev: true optional: true - /@swc/core-darwin-x64/1.2.162: - resolution: {integrity: sha512-+3foKCmxiMuPp1UCIPUg3N8CuzFRDPoPEQagz3TKT8W7Bkv9SXeIL8LPuwfH970rIcx1Ie/Q2UWXJwbckVmMHQ==} + /@swc/core-darwin-x64/1.2.163: + resolution: {integrity: sha512-pVYtFi0Rfeh0JLZKD0HR1j4chcqEaxyk4lhx2DEMg2VvZYjZd1b6bRKB5gKJy1lLzpiUngqeSpIt14jnCIqWZg==} engines: {node: '>=10'} cpu: [x64] os: [darwin] @@ -4922,8 +4920,8 @@ packages: dev: true optional: true - /@swc/core-freebsd-x64/1.2.162: - resolution: {integrity: sha512-YdfQgALPwJ6ZCvfqLlytCvZG/r/ZgBlOa0gaZvMGl6WMpnWgoVPA5OYBA5qzstg/OEWjMu6fldi+lElsvq8v2Q==} + /@swc/core-freebsd-x64/1.2.163: + resolution: {integrity: sha512-a8adSrD2d7WCdD+BqUt7hlmwujcYTYGpSq6i8OxfmxPSf50lCUoBaQ+B/tSyvLlvnusiURHfwhfzSld1vtg04Q==} engines: {node: '>=10'} cpu: [x64] os: [freebsd] @@ -4931,8 +4929,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm-gnueabihf/1.2.162: - resolution: {integrity: sha512-4elULEP2JWvSpEEI7JmhoI25cRQ2/ffBtf3+4vLlcAgJCdCrkYvHJO2fbWlN1fpydj34QabMsOROYS4ff4p0Og==} + /@swc/core-linux-arm-gnueabihf/1.2.163: + resolution: {integrity: sha512-7pQZ7acveuX2p0Ysrg6AHVedTbWQBOjlBQ8AmJ3Wwri9h4o1GLzJkzJQ++Dyp+xGE+pI0ppK6dqaQZ1Zm8yPLQ==} engines: {node: '>=10'} cpu: [arm] os: [linux] @@ -4940,8 +4938,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-gnu/1.2.162: - resolution: {integrity: sha512-ZgR1J8H4qI7EuADgHEeDBtiiF8yt6vrznVtaBvEInDPdV9W10QNKsTqhuFkTfOqaHAO2u1+MkZRuvALGahdDaQ==} + /@swc/core-linux-arm64-gnu/1.2.163: + resolution: {integrity: sha512-yPG6iAN7OlhiNWPy8Ma9WrrQpQZIZE5huR1HVRzM5m8/svs65m3vCTAEHWa+45y1PX3/Bo+hd6tyjaHMAco/ew==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -4949,8 +4947,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-musl/1.2.162: - resolution: {integrity: sha512-1Egev+v8wlr7zPaS715sG7flzbGE0OLtcCR7p7oUqD/NbKwlA6czMch5JwNWvdRMjLThTYEeJ/ID+/xG8BqXUg==} + /@swc/core-linux-arm64-musl/1.2.163: + resolution: {integrity: sha512-sEBgJbaTixEEv8vvf7Udjc9d4HvAYnKtMBu354FszSwKBLmf75CJNUU4vJQRn+E/+WwMXxorSXdx1+wW4fpStg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -4958,8 +4956,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-gnu/1.2.162: - resolution: {integrity: sha512-LFWV+8h6S3KmzVgHXRYpGYsaytGt+Vrbm8554ugUdzk465JnHyKzw3e6VRcJTxAGgXa+o1qUEkeBg7Wc/WWkmQ==} + /@swc/core-linux-x64-gnu/1.2.163: + resolution: {integrity: sha512-69OjEhbxYaMVIhly2hrgDwiOG0MdPQJ3BU5lD/kStvNMnGS/bCNgVYnnsjJgJKfpvJBLtUd/t7QrdwZvrY+pSw==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -4967,8 +4965,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-musl/1.2.162: - resolution: {integrity: sha512-q5insucuYBVCjpDp8/EG3dbt2PFwGAo2vFzofr/lOlOo9p90jCzFRL0+eXg4Ar1YG6BL+T9o5LhFRggY+YHIBg==} + /@swc/core-linux-x64-musl/1.2.163: + resolution: {integrity: sha512-I2pvui8SaNE74vO1YHIJj7/R6IuR8qXfW5YNJ9NV2yR5G6Po2vPR/kMpJgd4rrt6gg16+FGw+XDpMue8+TGLcw==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -4976,8 +4974,8 @@ packages: dev: true optional: true - /@swc/core-win32-arm64-msvc/1.2.162: - resolution: {integrity: sha512-xzksaPOqB3a8gxLoE0ZMi5w2NX9zzYDylmM3qbCVqft6IZid2XFG2lPFIwxJV1xfW68xMgAe0IECnjp/nQsS8g==} + /@swc/core-win32-arm64-msvc/1.2.163: + resolution: {integrity: sha512-CaFr1xVfXrXywDDyNUfRSWh9vqhMmaOh9dpBGHDWPDT+EOwK0Rm78LZPh9G3iQakEq9/6ztqCmskPy7Go6gG6A==} engines: {node: '>=10'} cpu: [arm64] os: [win32] @@ -4985,8 +4983,8 @@ packages: dev: true optional: true - /@swc/core-win32-ia32-msvc/1.2.162: - resolution: {integrity: sha512-hUvS7UaSW+h16SSH7GwH571L2GnqWHPsiSKIDUvv1b/lca7dLcCY8RzsKafB/GLU+5EBQIN3nab3nH0vOWRkvw==} + /@swc/core-win32-ia32-msvc/1.2.163: + resolution: {integrity: sha512-0HfuKu8eG1brQ13PVba5WJm187asQuHeVuuVD0WL1/d6TSp2dfsfXdOPt7gjPG0WVtVpYh8e4N0IEcE0gVpzxA==} engines: {node: '>=10'} cpu: [ia32] os: [win32] @@ -4994,8 +4992,8 @@ packages: dev: true optional: true - /@swc/core-win32-x64-msvc/1.2.162: - resolution: {integrity: sha512-Eb0SehVYWO5TpYeaPAD3T3iIPpgJa1q/rmvgMDvL0hi4UnOJlvj43kC4Dhuor6opLd6fJkCS7gBq9SxtGtb8bQ==} + /@swc/core-win32-x64-msvc/1.2.163: + resolution: {integrity: sha512-BB1tioCAu2Wdt2efKOcbNR9vByzNUhiJqmBv1wWGR6wqV2k46jRMex2NzQESMBl8slIJG+ZPFLE8gUChl0crIg==} engines: {node: '>=10'} cpu: [x64] os: [win32] @@ -5003,24 +5001,24 @@ packages: dev: true optional: true - /@swc/core/1.2.162: - resolution: {integrity: sha512-MFBmoV2qgGvi5bPX1tH3NLtWV4exa5jTCkC/30mdP5PTwEsxKJ5u+m1fuYOlgzDiBlytx8AihVZy2TmXhWZByw==} + /@swc/core/1.2.163: + resolution: {integrity: sha512-8/ytlOhXSomPjfgOFgto6xnYR+UAj0eHJEIu2NbdHgpFjrDFti6C9XeW0zB6zheCq0fShP0RbE9qXlgYKoSZ8w==} engines: {node: '>=10'} hasBin: true optionalDependencies: - '@swc/core-android-arm-eabi': 1.2.162 - '@swc/core-android-arm64': 1.2.162 - '@swc/core-darwin-arm64': 1.2.162 - '@swc/core-darwin-x64': 1.2.162 - '@swc/core-freebsd-x64': 1.2.162 - '@swc/core-linux-arm-gnueabihf': 1.2.162 - '@swc/core-linux-arm64-gnu': 1.2.162 - '@swc/core-linux-arm64-musl': 1.2.162 - '@swc/core-linux-x64-gnu': 1.2.162 - '@swc/core-linux-x64-musl': 1.2.162 - '@swc/core-win32-arm64-msvc': 1.2.162 - '@swc/core-win32-ia32-msvc': 1.2.162 - '@swc/core-win32-x64-msvc': 1.2.162 + '@swc/core-android-arm-eabi': 1.2.163 + '@swc/core-android-arm64': 1.2.163 + '@swc/core-darwin-arm64': 1.2.163 + '@swc/core-darwin-x64': 1.2.163 + '@swc/core-freebsd-x64': 1.2.163 + '@swc/core-linux-arm-gnueabihf': 1.2.163 + '@swc/core-linux-arm64-gnu': 1.2.163 + '@swc/core-linux-arm64-musl': 1.2.163 + '@swc/core-linux-x64-gnu': 1.2.163 + '@swc/core-linux-x64-musl': 1.2.163 + '@swc/core-win32-arm64-msvc': 1.2.163 + '@swc/core-win32-ia32-msvc': 1.2.163 + '@swc/core-win32-x64-msvc': 1.2.163 dev: true /@szmarczak/http-timer/1.1.2: @@ -5037,17 +5035,17 @@ packages: defer-to-connect: 2.0.1 dev: true - /@testing-library/jest-dom/5.16.2: - resolution: {integrity: sha512-6ewxs1MXWwsBFZXIk4nKKskWANelkdUehchEOokHsN8X7c2eKXGw+77aRV63UU8f/DTSVUPLaGxdrj4lN7D/ug==} + /@testing-library/jest-dom/5.16.3: + resolution: {integrity: sha512-u5DfKj4wfSt6akfndfu1eG06jsdyA/IUrlX2n3pyq5UXgXMhXY+NJb8eNK/7pqPWAhCKsCGWDdDO0zKMKAYkEA==} engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: - '@babel/runtime': 7.17.0 - '@types/testing-library__jest-dom': 5.14.2 + '@babel/runtime': 7.17.8 + '@types/testing-library__jest-dom': 5.14.3 aria-query: 5.0.0 chalk: 3.0.0 css: 3.0.0 css.escape: 1.5.1 - dom-accessibility-api: 0.5.11 + dom-accessibility-api: 0.5.13 lodash: 4.17.21 redent: 3.0.0 dev: true @@ -5096,7 +5094,7 @@ packages: resolution: {integrity: sha1-7CMA++fX3d1+udOr+HmZlkyvzkY=} deprecated: This is a stub types definition for axios (https://github.com/mzabriskie/axios). axios provides its own type definitions, so you don't need @types/axios installed! dependencies: - axios: 0.26.1 + axios: 0.21.4 transitivePeerDependencies: - debug dev: true @@ -5265,7 +5263,7 @@ packages: /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 17.0.21 + '@types/node': 17.0.23 dev: true /@types/har-format/1.2.8: @@ -5316,13 +5314,6 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/27.4.0: - resolution: {integrity: sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==} - dependencies: - jest-diff: 27.5.1 - pretty-format: 27.5.1 - dev: true - /@types/jest/27.4.1: resolution: {integrity: sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw==} dependencies: @@ -5334,6 +5325,9 @@ packages: resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==} dev: true + /@types/json-schema/7.0.11: + resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + /@types/json-schema/7.0.9: resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==} @@ -5361,8 +5355,8 @@ packages: resolution: {integrity: sha512-62vfe65cMSzYaWmpmhqCMMNl0khen89w57mByPi1OseGfcV/LV03fO8YVrNj7rFQsRWNJo650WWyh6m7p8vZmA==} dev: true - /@types/lodash/4.14.180: - resolution: {integrity: sha512-XOKXa1KIxtNXgASAnwj7cnttJxS4fksBRywK/9LzRV5YxrF80BXZIGeQSuoESQ/VkUj30Ae0+YcuHc15wJCB2g==} + /@types/lodash/4.14.181: + resolution: {integrity: sha512-n3tyKthHJbkiWhDZs3DkhkCzt2MexYHXlX0td5iMplyfwketaOeKboEVBqzceH7juqvEg3q5oUoBFxSLu7zFag==} dev: true /@types/long/4.0.1: @@ -5402,8 +5396,8 @@ packages: /@types/node/17.0.18: resolution: {integrity: sha512-eKj4f/BsN/qcculZiRSujogjvp5O/k4lOW5m35NopjZM/QwLOR075a8pJW5hD+Rtdm2DaCVPENS6KtSQnUD6BA==} - /@types/node/17.0.21: - resolution: {integrity: sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==} + /@types/node/17.0.23: + resolution: {integrity: sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==} /@types/node/17.0.6: resolution: {integrity: sha512-+XBAjfZmmivILUzO0HwBJoYkAyyySSLg5KCGBDFLomJo0sV6szvVLAf4ANZZ0pfWzgEds5KmGLG9D5hfEqOhaA==} @@ -5539,10 +5533,10 @@ packages: terser: 4.8.0 dev: true - /@types/testing-library__jest-dom/5.14.2: - resolution: {integrity: sha512-vehbtyHUShPxIa9SioxDwCvgxukDMH//icJG90sXQBUm5lJOHLT5kNeU9tnivhnA/TkOFMzGIXN2cTc4hY8/kg==} + /@types/testing-library__jest-dom/5.14.3: + resolution: {integrity: sha512-oKZe+Mf4ioWlMuzVBaXQ9WDnEm1+umLx0InILg+yvZVBBDmzV5KfZyLrCvadtWcx8+916jLmHafcmqqffl+iIw==} dependencies: - '@types/jest': 27.4.0 + '@types/jest': 27.4.1 dev: true /@types/throttle-debounce/2.1.0: @@ -5637,7 +5631,7 @@ packages: '@types/yargs-parser': 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.14.0_ace6f9e7722b813e21eaf2dc993bc413: + /@typescript-eslint/eslint-plugin/5.14.0_d6b65a03bf66ac0c7f7b640f483a14f3: resolution: {integrity: sha512-ir0wYI4FfFUDfLcuwKzIH7sMVA+db7WYen47iRSaCGl+HMAZI9fpBwfDo45ZALD3A45ZGyHWDNLhbg8tZrMX4w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5648,24 +5642,24 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.14.0_eslint@8.11.0+typescript@4.6.2 + '@typescript-eslint/parser': 5.14.0_eslint@8.12.0+typescript@4.6.3 '@typescript-eslint/scope-manager': 5.14.0 - '@typescript-eslint/type-utils': 5.14.0_eslint@8.11.0+typescript@4.6.2 - '@typescript-eslint/utils': 5.14.0_eslint@8.11.0+typescript@4.6.2 + '@typescript-eslint/type-utils': 5.14.0_eslint@8.12.0+typescript@4.6.3 + '@typescript-eslint/utils': 5.14.0_eslint@8.12.0+typescript@4.6.3 debug: 4.3.3 - eslint: 8.11.0 + eslint: 8.12.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + tsutils: 3.21.0_typescript@4.6.3 + typescript: 4.6.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.16.0_3fed250b11519414a4c7d52468dd6bf5: - resolution: {integrity: sha512-SJoba1edXvQRMmNI505Uo4XmGbxCK9ARQpkvOd00anxzri9RNQk0DDCxD+LIl+jYhkzOJiOMMKYEHnHEODjdCw==} + /@typescript-eslint/eslint-plugin/5.17.0_689ff565753ecf7c3328c07fad067df5: + resolution: {integrity: sha512-qVstvQilEd89HJk3qcbKt/zZrfBZ+9h2ynpAGlWjWiizA7m/MtLT9RoX6gjtpE500vfIg8jogAkDzdCxbsFASQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -5675,23 +5669,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.16.0_eslint@8.11.0+typescript@4.6.2 - '@typescript-eslint/scope-manager': 5.16.0 - '@typescript-eslint/type-utils': 5.16.0_eslint@8.11.0+typescript@4.6.2 - '@typescript-eslint/utils': 5.16.0_eslint@8.11.0+typescript@4.6.2 - debug: 4.3.3 - eslint: 8.11.0 + '@typescript-eslint/parser': 5.17.0_eslint@8.12.0+typescript@4.6.3 + '@typescript-eslint/scope-manager': 5.17.0 + '@typescript-eslint/type-utils': 5.17.0_eslint@8.12.0+typescript@4.6.3 + '@typescript-eslint/utils': 5.17.0_eslint@8.12.0+typescript@4.6.3 + debug: 4.3.4 + eslint: 8.12.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + tsutils: 3.21.0_typescript@4.6.3 + typescript: 4.6.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.14.0_eslint@8.11.0+typescript@4.6.2: + /@typescript-eslint/parser/5.14.0_eslint@8.12.0+typescript@4.6.3: resolution: {integrity: sha512-aHJN8/FuIy1Zvqk4U/gcO/fxeMKyoSv/rS46UXMXOJKVsLQ+iYPuXNbpbH7cBLcpSbmyyFbwrniLx5+kutu1pw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5703,16 +5697,16 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.14.0 '@typescript-eslint/types': 5.14.0 - '@typescript-eslint/typescript-estree': 5.14.0_typescript@4.6.2 + '@typescript-eslint/typescript-estree': 5.14.0_typescript@4.6.3 debug: 4.3.3 - eslint: 8.11.0 - typescript: 4.6.2 + eslint: 8.12.0 + typescript: 4.6.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.16.0_eslint@8.11.0+typescript@4.6.2: - resolution: {integrity: sha512-fkDq86F0zl8FicnJtdXakFs4lnuebH6ZADDw6CYQv0UZeIjHvmEw87m9/29nk2Dv5Lmdp0zQ3zDQhiMWQf/GbA==} + /@typescript-eslint/parser/5.17.0_eslint@8.12.0+typescript@4.6.3: + resolution: {integrity: sha512-aRzW9Jg5Rlj2t2/crzhA2f23SIYFlF9mchGudyP0uiD6SenIxzKoLjwzHbafgHn39dNV/TV7xwQkLfFTZlJ4ig==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -5721,12 +5715,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.16.0 - '@typescript-eslint/types': 5.16.0 - '@typescript-eslint/typescript-estree': 5.16.0_typescript@4.6.2 - debug: 4.3.3 - eslint: 8.11.0 - typescript: 4.6.2 + '@typescript-eslint/scope-manager': 5.17.0 + '@typescript-eslint/types': 5.17.0 + '@typescript-eslint/typescript-estree': 5.17.0_typescript@4.6.3 + debug: 4.3.4 + eslint: 8.12.0 + typescript: 4.6.3 transitivePeerDependencies: - supports-color dev: true @@ -5739,15 +5733,15 @@ packages: '@typescript-eslint/visitor-keys': 5.14.0 dev: true - /@typescript-eslint/scope-manager/5.16.0: - resolution: {integrity: sha512-P+Yab2Hovg8NekLIR/mOElCDPyGgFZKhGoZA901Yax6WR6HVeGLbsqJkZ+Cvk5nts/dAlFKm8PfL43UZnWdpIQ==} + /@typescript-eslint/scope-manager/5.17.0: + resolution: {integrity: sha512-062iCYQF/doQ9T2WWfJohQKKN1zmmXVfAcS3xaiialiw8ZUGy05Em6QVNYJGO34/sU1a7a+90U3dUNfqUDHr3w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.16.0 - '@typescript-eslint/visitor-keys': 5.16.0 + '@typescript-eslint/types': 5.17.0 + '@typescript-eslint/visitor-keys': 5.17.0 dev: true - /@typescript-eslint/type-utils/5.14.0_eslint@8.11.0+typescript@4.6.2: + /@typescript-eslint/type-utils/5.14.0_eslint@8.12.0+typescript@4.6.3: resolution: {integrity: sha512-d4PTJxsqaUpv8iERTDSQBKUCV7Q5yyXjqXUl3XF7Sd9ogNLuKLkxz82qxokqQ4jXdTPZudWpmNtr/JjbbvUixw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5757,17 +5751,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.14.0_eslint@8.11.0+typescript@4.6.2 + '@typescript-eslint/utils': 5.14.0_eslint@8.12.0+typescript@4.6.3 debug: 4.3.3 - eslint: 8.11.0 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + eslint: 8.12.0 + tsutils: 3.21.0_typescript@4.6.3 + typescript: 4.6.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.16.0_eslint@8.11.0+typescript@4.6.2: - resolution: {integrity: sha512-SKygICv54CCRl1Vq5ewwQUJV/8padIWvPgCxlWPGO/OgQLCijY9G7lDu6H+mqfQtbzDNlVjzVWQmeqbLMBLEwQ==} + /@typescript-eslint/type-utils/5.17.0_eslint@8.12.0+typescript@4.6.3: + resolution: {integrity: sha512-3hU0RynUIlEuqMJA7dragb0/75gZmwNwFf/QJokWzPehTZousP/MNifVSgjxNcDCkM5HI2K22TjQWUmmHUINSg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -5776,11 +5770,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.16.0_eslint@8.11.0+typescript@4.6.2 - debug: 4.3.3 - eslint: 8.11.0 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + '@typescript-eslint/utils': 5.17.0_eslint@8.12.0+typescript@4.6.3 + debug: 4.3.4 + eslint: 8.12.0 + tsutils: 3.21.0_typescript@4.6.3 + typescript: 4.6.3 transitivePeerDependencies: - supports-color dev: true @@ -5790,12 +5784,12 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types/5.16.0: - resolution: {integrity: sha512-oUorOwLj/3/3p/HFwrp6m/J2VfbLC8gjW5X3awpQJ/bSG+YRGFS4dpsvtQ8T2VNveV+LflQHjlLvB6v0R87z4g==} + /@typescript-eslint/types/5.17.0: + resolution: {integrity: sha512-AgQ4rWzmCxOZLioFEjlzOI3Ch8giDWx8aUDxyNw9iOeCvD3GEYAB7dxWGQy4T/rPVe8iPmu73jPHuaSqcjKvxw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.14.0_typescript@4.6.2: + /@typescript-eslint/typescript-estree/5.14.0_typescript@4.6.3: resolution: {integrity: sha512-QGnxvROrCVtLQ1724GLTHBTR0lZVu13izOp9njRvMkCBgWX26PKvmMP8k82nmXBRD3DQcFFq2oj3cKDwr0FaUA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5810,14 +5804,14 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + tsutils: 3.21.0_typescript@4.6.3 + typescript: 4.6.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.16.0_typescript@4.6.2: - resolution: {integrity: sha512-SE4VfbLWUZl9MR+ngLSARptUv2E8brY0luCdgmUevU6arZRY/KxYoLI/3V/yxaURR8tLRN7bmZtJdgmzLHI6pQ==} + /@typescript-eslint/typescript-estree/5.17.0_typescript@4.6.3: + resolution: {integrity: sha512-X1gtjEcmM7Je+qJRhq7ZAAaNXYhTgqMkR10euC4Si6PIjb+kwEQHSxGazXUQXFyqfEXdkGf6JijUu5R0uceQzg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -5825,19 +5819,19 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.16.0 - '@typescript-eslint/visitor-keys': 5.16.0 - debug: 4.3.3 + '@typescript-eslint/types': 5.17.0 + '@typescript-eslint/visitor-keys': 5.17.0 + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + tsutils: 3.21.0_typescript@4.6.3 + typescript: 4.6.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.14.0_eslint@8.11.0+typescript@4.6.2: + /@typescript-eslint/utils/5.14.0_eslint@8.12.0+typescript@4.6.3: resolution: {integrity: sha512-EHwlII5mvUA0UsKYnVzySb/5EE/t03duUTweVy8Zqt3UQXBrpEVY144OTceFKaOe4xQXZJrkptCf7PjEBeGK4w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5846,28 +5840,28 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.14.0 '@typescript-eslint/types': 5.14.0 - '@typescript-eslint/typescript-estree': 5.14.0_typescript@4.6.2 - eslint: 8.11.0 + '@typescript-eslint/typescript-estree': 5.14.0_typescript@4.6.3 + eslint: 8.12.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.11.0 + eslint-utils: 3.0.0_eslint@8.12.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.16.0_eslint@8.11.0+typescript@4.6.2: - resolution: {integrity: sha512-iYej2ER6AwmejLWMWzJIHy3nPJeGDuCqf8Jnb+jAQVoPpmWzwQOfa9hWVB8GIQE5gsCv/rfN4T+AYb/V06WseQ==} + /@typescript-eslint/utils/5.17.0_eslint@8.12.0+typescript@4.6.3: + resolution: {integrity: sha512-DVvndq1QoxQH+hFv+MUQHrrWZ7gQ5KcJzyjhzcqB1Y2Xes1UQQkTRPUfRpqhS8mhTWsSb2+iyvDW1Lef5DD7vA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@types/json-schema': 7.0.9 - '@typescript-eslint/scope-manager': 5.16.0 - '@typescript-eslint/types': 5.16.0 - '@typescript-eslint/typescript-estree': 5.16.0_typescript@4.6.2 - eslint: 8.11.0 + '@types/json-schema': 7.0.11 + '@typescript-eslint/scope-manager': 5.17.0 + '@typescript-eslint/types': 5.17.0 + '@typescript-eslint/typescript-estree': 5.17.0_typescript@4.6.3 + eslint: 8.12.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.11.0 + eslint-utils: 3.0.0_eslint@8.12.0 transitivePeerDependencies: - supports-color - typescript @@ -5881,11 +5875,11 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@typescript-eslint/visitor-keys/5.16.0: - resolution: {integrity: sha512-jqxO8msp5vZDhikTwq9ubyMHqZ67UIvawohr4qF3KhlpL7gzSjOd+8471H3nh5LyABkaI85laEKKU8SnGUK5/g==} + /@typescript-eslint/visitor-keys/5.17.0: + resolution: {integrity: sha512-6K/zlc4OfCagUu7Am/BD5k8PSWQOgh34Nrv9Rxe2tBzlJ7uOeJ/h7ugCGDCeEZHT6k2CJBhbk9IsbkPI0uvUkA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.16.0 + '@typescript-eslint/types': 5.17.0 eslint-visitor-keys: 3.3.0 dev: true @@ -6061,11 +6055,11 @@ packages: lru-cache: 4.1.5 merge-source-map: 1.1.0 postcss: 7.0.39 - postcss-selector-parser: 6.0.9 + postcss-selector-parser: 6.0.10 source-map: 0.6.1 vue-template-es2015-compiler: 1.9.1 optionalDependencies: - prettier: 2.6.0 + prettier: 2.6.2 dev: false /@vue/composition-api/1.4.9: @@ -6118,8 +6112,8 @@ packages: pretty: 2.0.0 dev: true - /@vueuse/core/8.1.2_@vue+composition-api@1.4.9: - resolution: {integrity: sha512-prI2GzigBUtJNTcwRjJPzUPLFoRZM1RZFR464DFdwgU8TxRFf7dRvuvWFDNbCATzLExHFnGI3zTp9GkXTTZxgQ==} + /@vueuse/core/8.2.4_@vue+composition-api@1.4.9: + resolution: {integrity: sha512-K8DbVLErlHMnEOqy67BrRbDmWCd4Z9X0a1dL6fQdhABLXBydy69Tm7uF5ZUotAqib9sskItYFsAnLhvGSue6bg==} peerDependencies: '@vue/composition-api': ^1.1.0 vue: ^2.6.0 || ^3.2.0 @@ -6130,17 +6124,17 @@ packages: optional: true dependencies: '@vue/composition-api': 1.4.9 - '@vueuse/metadata': 8.1.2 - '@vueuse/shared': 8.1.2_@vue+composition-api@1.4.9 - vue-demi: 0.12.1_@vue+composition-api@1.4.9 + '@vueuse/metadata': 8.2.4 + '@vueuse/shared': 8.2.4_@vue+composition-api@1.4.9 + vue-demi: 0.12.5_@vue+composition-api@1.4.9 dev: true - /@vueuse/metadata/8.1.2: - resolution: {integrity: sha512-LrPtdiYMleygnGmz8mEmYI9h4Eyo+/igxZWNrwuPnqvL9pIO+8eUpBgPLH5GowKv3Nu0LPZSXSIuaWVJBSU1Cg==} + /@vueuse/metadata/8.2.4: + resolution: {integrity: sha512-mn4FLULZAHd6r6vo5hLz+99xzwlVDP9qeVtZGV2Ik40m0zETe2okUr3O1Yoz6FReUoc7KAPrf0/GFpWEXVDAnQ==} dev: true - /@vueuse/shared/8.1.2_@vue+composition-api@1.4.9: - resolution: {integrity: sha512-4Hb9iPUhAz7ghO4hgvB2GV2FOy12qQGdhmQ+9HC6QN/J66DELhmxAvkZAtK5FBqZOSwzKszPqNqoyhRKQrrWGQ==} + /@vueuse/shared/8.2.4_@vue+composition-api@1.4.9: + resolution: {integrity: sha512-sLkuZMEumsmEDYie3m6/nrk7SrLGlyUgtVn/0EJZ8Chaj1YfSmBQuLxNE0ruQ/6VZlqkx44jEZxcgbU7qPyAiw==} peerDependencies: '@vue/composition-api': ^1.1.0 vue: ^2.6.0 || ^3.2.0 @@ -6151,7 +6145,7 @@ packages: optional: true dependencies: '@vue/composition-api': 1.4.9 - vue-demi: 0.12.1_@vue+composition-api@1.4.9 + vue-demi: 0.12.5_@vue+composition-api@1.4.9 dev: true /@webassemblyjs/ast/1.9.0: @@ -6409,7 +6403,7 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - debug: 4.3.3 + debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -6444,8 +6438,8 @@ packages: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /ajv/8.10.0: - resolution: {integrity: sha512-bzqAEZOjkrUMl2afH8dknrq5KEk2SrwdBROR+vH1EKVQTqaUbJVPdc/gEdggTMM0Se+s+Ja4ju4TlNcStKl2Hw==} + /ajv/8.11.0: + resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==} dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -6558,7 +6552,7 @@ packages: dependencies: iconv-lite: 0.4.24 js-yaml: 3.14.1 - jszip: 3.7.1 + jszip: 3.8.0 lodash: 4.17.21 q: 1.5.1 swagger-parser: 8.0.3 @@ -6749,6 +6743,7 @@ packages: follow-redirects: 1.14.9 transitivePeerDependencies: - debug + dev: false /babel-code-frame/6.26.0: resolution: {integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=} @@ -6804,8 +6799,8 @@ packages: - supports-color dev: true - /babel-loader/8.2.3_@babel+core@7.17.8: - resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==} + /babel-loader/8.2.4_@babel+core@7.17.8: + resolution: {integrity: sha512-8dytA3gcvPPPv4Grjhnt8b5IIiTcq/zeXOPk4iTYI0SVXcsmuGg7JtBRDp8S9X+gJfhQ8ektjXZlDu1Bb33U8A==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 @@ -6813,13 +6808,13 @@ packages: dependencies: '@babel/core': 7.17.8 find-cache-dir: 3.3.2 - loader-utils: 1.4.0 + loader-utils: 2.0.2 make-dir: 3.1.0 schema-utils: 2.7.1 dev: true - /babel-loader/8.2.3_b72fb7e629d39881e138edb6dcd0dfbe: - resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==} + /babel-loader/8.2.4_b72fb7e629d39881e138edb6dcd0dfbe: + resolution: {integrity: sha512-8dytA3gcvPPPv4Grjhnt8b5IIiTcq/zeXOPk4iTYI0SVXcsmuGg7JtBRDp8S9X+gJfhQ8ektjXZlDu1Bb33U8A==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 @@ -6827,7 +6822,7 @@ packages: dependencies: '@babel/core': 7.17.8 find-cache-dir: 3.3.2 - loader-utils: 1.4.0 + loader-utils: 2.0.2 make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 4.46.0 @@ -7286,12 +7281,12 @@ packages: resolution: {integrity: sha512-2+p27BTZ0T6fGAn57IZOoGRTDqIhaHVPHWTg5ZejMA/SKaQG1ChvfOnb9sxqRwLMUGtrUXbX0QQA7H1s6oQh0A==} engines: {node: '>=8.0.0'} dependencies: - '@mdn/browser-compat-data': 4.1.11 + '@mdn/browser-compat-data': 4.1.14 '@types/object-path': 0.11.1 '@types/semver': 7.3.9 '@types/ua-parser-js': 0.7.36 browserslist: 4.18.1 - caniuse-lite: 1.0.30001315 + caniuse-lite: 1.0.30001324 isbot: 3.3.4 object-path: 0.11.8 semver: 7.3.5 @@ -7314,8 +7309,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001315 - electron-to-chromium: 1.4.82 + caniuse-lite: 1.0.30001324 + electron-to-chromium: 1.4.103 escalade: 3.1.1 node-releases: 2.0.2 picocolors: 1.0.0 @@ -7343,6 +7338,18 @@ packages: node-releases: 2.0.2 picocolors: 1.0.0 + /browserslist/4.20.2: + resolution: {integrity: sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001324 + electron-to-chromium: 1.4.103 + escalade: 3.1.1 + node-releases: 2.0.2 + picocolors: 1.0.0 + dev: true + /bs-logger/0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} engines: {node: '>= 6'} @@ -7398,13 +7405,13 @@ packages: resolution: {integrity: sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=} dev: false - /bundle-require/3.0.4_esbuild@0.14.26: + /bundle-require/3.0.4_esbuild@0.14.30: resolution: {integrity: sha512-VXG6epB1yrLAvWVQpl92qF347/UXmncQj7J3U8kZEbdVZ1ZkQyr4hYeL/9RvcE8vVVdp53dY78Fd/3pqfRqI1A==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: esbuild: '>=0.13' dependencies: - esbuild: 0.14.26 + esbuild: 0.14.30 load-tsconfig: 0.2.3 /bytes/3.0.0: @@ -7619,6 +7626,10 @@ packages: /caniuse-lite/1.0.30001315: resolution: {integrity: sha512-5v7LFQU4Sb/qvkz7JcZkvtSH1Ko+1x2kgo3ocdBeMGZSOFpuE1kkm0kpTwLtWeFrw5qw08ulLxJjVIXIS8MkiQ==} + /caniuse-lite/1.0.30001324: + resolution: {integrity: sha512-/eYp1J6zYh1alySQB4uzYFkLmxxI8tk0kxldbNHXp8+v+rdMKdUBNjRLz7T7fz6Iox+1lIdYpc7rq6ZcXfTukg==} + dev: true + /capital-case/1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} dependencies: @@ -8034,14 +8045,14 @@ packages: dot-prop: 5.3.0 dev: true - /compatfactory/0.0.12_typescript@4.6.2: + /compatfactory/0.0.12_typescript@4.6.3: resolution: {integrity: sha512-DD5S1s2mIoVIpYfhCqNZPbOFlt9JDLkXc4d8fAZaeWWIsl7w3bmVS0HNlUkU2SB6iZOdXOjYZgeJZClmL1xnRg==} engines: {node: '>=10.0.0'} peerDependencies: typescript: '>=3.x || >= 4.x' dependencies: helpertypes: 0.0.17 - typescript: 4.6.2 + typescript: 4.6.3 dev: true /component-bind/1.0.0: @@ -8182,11 +8193,6 @@ packages: engines: {node: '>= 0.6'} dev: false - /cookie/0.4.1: - resolution: {integrity: sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==} - engines: {node: '>= 0.6'} - dev: false - /cookie/0.4.2: resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} engines: {node: '>= 0.6'} @@ -8243,16 +8249,16 @@ packages: dependencies: '@iarna/toml': 2.2.5 - /cosmiconfig-typescript-loader/1.0.6_f01b7c141b75a45db67b7d9ae4c261df: - resolution: {integrity: sha512-2nEotziYJWtNtoTjKbchj9QrdTT6DBxCvqjNKoDKARw+e2yZmTQCa07uRrykLIZuvSgp69YXLH89UHc0WhdMfQ==} + /cosmiconfig-typescript-loader/1.0.7_ee885bc7281b682b6adbed6ae09ee090: + resolution: {integrity: sha512-PxBM//vKuwRmo7xqamKDL+q/FvGig+wKS5pOzaXO/DJbtNzbIYi1bDk251pftEdPRRetEN8RSIyF35n8zLtibA==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@types/node': '*' typescript: '>=3' dependencies: - '@types/node': 17.0.21 + '@types/node': 17.0.23 cosmiconfig: 7.0.1 - ts-node: 10.7.0_f01b7c141b75a45db67b7d9ae4c261df + ts-node: 10.7.0_ee885bc7281b682b6adbed6ae09ee090 typescript: 4.6.3 transitivePeerDependencies: - '@swc/core' @@ -8737,8 +8743,8 @@ packages: supports-color: 8.1.1 dev: true - /debug/4.3.3_supports-color@9.2.1: - resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} + /debug/4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -8747,7 +8753,18 @@ packages: optional: true dependencies: ms: 2.1.2 - supports-color: 9.2.1 + + /debug/4.3.4_supports-color@9.2.2: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + supports-color: 9.2.2 dev: false /decamelize-keys/1.1.0: @@ -8976,8 +8993,8 @@ packages: esutils: 2.0.3 dev: true - /dom-accessibility-api/0.5.11: - resolution: {integrity: sha512-7X6GvzjYf4yTdRKuCVScV+aA9Fvh5r8WzWrXBH9w82ZWB/eYDMGCnazoC/YAqAzUJWHzLOnZqr46K3iEyUhUvw==} + /dom-accessibility-api/0.5.13: + resolution: {integrity: sha512-R305kwb5CcMDIpSHUnLyIAp7SrSPBx6F0VfQFB3M75xVMHhXJJIdePYgbPPh1o57vCHNu5QztokWUPsLjWzFqw==} dev: true /dom-converter/0.2.0: @@ -9136,6 +9153,10 @@ packages: /electron-to-chromium/1.3.886: resolution: {integrity: sha512-+vYdeBosI63VkCtNWnEVFjgNd/IZwvnsWkKyPtWAvrhA+XfByKoBJcbsMgudVU/bUcGAF9Xp3aXn96voWlc3oQ==} + /electron-to-chromium/1.4.103: + resolution: {integrity: sha512-c/uKWR1Z/W30Wy/sx3dkZoj4BijbXX85QKWu9jJfjho3LBAXNEGAEW3oWiGb+dotA6C6BzCTxL2/aLes7jlUeg==} + dev: true + /electron-to-chromium/1.4.68: resolution: {integrity: sha512-cId+QwWrV8R1UawO6b9BR1hnkJ4EJPCPAr4h315vliHUtVUJDk39Sg1PMNnaWKfj5x+93ssjeJ9LKL6r8LaMiA==} @@ -9208,7 +9229,7 @@ packages: dependencies: base64-arraybuffer: 0.1.4 component-emitter: 1.3.0 - debug: 4.3.3 + debug: 4.3.4 engine.io-parser: 4.0.3 has-cors: 1.1.0 parseqs: 0.0.6 @@ -9226,7 +9247,7 @@ packages: resolution: {integrity: sha512-V05mmDo4gjimYW+FGujoGmmmxRaDsrVr7AXA3ZIfa04MWM1jOfZfUwou0oNqhNwy/votUDvGDt4JA4QF4e0b4g==} dependencies: '@socket.io/component-emitter': 3.0.0 - debug: 4.3.3 + debug: 4.3.4 engine.io-parser: 5.0.3 has-cors: 1.1.0 parseqs: 0.0.6 @@ -9344,160 +9365,160 @@ packages: is-date-object: 1.0.5 is-symbol: 1.0.4 - /esbuild-android-64/0.14.26: - resolution: {integrity: sha512-HIyJ3VvigHfseaI0D+vsD8zKQ4roDUD962/vtO/KXzav6wR//Y//Qx1HUX8k5bQeQ7/0yCXlltY9VBw1MFnWFQ==} + /esbuild-android-64/0.14.30: + resolution: {integrity: sha512-vdJ7t8A8msPfKpYUGUV/KaTQRiZ0vDa2XSTlzXVkGGVHLKPeb85PBUtYJcEgw3htW3IdX5i1t1IMdQCwJJgNAg==} engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true optional: true - /esbuild-android-arm64/0.14.26: - resolution: {integrity: sha512-TxRCLxyU5yj3U8Bud9fCg3IxzIXXKaWcmDbvURm8JkRr0WvCAmwZBdLi5T8BasT1v5vrVE//M0KSHZod6HC6lA==} + /esbuild-android-arm64/0.14.30: + resolution: {integrity: sha512-BdgGfxeA5hBQNErLr7BWJUA8xjflEfyaARICy8e0OJYNSAwDbEzOf8LyiKWSrDcgV129mWhi3VpbNQvOIDEHcg==} engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true optional: true - /esbuild-darwin-64/0.14.26: - resolution: {integrity: sha512-oZJBN+CkR47Fc7KB1vowZy2kb5r+WSnsBjVEw7aI8HmR6louAgTr4bs1NwzaF6MbLi41ajaw6RdipfsM1H9PvQ==} + /esbuild-darwin-64/0.14.30: + resolution: {integrity: sha512-VRaOXMMrsG5n53pl4qFZQdXy2+E0NoLP/QH3aDUI0+bQP+ZHDmbINKcDy2IX7GVFI9kqPS18iJNAs5a6/G2LZg==} engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /esbuild-darwin-arm64/0.14.26: - resolution: {integrity: sha512-eYW+cmP3BGVPDp+wd9bRI5CN5HjkZnrMQtj46Mj//UsSh4SRvflAp3pjs3ooA+MCpIa9xZ8091HqLqpYi7KFWA==} + /esbuild-darwin-arm64/0.14.30: + resolution: {integrity: sha512-qDez+fHMOrO9Oc9qjt/x+sy09RJVh62kik5tVybKRLmezeV4qczM9/sAYY57YN0aWLdHbcCj2YqJUWYJNsgKnw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /esbuild-freebsd-64/0.14.26: - resolution: {integrity: sha512-Q+Hs27fSBkNfUHNhphSyWfF5lxl3o9S6LFlzkC5KofxLCnCESP+7YTzAWTosYGANsPT2mvYFOraFeYEokG+5DA==} + /esbuild-freebsd-64/0.14.30: + resolution: {integrity: sha512-mec1jENcImVVagddZlGWsdAUwBnzR5cgnhzCxv+9fSMxKbx1uZYLLUAnLPp8m/i934zrumR1xGjJ5VoWdPlI2w==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /esbuild-freebsd-arm64/0.14.26: - resolution: {integrity: sha512-MT+FuC/63oz6j/jvWOMCNqnHBYm/bNhGPArUgQX8GRhofFCeqe0NRmJbhtlHZaEeErIIjHPZQ/nXs34mfiqo/Q==} + /esbuild-freebsd-arm64/0.14.30: + resolution: {integrity: sha512-cpjbTs6Iok/AfeB0JgTzyUJTMStC1SQULmany5nHx6S4GTkSgaAHuJzZO0GcVWqghI4e0YL/bjXAhN5Mn6feNw==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true optional: true - /esbuild-linux-32/0.14.26: - resolution: {integrity: sha512-9gqSfJ8qMDvz7wXZoinNoe9/ekPpbT+/ZgVfZEeB72ETITVPHvMbG8i0E12wG366G01vMXtlxbD9IYJsMVhe6w==} + /esbuild-linux-32/0.14.30: + resolution: {integrity: sha512-liIONVT4F2kZmOMwtwASqZ8WkIjb5HHBR9HUffdHiuotSTF3CyZO+EJf+Og+SYYuuVIvt0qHNSFjBA/iSESteQ==} engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true optional: true - /esbuild-linux-64/0.14.26: - resolution: {integrity: sha512-aPku1lCxxXmBr5LkENSlGIbY33jjQExDzaSrNV+dDA5bHXhFnpI9UkSe+vQzrSkxgO66vNjSTNDcxg3pOXBaBw==} + /esbuild-linux-64/0.14.30: + resolution: {integrity: sha512-LUnpzoMpRqFON5En4qEj6NWiyH6a1K+Y2qYNKrCy5qPTjDoG/EWeqMz69n8Uv7pRuvDKl3FNGJ1dufTrA5i0sw==} engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-arm/0.14.26: - resolution: {integrity: sha512-m7ozLQozfgBmh9l3HWxDEVYEEG8GuTqzRoFuf9iX0xAlbtqmhhlm7M4zNMa2eyPEG+ejgHndAuvuB1hcOWvdJw==} + /esbuild-linux-arm/0.14.30: + resolution: {integrity: sha512-97T+bbXnpqf7mfIG49UR7ZSJFGgvc22byn74qw3Kx2GDCBSQoVFjyWuKOHGXp8nXk3XYrdFF+mQ8yQ7aNsgQvg==} engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /esbuild-linux-arm64/0.14.26: - resolution: {integrity: sha512-S0boyzv5Yx+IN1A8253nEPzHqn/W/y+CRcLYFZ1E5DscqkY7EvBao6rhff3ZxaHU9Zrkn0pLVqlJdMx3rm6D4Q==} + /esbuild-linux-arm64/0.14.30: + resolution: {integrity: sha512-DHZHn6FK5q/KL0fpNT/0jE38Nnyk2rXxKE9WENi95EXtqfOLPgE8tzjTZQNgpr61R95QX4ymQU26ni3IZk8buQ==} engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-mips64le/0.14.26: - resolution: {integrity: sha512-TyMRc2ctQV1g9ruHg1Y793e18uDigKKsgzcZPzfxZi2z+hGK1uaSdaejGdULEJBJVMXt3/NC1T1yq0vCTiYYgg==} + /esbuild-linux-mips64le/0.14.30: + resolution: {integrity: sha512-fLUzTFZ7uknC0aPTk7/lM7NmaG/9ZqE3SaHEphcaM009SZK/mDOvZugWi1ss6WGNhk13dUrhkfHcc4FSb9hYhg==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true optional: true - /esbuild-linux-ppc64le/0.14.26: - resolution: {integrity: sha512-aOJPP80m2gV8CyDqEMGbwZaGKuR45tZU1qYZ0+Cy8lWV4CWmd9iBWhCLP3eI9d7163m6t+0YO/6N3iLSVlNnpA==} + /esbuild-linux-ppc64le/0.14.30: + resolution: {integrity: sha512-2Oudm2WEfj0dNU9bzIl5L/LrsMEmHWsOsYgJJqu8fDyUDgER+J1d33qz3cUdjsJk7gAENayIxDSpsuCszx0w3A==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-riscv64/0.14.26: - resolution: {integrity: sha512-2E5xK7SNZFXhFzRbZGtUqg3MbHnrx5XzqHaGLOLdHBqOSWIAdJKB3w6WtjpLkZvPuWrKeh51XnRpk1jm0TsUjQ==} + /esbuild-linux-riscv64/0.14.30: + resolution: {integrity: sha512-RPMucPW47rV4t2jlelaE948iCRtbZf5RhifxSwzlpM1Mqdyu99MMNK0w4jFreGTmLN+oGomxIOxD6n+2E/XqHw==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-s390x/0.14.26: - resolution: {integrity: sha512-kfSuFea857mTYMp/RAFmMp9TBjf1T8F/dTRqLn2p+g8Ok30Cp1+mI2+YCmxz5Uw2JOfxyvpND0Ek1PGPMo1UsQ==} + /esbuild-linux-s390x/0.14.30: + resolution: {integrity: sha512-OZ68r7ok6qO7hdwrwQn2p5jbIRRcUcVaAykB7e0uCA0ODwfeGunILM6phJtq2Oz4dlEEFvd+tSuma3paQKwt+A==} engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true optional: true - /esbuild-netbsd-64/0.14.26: - resolution: {integrity: sha512-tWhLwfOOqdZRwvaSYIWuic9Cj+WRRCLHe//Bmlf0ThBur9/EssRTtVh6/rC2Okp7Eb4QcerA/1wjWLYLECYD7g==} + /esbuild-netbsd-64/0.14.30: + resolution: {integrity: sha512-iyejQUKn0TzpPkufq8pSCxOg9NheycQbMbPCmjefTe9wYuUlBt1TcHvdoJnYbQzsAhAh1BNq+s0ycRsIJFZzaQ==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true optional: true - /esbuild-openbsd-64/0.14.26: - resolution: {integrity: sha512-Xj7IWpsPn/hgKNzwjLpnf6wMtV0lfw5bzn7N9vmiCKx9TBA28L2hI8G15O0s9atLKny4HpmCGwZWmReNF1Ui6g==} + /esbuild-openbsd-64/0.14.30: + resolution: {integrity: sha512-UyK1MTMcy4j5fH260fsE1o6MVgWNhb62eCK2yCKCRazZv8Nqdc2WiP9ygjWidmEdCDS+A6MuVp9ozk9uoQtQpA==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true optional: true - /esbuild-sunos-64/0.14.26: - resolution: {integrity: sha512-5odPsuhghCUYc3c1gEtz6pGq9cuGRDq1+iNdLBjZcz6IUebd0ay/AVORWchs5WddzyJA9hguxrKsPjECxX6OzQ==} + /esbuild-sunos-64/0.14.30: + resolution: {integrity: sha512-aQRtRTNKHB4YuG+xXATe5AoRTNY48IJg5vjE8ElxfmjO9+KdX7MHFkTLhlKevCD6rNANtB3qOlSIeAiXTwHNqw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true optional: true - /esbuild-windows-32/0.14.26: - resolution: {integrity: sha512-xSVyGV6xGQlAC/K+oBXC9YiGGqoKqQGXVEFQKlDGXD6rxHGK5Fch0ynuvkjaYWW/p8OWqxGVYcof5BvGjY49RA==} + /esbuild-windows-32/0.14.30: + resolution: {integrity: sha512-9/fb1tPtpacMqxAXp3fGHowUDg/l9dVch5hKmCLEZC6PdGljh6h372zMdJwYfH0Bd5CCPT0Wx95uycBLJiqpXA==} engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /esbuild-windows-64/0.14.26: - resolution: {integrity: sha512-Q0Bm42+wIqHJ8yF96T7nXosILXROegRtMmuI1L0kry0YBHnCFMtjNRTyUwv8yi7o2XvVYh7DF0NHLDL4N34MuA==} + /esbuild-windows-64/0.14.30: + resolution: {integrity: sha512-DHgITeUhPAnN9I5O6QBa1GVyPOhiYCn4S4TtQr7sO4+X0LNyqnlmA1M0qmGkUdDC1QQfjI8uQ4G/whdWb2pWIQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true optional: true - /esbuild-windows-arm64/0.14.26: - resolution: {integrity: sha512-+l0DB0VV4LiSoDfNsGviK/2M88IR+/fOUfQoQx08RPu7OZ7gv9BqhRLZCSCT4qHT351OTH1nPv7avRXX6JRQcg==} + /esbuild-windows-arm64/0.14.30: + resolution: {integrity: sha512-F1kLyQH7zSgjh5eLxogGZN7C9+KNs9m+s7Q6WZoMmCWT/6j998zlaoECHyM8izJRRfsvw2eZlEa1jO6/IOU1AQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -9510,32 +9531,32 @@ packages: requiresBuild: true dev: true - /esbuild/0.14.26: - resolution: {integrity: sha512-v0zIYlFB9NZ82/hFljhvpA7f8rob66r68ymB7juMz6TYAAMYjKGoW+hrMfRRvic5MAOI2wE/SuykFvsELLa6eA==} + /esbuild/0.14.30: + resolution: {integrity: sha512-wCecQSBkIjp2xjuXY+wcXS/PpOQo9rFh4NAKPh4Pm9f3fuLcnxkR0rDzA+mYP88FtXIUcXUyYmaIgfrzRl55jA==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - esbuild-android-64: 0.14.26 - esbuild-android-arm64: 0.14.26 - esbuild-darwin-64: 0.14.26 - esbuild-darwin-arm64: 0.14.26 - esbuild-freebsd-64: 0.14.26 - esbuild-freebsd-arm64: 0.14.26 - esbuild-linux-32: 0.14.26 - esbuild-linux-64: 0.14.26 - esbuild-linux-arm: 0.14.26 - esbuild-linux-arm64: 0.14.26 - esbuild-linux-mips64le: 0.14.26 - esbuild-linux-ppc64le: 0.14.26 - esbuild-linux-riscv64: 0.14.26 - esbuild-linux-s390x: 0.14.26 - esbuild-netbsd-64: 0.14.26 - esbuild-openbsd-64: 0.14.26 - esbuild-sunos-64: 0.14.26 - esbuild-windows-32: 0.14.26 - esbuild-windows-64: 0.14.26 - esbuild-windows-arm64: 0.14.26 + esbuild-android-64: 0.14.30 + esbuild-android-arm64: 0.14.30 + esbuild-darwin-64: 0.14.30 + esbuild-darwin-arm64: 0.14.30 + esbuild-freebsd-64: 0.14.30 + esbuild-freebsd-arm64: 0.14.30 + esbuild-linux-32: 0.14.30 + esbuild-linux-64: 0.14.30 + esbuild-linux-arm: 0.14.30 + esbuild-linux-arm64: 0.14.30 + esbuild-linux-mips64le: 0.14.30 + esbuild-linux-ppc64le: 0.14.30 + esbuild-linux-riscv64: 0.14.30 + esbuild-linux-s390x: 0.14.30 + esbuild-netbsd-64: 0.14.30 + esbuild-openbsd-64: 0.14.30 + esbuild-sunos-64: 0.14.30 + esbuild-windows-32: 0.14.30 + esbuild-windows-64: 0.14.30 + esbuild-windows-arm64: 0.14.30 /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -9576,16 +9597,16 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-prettier/8.5.0_eslint@8.11.0: + /eslint-config-prettier/8.5.0_eslint@8.12.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.11.0 + eslint: 8.12.0 dev: true - /eslint-config-standard/16.0.3_7dc77a0be22b3241d34262bf15f20ff9: + /eslint-config-standard/16.0.3_146d38e67599a909c4e567a04144449b: resolution: {integrity: sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==} peerDependencies: eslint: ^7.12.1 @@ -9593,10 +9614,10 @@ packages: eslint-plugin-node: ^11.1.0 eslint-plugin-promise: ^4.2.1 || ^5.0.0 dependencies: - eslint: 8.11.0 - eslint-plugin-import: 2.25.4_eslint@8.11.0 - eslint-plugin-node: 11.1.0_eslint@8.11.0 - eslint-plugin-promise: 6.0.0_eslint@8.11.0 + eslint: 8.12.0 + eslint-plugin-import: 2.25.4_eslint@8.12.0 + eslint-plugin-node: 11.1.0_eslint@8.12.0 + eslint-plugin-promise: 6.0.0_eslint@8.12.0 dev: true /eslint-import-resolver-node/0.3.6: @@ -9606,7 +9627,7 @@ packages: resolve: 1.22.0 dev: true - /eslint-import-resolver-typescript/2.5.0_eslint@8.11.0: + /eslint-import-resolver-typescript/2.5.0_eslint@8.12.0: resolution: {integrity: sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==} engines: {node: '>=4'} peerDependencies: @@ -9614,7 +9635,7 @@ packages: eslint-plugin-import: '*' dependencies: debug: 4.3.3 - eslint: 8.11.0 + eslint: 8.12.0 glob: 7.2.0 is-glob: 4.0.3 resolve: 1.22.0 @@ -9631,18 +9652,18 @@ packages: find-up: 2.1.0 dev: true - /eslint-plugin-es/3.0.1_eslint@8.11.0: + /eslint-plugin-es/3.0.1_eslint@8.12.0: resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: - eslint: 8.11.0 + eslint: 8.12.0 eslint-utils: 2.1.0 regexpp: 3.2.0 dev: true - /eslint-plugin-import/2.25.4_eslint@8.11.0: + /eslint-plugin-import/2.25.4_eslint@8.12.0: resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} engines: {node: '>=4'} peerDependencies: @@ -9652,7 +9673,7 @@ packages: array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.11.0 + eslint: 8.12.0 eslint-import-resolver-node: 0.3.6 eslint-module-utils: 2.7.3 has: 1.0.3 @@ -9664,7 +9685,7 @@ packages: tsconfig-paths: 3.14.0 dev: true - /eslint-plugin-jest/26.1.1_001ad503201c4e9538a066f91264180f: + /eslint-plugin-jest/26.1.1_c30465dd6e9f0d9f4143fa8904563102: resolution: {integrity: sha512-HRKOuPi5ADhza4ZBK5ufyNXy28bXXkib87w+pQqdvBhSTsamndh6sIAKPAUl8y0/n9jSWBdTPslrwtKWqkp8dA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: @@ -9677,23 +9698,23 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.14.0_ace6f9e7722b813e21eaf2dc993bc413 - '@typescript-eslint/utils': 5.14.0_eslint@8.11.0+typescript@4.6.2 - eslint: 8.11.0 + '@typescript-eslint/eslint-plugin': 5.14.0_d6b65a03bf66ac0c7f7b640f483a14f3 + '@typescript-eslint/utils': 5.14.0_eslint@8.12.0+typescript@4.6.3 + eslint: 8.12.0 jest: 27.5.1 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-node/11.1.0_eslint@8.11.0: + /eslint-plugin-node/11.1.0_eslint@8.12.0: resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=5.16.0' dependencies: - eslint: 8.11.0 - eslint-plugin-es: 3.0.1_eslint@8.11.0 + eslint: 8.12.0 + eslint-plugin-es: 3.0.1_eslint@8.12.0 eslint-utils: 2.1.0 ignore: 5.2.0 minimatch: 3.1.2 @@ -9701,18 +9722,18 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-nuxt/3.2.0_eslint@8.11.0: + /eslint-plugin-nuxt/3.2.0_eslint@8.12.0: resolution: {integrity: sha512-SWpmJALwagdrlMooajFX9IFxFEKdBxD+e4NFOVw9FGc22HQpNKdiljRHchS/3O5e2R7sPZYv8xdCtoordqIXFQ==} dependencies: - eslint-plugin-vue: 8.5.0_eslint@8.11.0 + eslint-plugin-vue: 8.5.0_eslint@8.12.0 semver: 7.3.5 - vue-eslint-parser: 8.3.0_eslint@8.11.0 + vue-eslint-parser: 8.3.0_eslint@8.12.0 transitivePeerDependencies: - eslint - supports-color dev: true - /eslint-plugin-prettier/4.0.0_68edcf5670f37721baf5d2cac6124e4d: + /eslint-plugin-prettier/4.0.0_f2c91d0f54113167d2bd9214a5ab5a36: resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==} engines: {node: '>=6.0.0'} peerDependencies: @@ -9723,22 +9744,22 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.11.0 - eslint-config-prettier: 8.5.0_eslint@8.11.0 - prettier: 2.6.0 + eslint: 8.12.0 + eslint-config-prettier: 8.5.0_eslint@8.12.0 + prettier: 2.6.2 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-promise/6.0.0_eslint@8.11.0: + /eslint-plugin-promise/6.0.0_eslint@8.12.0: resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.11.0 + eslint: 8.12.0 dev: true - /eslint-plugin-unicorn/41.0.0_eslint@8.11.0: + /eslint-plugin-unicorn/41.0.0_eslint@8.12.0: resolution: {integrity: sha512-xoJCaRc1uy5REg9DkVga1BkZV57jJxoqOcrU28QHZB89Lk5LdSqdVyTIt9JQVfHNKaiyJ7X+3iLlIn+VEHWEzA==} engines: {node: '>=12'} peerDependencies: @@ -9747,8 +9768,8 @@ packages: '@babel/helper-validator-identifier': 7.16.7 ci-info: 3.3.0 clean-regexp: 1.0.0 - eslint: 8.11.0 - eslint-utils: 3.0.0_eslint@8.11.0 + eslint: 8.12.0 + eslint-utils: 3.0.0_eslint@8.12.0 esquery: 1.4.0 indent-string: 4.0.0 is-builtin-module: 3.1.0 @@ -9761,17 +9782,17 @@ packages: strip-indent: 3.0.0 dev: true - /eslint-plugin-vue/8.5.0_eslint@8.11.0: + /eslint-plugin-vue/8.5.0_eslint@8.12.0: resolution: {integrity: sha512-i1uHCTAKOoEj12RDvdtONWrGzjFm/djkzqfhmQ0d6M/W8KM81mhswd/z+iTZ0jCpdUedW3YRgcVfQ37/J4zoYQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.11.0 - eslint-utils: 3.0.0_eslint@8.11.0 + eslint: 8.12.0 + eslint-utils: 3.0.0_eslint@8.12.0 natural-compare: 1.4.0 semver: 7.3.5 - vue-eslint-parser: 8.3.0_eslint@8.11.0 + vue-eslint-parser: 8.3.0_eslint@8.12.0 transitivePeerDependencies: - supports-color dev: true @@ -9807,13 +9828,13 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.11.0: + /eslint-utils/3.0.0_eslint@8.12.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.11.0 + eslint: 8.12.0 eslint-visitor-keys: 2.1.0 dev: true @@ -9832,7 +9853,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint-webpack-plugin/2.5.4_eslint@8.11.0: + /eslint-webpack-plugin/2.5.4_eslint@8.12.0: resolution: {integrity: sha512-7rYh0m76KyKSDE+B+2PUQrlNS4HJ51t3WKpkJg6vo2jFMbEPTG99cBV0Dm7LXSHucN4WGCG65wQcRiTFrj7iWw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -9841,15 +9862,15 @@ packages: dependencies: '@types/eslint': 7.28.2 arrify: 2.0.1 - eslint: 8.11.0 + eslint: 8.12.0 jest-worker: 26.6.2 micromatch: 4.0.4 normalize-path: 3.0.0 schema-utils: 3.1.1 dev: true - /eslint/8.11.0: - resolution: {integrity: sha512-/KRpd9mIRg2raGxHRGwW9ZywYNAClZrHjdueHcrVDuO3a6bj83eoTirCCk0M0yPwOjWYKHwRVRid+xK4F/GHgA==} + /eslint/8.12.0: + resolution: {integrity: sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: @@ -9858,11 +9879,11 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.3 + debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.11.0 + eslint-utils: 3.0.0_eslint@8.12.0 eslint-visitor-keys: 3.3.0 espree: 9.3.1 esquery: 1.4.0 @@ -9871,7 +9892,7 @@ packages: file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 glob-parent: 6.0.2 - globals: 13.12.1 + globals: 13.13.0 ignore: 5.2.0 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -10092,10 +10113,6 @@ packages: css: 2.2.4 dev: true - /faker/5.5.3: - resolution: {integrity: sha512-wLTv2a28wjUyWkbnX7u/ABZBkUkIF2fCd73V6P2oFqEGEktDfzWx4UxrSqtPRw0xPRAcjeAOIiJWqZm3pP4u3g==} - dev: false - /fast-deep-equal/3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -10111,7 +10128,7 @@ packages: '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.4 + micromatch: 4.0.5 /fast-glob/3.2.7: resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} @@ -10323,35 +10340,35 @@ packages: path-exists: 4.0.0 dev: true - /firebase/9.6.9: - resolution: {integrity: sha512-S9OmI+vMLNE8dr8ISyAdF88t8JxSMvbSULFq2Eox0q4P3MUN5N0/68NDIhibXTp6hdLI6/hs7b50SAplTCx9NA==} + /firebase/9.6.10: + resolution: {integrity: sha512-pnWXhH2J/O5To/TXEp7Dx1nSKkDRspl1bo4f4p6f2noVrn3lvz+cbQNM7DTT0xyA0RsNM/V7aSv3ZbAQj8Od3Q==} dependencies: - '@firebase/analytics': 0.7.6_@firebase+app@0.7.19 - '@firebase/analytics-compat': 0.1.7_c8a60333997e76cbef3dda80e0a2394a - '@firebase/app': 0.7.19 - '@firebase/app-check': 0.5.4_@firebase+app@0.7.19 - '@firebase/app-check-compat': 0.2.4_c8a60333997e76cbef3dda80e0a2394a - '@firebase/app-compat': 0.1.20 + '@firebase/analytics': 0.7.7_@firebase+app@0.7.20 + '@firebase/analytics-compat': 0.1.8_868085a1841bc1620876e13ffdfa88b5 + '@firebase/app': 0.7.20 + '@firebase/app-check': 0.5.5_@firebase+app@0.7.20 + '@firebase/app-check-compat': 0.2.5_868085a1841bc1620876e13ffdfa88b5 + '@firebase/app-compat': 0.1.21 '@firebase/app-types': 0.7.0 - '@firebase/auth': 0.19.10_@firebase+app@0.7.19 - '@firebase/auth-compat': 0.2.10_cdfe7719f379a3fdf450aeb4d04c93da - '@firebase/database': 0.12.6_@firebase+app-types@0.7.0 - '@firebase/database-compat': 0.1.6_2668787785cafa51f0d66ef4e88354f7 - '@firebase/firestore': 3.4.6_@firebase+app@0.7.19 - '@firebase/firestore-compat': 0.1.15_cdfe7719f379a3fdf450aeb4d04c93da - '@firebase/functions': 0.7.9_5c860adfc5c562292497b8beda4959cd - '@firebase/functions-compat': 0.1.10_cdfe7719f379a3fdf450aeb4d04c93da - '@firebase/installations': 0.5.6_@firebase+app@0.7.19 - '@firebase/messaging': 0.9.10_@firebase+app@0.7.19 - '@firebase/messaging-compat': 0.1.10_c8a60333997e76cbef3dda80e0a2394a - '@firebase/performance': 0.5.6_@firebase+app@0.7.19 - '@firebase/performance-compat': 0.1.6_c8a60333997e76cbef3dda80e0a2394a + '@firebase/auth': 0.19.11_@firebase+app@0.7.20 + '@firebase/auth-compat': 0.2.11_dfadae57191c8ff11d89085862f0c8e3 + '@firebase/database': 0.12.7_@firebase+app-types@0.7.0 + '@firebase/database-compat': 0.1.7_b2c59dabb74e592c496f4266c968bb15 + '@firebase/firestore': 3.4.7_@firebase+app@0.7.20 + '@firebase/firestore-compat': 0.1.16_dfadae57191c8ff11d89085862f0c8e3 + '@firebase/functions': 0.7.10_d8b1d8a8908d69140f74bf409d5ccca7 + '@firebase/functions-compat': 0.1.11_dfadae57191c8ff11d89085862f0c8e3 + '@firebase/installations': 0.5.7_@firebase+app@0.7.20 + '@firebase/messaging': 0.9.11_@firebase+app@0.7.20 + '@firebase/messaging-compat': 0.1.11_868085a1841bc1620876e13ffdfa88b5 + '@firebase/performance': 0.5.7_@firebase+app@0.7.20 + '@firebase/performance-compat': 0.1.7_868085a1841bc1620876e13ffdfa88b5 '@firebase/polyfill': 0.3.36 - '@firebase/remote-config': 0.3.5_@firebase+app@0.7.19 - '@firebase/remote-config-compat': 0.1.6_c8a60333997e76cbef3dda80e0a2394a - '@firebase/storage': 0.9.3_@firebase+app@0.7.19 - '@firebase/storage-compat': 0.1.11_cdfe7719f379a3fdf450aeb4d04c93da - '@firebase/util': 1.5.0 + '@firebase/remote-config': 0.3.6_@firebase+app@0.7.20 + '@firebase/remote-config-compat': 0.1.7_868085a1841bc1620876e13ffdfa88b5 + '@firebase/storage': 0.9.4_@firebase+app@0.7.20 + '@firebase/storage-compat': 0.1.12_dfadae57191c8ff11d89085862f0c8e3 + '@firebase/util': 1.5.1 transitivePeerDependencies: - bufferutil - encoding @@ -10399,7 +10416,7 @@ packages: resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} engines: {node: '>=0.10.0'} - /fork-ts-checker-webpack-plugin/6.4.0_eslint@8.11.0+typescript@4.2.4: + /fork-ts-checker-webpack-plugin/6.4.0_eslint@8.12.0+typescript@4.2.4: resolution: {integrity: sha512-3I3wFkc4DbzaUDPWEi96wdYGu4EKtxBafhZYm0o4mX51d9bphAY4P3mBl8K5mFXFJqVzHfmdbm9kLGnm7vwwBg==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -10419,11 +10436,11 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 - eslint: 8.11.0 + eslint: 8.12.0 fs-extra: 9.1.0 glob: 7.2.0 memfs: 3.3.0 - minimatch: 3.0.4 + minimatch: 3.1.2 schema-utils: 2.7.0 semver: 7.3.5 tapable: 1.1.3 @@ -10716,7 +10733,7 @@ packages: resolution: {integrity: sha1-1pk+phYKhsi3895yKmH3O8meFLQ=} engines: {node: '>=4'} dependencies: - mkdirp: 0.5.5 + mkdirp: 0.5.6 tar: 4.4.19 dev: true @@ -10788,8 +10805,8 @@ packages: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - /globals/13.12.1: - resolution: {integrity: sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==} + /globals/13.13.0: + resolution: {integrity: sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -10885,18 +10902,18 @@ packages: /graceful-fs/4.2.9: resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==} - /graphql-config/4.1.0_b10c7c805a70317564c606afefa10ca5: + /graphql-config/4.1.0_50dbbce7419ab720b01d03d0e2a001aa: resolution: {integrity: sha512-Myqay6pmdcmX3KqoH+bMbeKZ1cTODpHS2CxF1ZzNnfTE+YUpGTcp01bOw6LpzamRb0T/WTYtGFbZeXGo9Hab2Q==} engines: {node: '>= 10.0.0'} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_c84a270c92bf6e8d30a9786dab5936e4 + '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_ec5c0ebd3030a0a5109338876648df1b '@graphql-tools/graphql-file-loader': 7.3.3_graphql@15.7.2 '@graphql-tools/json-file-loader': 7.3.3_graphql@15.7.2 '@graphql-tools/load': 7.5.0_graphql@15.7.2 '@graphql-tools/merge': 8.2.1_graphql@15.7.2 - '@graphql-tools/url-loader': 7.7.0_e92fd8447452a16eb0b9d4ba1df1f876 + '@graphql-tools/url-loader': 7.7.0_ecd77fc38bdf37a66d139aef3f5dc8c0 '@graphql-tools/utils': 8.5.5_graphql@15.7.2 cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 @@ -10919,13 +10936,13 @@ packages: graphql: 15.7.2 dev: true - /graphql-language-service-interface/2.9.1_b10c7c805a70317564c606afefa10ca5: + /graphql-language-service-interface/2.9.1_50dbbce7419ab720b01d03d0e2a001aa: resolution: {integrity: sha512-yGsE67fxJBXxY82+rLDMvUpmzpOUM8XFB+k+xOTUyABWs27osKaoGiuDDXAVGg1adhm+cpunWbipe763ZJkAVA==} peerDependencies: graphql: '>= 15.5.0 <= 16.0.0-experimental-stream-defer.5' dependencies: graphql: 15.7.2 - graphql-language-service-parser: 1.10.4_b10c7c805a70317564c606afefa10ca5 + graphql-language-service-parser: 1.10.4_50dbbce7419ab720b01d03d0e2a001aa graphql-language-service-types: 1.8.3_graphql@15.7.2 graphql-language-service-utils: 2.6.0_graphql@15.7.2 vscode-languageserver-types: 3.16.0 @@ -10937,13 +10954,13 @@ packages: - utf-8-validate dev: false - /graphql-language-service-parser/1.10.4_b10c7c805a70317564c606afefa10ca5: + /graphql-language-service-parser/1.10.4_50dbbce7419ab720b01d03d0e2a001aa: resolution: {integrity: sha512-duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 15.7.2 - graphql-language-service-types: 1.8.7_b10c7c805a70317564c606afefa10ca5 + graphql-language-service-types: 1.8.7_50dbbce7419ab720b01d03d0e2a001aa transitivePeerDependencies: - '@types/node' - bufferutil @@ -10960,13 +10977,13 @@ packages: graphql: 15.7.2 dev: false - /graphql-language-service-types/1.8.7_b10c7c805a70317564c606afefa10ca5: + /graphql-language-service-types/1.8.7_50dbbce7419ab720b01d03d0e2a001aa: resolution: {integrity: sha512-LP/Mx0nFBshYEyD0Ny6EVGfacJAGVx+qXtlJP4hLzUdBNOGimfDNtMVIdZANBXHXcM41MDgMHTnyEx2g6/Ttbw==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 15.7.2 - graphql-config: 4.1.0_b10c7c805a70317564c606afefa10ca5 + graphql-config: 4.1.0_50dbbce7419ab720b01d03d0e2a001aa vscode-languageserver-types: 3.16.0 transitivePeerDependencies: - '@types/node' @@ -11368,8 +11385,8 @@ packages: statuses: 1.5.0 toidentifier: 1.0.0 - /http-parser-js/0.5.5: - resolution: {integrity: sha512-x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA==} + /http-parser-js/0.5.6: + resolution: {integrity: sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==} dev: false /http-proxy-agent/4.0.1: @@ -11378,7 +11395,7 @@ packages: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.3 + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -11444,7 +11461,7 @@ packages: engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.3 + debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -11662,8 +11679,8 @@ packages: through: 2.3.8 dev: true - /insomnia-importers/2.7.0_openapi-types@10.0.0: - resolution: {integrity: sha512-x91ZTEOS76+gkfoVpeniCmXA5uH8S+00S3Bzg4i96rSVFWF7FtlhYQtj5R3BppzFh0OIwF5vSUwtOWqMUbJ33Q==} + /insomnia-importers/2.8.0_openapi-types@10.0.0: + resolution: {integrity: sha512-NUwotmwojCt7uktVY+5YOqCM3jHiCqDb+P68FnuMhAgPaRUveJD2OfgkbxO8040p7HkY2+xDwzfgj4LiFDBBmQ==} hasBin: true dependencies: '@apidevtools/swagger-parser': 10.0.2_openapi-types@10.0.0 @@ -12171,7 +12188,7 @@ packages: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} engines: {node: '>=10'} dependencies: - debug: 4.3.3 + debug: 4.3.4 istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: @@ -12205,7 +12222,7 @@ packages: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -12330,7 +12347,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -12348,7 +12365,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 jest-mock: 27.5.1 jest-util: 27.5.1 dev: true @@ -12364,7 +12381,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.21 + '@types/node': 17.0.23 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.9 @@ -12386,7 +12403,7 @@ packages: '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -12441,7 +12458,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 dev: true /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1: @@ -12497,7 +12514,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.9 @@ -12560,7 +12577,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 17.0.21 + '@types/node': 17.0.23 graceful-fs: 4.2.9 dev: true @@ -12599,7 +12616,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 chalk: 4.1.2 ci-info: 3.3.0 graceful-fs: 4.2.9 @@ -12624,7 +12641,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -12652,7 +12669,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 17.0.21 + '@types/node': 17.0.23 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -12850,6 +12867,11 @@ packages: dependencies: minimist: 1.2.5 + /json5/2.2.1: + resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + engines: {node: '>=6'} + hasBin: true + /jsonc-parser/3.0.0: resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} dev: true @@ -12857,7 +12879,7 @@ packages: /jsonfile/4.0.0: resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} optionalDependencies: - graceful-fs: 4.2.9 + graceful-fs: 4.2.8 dev: false /jsonfile/6.1.0: @@ -12892,8 +12914,8 @@ packages: semver: 5.7.1 dev: true - /jszip/3.7.1: - resolution: {integrity: sha512-ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg==} + /jszip/3.8.0: + resolution: {integrity: sha512-cnpQrXvFSLdsR9KR5/x7zdf6c3m8IhZfZzSblFEHSqBaVwD2nvJ4CuCKLyvKvwBgZm08CgfSoiTBQLm5WW9hGw==} dependencies: lie: 3.3.0 pako: 1.0.11 @@ -13032,6 +13054,11 @@ packages: /lilconfig/2.0.4: resolution: {integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==} engines: {node: '>=10'} + dev: false + + /lilconfig/2.0.5: + resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==} + engines: {node: '>=10'} /lines-and-columns/1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} @@ -13044,16 +13071,16 @@ packages: cli-truncate: 3.1.0 colorette: 2.0.16 commander: 8.3.0 - debug: 4.3.3_supports-color@9.2.1 + debug: 4.3.4_supports-color@9.2.2 execa: 5.1.1 lilconfig: 2.0.4 listr2: 4.0.5 - micromatch: 4.0.4 + micromatch: 4.0.5 normalize-path: 3.0.0 object-inspect: 1.12.0 pidtree: 0.5.0 string-argv: 0.3.1 - supports-color: 9.2.1 + supports-color: 9.2.2 yaml: 1.10.2 transitivePeerDependencies: - enquirer @@ -13191,7 +13218,7 @@ packages: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 - json5: 2.2.0 + json5: 2.2.1 /local-pkg/0.4.1: resolution: {integrity: sha512-lL87ytIGP2FU5PWwNDo0w3WhIo2gopIAxPg9RxDYF7m4rr5ahuZxP22xnJHIvaLTe4Z9P6uKKY2UHiwyB4pcrw==} @@ -13606,7 +13633,7 @@ packages: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - /meros/1.1.4_@types+node@17.0.21: + /meros/1.1.4_@types+node@17.0.23: resolution: {integrity: sha512-E9ZXfK9iQfG9s73ars9qvvvbSIkJZF5yOo9j4tcwM5tN8mUKfj/EKN5PzOr3ZH0y5wL7dLAHw3RVEfpQV9Q7VQ==} engines: {node: '>=12'} peerDependencies: @@ -13615,7 +13642,7 @@ packages: '@types/node': optional: true dependencies: - '@types/node': 17.0.21 + '@types/node': 17.0.23 /micromatch/3.1.0: resolution: {integrity: sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==} @@ -13662,6 +13689,13 @@ packages: braces: 3.0.2 picomatch: 2.3.1 + /micromatch/4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + /miller-rabin/4.0.1: resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} hasBin: true @@ -13677,7 +13711,6 @@ packages: /mime-db/1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} - dev: true /mime-format/2.0.1: resolution: {integrity: sha512-XxU3ngPbEnrYnNbIX+lYSaYg0M01v6p2ntd2YaFksTu0vayaw5OJvbdRyWs07EYRlLED5qadUZ+xo+XhOvFhwg==} @@ -13696,7 +13729,6 @@ packages: engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 - dev: true /mime/1.6.0: resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} @@ -13775,6 +13807,10 @@ packages: /minimist/1.2.5: resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} + /minimist/1.2.6: + resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + dev: true + /minipass-collect/1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} engines: {node: '>= 8'} @@ -13865,6 +13901,13 @@ packages: dependencies: minimist: 1.2.5 + /mkdirp/0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + /mkdirp/1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} @@ -13976,6 +14019,12 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + /nanoid/3.3.2: + resolution: {integrity: sha512-CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + dev: true + /nanomatch/1.2.13: resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} engines: {node: '>=0.10.0'} @@ -14244,7 +14293,7 @@ packages: /nuxt-windicss/2.2.8: resolution: {integrity: sha512-l0mONjhsxhkDa/XVLbQZIaA2+xxo+IBCWyieR7vq1Rl4BDRghNXYPMi8H04qwNND8R0cQQNQYUmECxjUg1LlAQ==} dependencies: - '@nuxt/kit': /@nuxt/kit-edge/3.0.0-27470397.9ebea90 + '@nuxt/kit': /@nuxt/kit-edge/3.0.0-27480376.fdd38f9 '@windicss/plugin-utils': 1.8.3 consola: 2.15.3 defu: 5.0.1 @@ -14266,13 +14315,13 @@ packages: - webpack dev: true - /nuxt/2.15.8_typescript@4.6.2: + /nuxt/2.15.8_typescript@4.6.3: resolution: {integrity: sha512-ceK3qLg/Baj7J8mK9bIxqw9AavrF+LXqwYEreBdY/a4Sj8YV4mIvhqea/6E7VTCNNGvKT2sJ/TTJjtfQ597lTA==} hasBin: true requiresBuild: true dependencies: '@nuxt/babel-preset-app': 2.15.8 - '@nuxt/builder': 2.15.8_typescript@4.6.2 + '@nuxt/builder': 2.15.8_typescript@4.6.3 '@nuxt/cli': 2.15.8 '@nuxt/components': 2.2.1 '@nuxt/config': 2.15.8 @@ -14285,7 +14334,7 @@ packages: '@nuxt/utils': 2.15.8 '@nuxt/vue-app': 2.15.8 '@nuxt/vue-renderer': 2.15.8 - '@nuxt/webpack': 2.15.8_typescript@4.6.2 + '@nuxt/webpack': 2.15.8_typescript@4.6.3 transitivePeerDependencies: - bufferutil - consola @@ -14880,11 +14929,11 @@ packages: engines: {node: '>=4'} dev: true - /pnp-webpack-plugin/1.7.0_typescript@4.6.2: + /pnp-webpack-plugin/1.7.0_typescript@4.6.3: resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.6.2 + ts-pnp: 1.2.0_typescript@4.6.3 transitivePeerDependencies: - typescript dev: false @@ -14902,14 +14951,14 @@ packages: resolution: {integrity: sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==} dependencies: postcss: 7.0.39 - postcss-selector-parser: 6.0.9 + postcss-selector-parser: 6.0.10 dev: false /postcss-calc/7.0.5: resolution: {integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==} dependencies: postcss: 7.0.39 - postcss-selector-parser: 6.0.9 + postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: false @@ -15131,16 +15180,19 @@ packages: import-cwd: 2.1.0 dev: false - /postcss-load-config/3.1.3: - resolution: {integrity: sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==} + /postcss-load-config/3.1.4: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: + postcss: '>=8.0.9' ts-node: '>=9.0.0' peerDependenciesMeta: + postcss: + optional: true ts-node: optional: true dependencies: - lilconfig: 2.0.4 + lilconfig: 2.0.5 yaml: 1.10.2 /postcss-loader/3.0.0: @@ -15246,7 +15298,7 @@ packages: dependencies: icss-utils: 4.1.1 postcss: 7.0.39 - postcss-selector-parser: 6.0.9 + postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: false @@ -15255,7 +15307,7 @@ packages: engines: {node: '>= 6'} dependencies: postcss: 7.0.39 - postcss-selector-parser: 6.0.9 + postcss-selector-parser: 6.0.10 dev: false /postcss-modules-values/3.0.0: @@ -15527,12 +15579,20 @@ packages: uniq: 1.0.1 dev: false + /postcss-selector-parser/6.0.10: + resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + /postcss-selector-parser/6.0.9: resolution: {integrity: sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==} engines: {node: '>=4'} dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 + dev: true /postcss-svgo/4.0.3: resolution: {integrity: sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==} @@ -15600,7 +15660,7 @@ packages: resolution: {integrity: sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==} engines: {node: ^10 || ^12 || >=14} dependencies: - nanoid: 3.3.1 + nanoid: 3.3.2 picocolors: 1.0.0 source-map-js: 1.0.2 dev: true @@ -15649,18 +15709,18 @@ packages: posthtml-render: 1.4.0 dev: true - /postman-collection/4.1.1: - resolution: {integrity: sha512-ODpJtlf8r99DMcTU7gFmi/yvQYckFzcuE6zL/fWnyrFT34ugdCBFlX+DN7M+AnP6lmR822fv5s60H4DnL4+fAg==} + /postman-collection/4.1.2: + resolution: {integrity: sha512-nRYgzeo2VwQZZXF8YUMUvG8wKXPmjQ+BZPMXix+tNRWBHWAdqa191AwBL80LQxvHzECYp8Lp1JXMpg4OMXHLnw==} engines: {node: '>=10'} dependencies: - faker: 5.5.3 + '@faker-js/faker': 6.0.0 file-type: 3.9.0 http-reasons: 0.1.0 iconv-lite: 0.6.3 liquid-json: 0.3.1 lodash: 4.17.21 mime-format: 2.0.1 - mime-types: 2.1.34 + mime-types: 2.1.35 postman-url-encoder: 3.0.5 semver: 7.3.5 uuid: 8.3.2 @@ -15700,17 +15760,11 @@ packages: fast-diff: 1.2.0 dev: true - /prettier/2.6.0: - resolution: {integrity: sha512-m2FgJibYrBGGgQXNzfd0PuDGShJgRavjUoRCw1mZERIWVSXF0iLzLm+aOqTAbLnC3n6JzUhAA8uZnFVghHJ86A==} + /prettier/2.6.2: + resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==} engines: {node: '>=10.13.0'} hasBin: true - /prettier/2.6.1: - resolution: {integrity: sha512-8UVbTBYGwN37Bs9LERmxCPjdvPxlEowx2urIL6urHzdb3SDq4B/Z6xLFCblrSnE4iKWcS6ziJ3aOYrc1kz/E2A==} - engines: {node: '>=10.13.0'} - hasBin: true - dev: true - /pretty-bytes/5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} @@ -15809,7 +15863,7 @@ packages: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.1 - '@types/node': 17.0.21 + '@types/node': 17.0.23 long: 4.0.0 dev: false @@ -16091,7 +16145,7 @@ packages: /regenerator-transform/0.14.5: resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==} dependencies: - '@babel/runtime': 7.17.0 + '@babel/runtime': 7.17.8 /regex-not/1.0.2: resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} @@ -16158,7 +16212,7 @@ packages: '@babel/core': 7.17.8 '@babel/generator': 7.17.7 '@babel/parser': 7.17.8 - '@babel/runtime': 7.17.2 + '@babel/runtime': 7.17.8 '@babel/traverse': 7.17.3 '@babel/types': 7.17.0 babel-preset-fbjs: 3.4.0_@babel+core@7.17.8 @@ -16181,7 +16235,7 @@ packages: /relay-runtime/12.0.0: resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} dependencies: - '@babel/runtime': 7.17.2 + '@babel/runtime': 7.17.8 fbjs: 3.0.4 invariant: 2.2.4 transitivePeerDependencies: @@ -16370,7 +16424,7 @@ packages: inherits: 2.0.4 dev: false - /rollup-plugin-dts/4.2.0_rollup@2.70.1+typescript@4.6.2: + /rollup-plugin-dts/4.2.0_rollup@2.70.1+typescript@4.6.3: resolution: {integrity: sha512-lx6irWVhz/x4//tIqRhzk4FOqGQ0n37ZM2wpPCn4uafl/EmiV92om7ZdAsq7Bzho6C+Xh5GfsyuP9H+Udv72Lg==} engines: {node: '>=v12.22.10'} peerDependencies: @@ -16379,12 +16433,12 @@ packages: dependencies: magic-string: 0.26.1 rollup: 2.70.1 - typescript: 4.6.2 + typescript: 4.6.3 optionalDependencies: '@babel/code-frame': 7.16.7 dev: true - /rollup-plugin-ts/2.0.5_rollup@2.70.1+typescript@4.6.2: + /rollup-plugin-ts/2.0.5_rollup@2.70.1+typescript@4.6.3: resolution: {integrity: sha512-yLfu46XsheAEDs+OxCMnHszble9pYwGYDML82lpMw3x/65kgwd9UQSkPX0HZGk+6L+MN8hFgqeh+SPmv+uOz1w==} engines: {node: '>=10.0.0', npm: '>=7.0.0', pnpm: '>=3.2.0', yarn: '>=1.13'} peerDependencies: @@ -16412,16 +16466,16 @@ packages: dependencies: '@rollup/pluginutils': 4.2.0 '@wessberg/stringutil': 1.0.19 - browserslist: 4.20.0 + browserslist: 4.20.2 browserslist-generator: 1.0.65 chalk: 4.1.2 - compatfactory: 0.0.12_typescript@4.6.2 + compatfactory: 0.0.12_typescript@4.6.3 crosspath: 1.0.0 magic-string: 0.25.9 rollup: 2.70.1 - ts-clone-node: 0.3.30_typescript@4.6.2 + ts-clone-node: 0.3.30_typescript@4.6.3 tslib: 2.3.1 - typescript: 4.6.2 + typescript: 4.6.3 dev: true /rollup/2.70.1: @@ -16477,7 +16531,7 @@ packages: /safer-buffer/2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - /sass-loader/10.1.1_sass@1.49.9: + /sass-loader/10.1.1_sass@1.49.11: resolution: {integrity: sha512-W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -16496,12 +16550,12 @@ packages: klona: 2.0.5 loader-utils: 2.0.2 neo-async: 2.6.2 - sass: 1.49.9 + sass: 1.49.11 schema-utils: 3.1.1 semver: 7.3.5 dev: true - /sass-loader/10.2.0_sass@1.49.9: + /sass-loader/10.2.0_sass@1.49.11: resolution: {integrity: sha512-kUceLzC1gIHz0zNJPpqRsJyisWatGYNFRmv2CKZK2/ngMJgLqxTbXwe/hJ85luyvZkgqU3VlJ33UVF2T/0g6mw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -16520,13 +16574,13 @@ packages: klona: 2.0.5 loader-utils: 2.0.1 neo-async: 2.6.2 - sass: 1.49.9 + sass: 1.49.11 schema-utils: 3.1.1 semver: 7.3.5 dev: true - /sass/1.49.9: - resolution: {integrity: sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A==} + /sass/1.49.11: + resolution: {integrity: sha512-wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -16567,7 +16621,7 @@ packages: resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} engines: {node: '>= 8.9.0'} dependencies: - '@types/json-schema': 7.0.9 + '@types/json-schema': 7.0.11 ajv: 6.12.6 ajv-keywords: 3.5.2_ajv@6.12.6 @@ -16590,7 +16644,7 @@ packages: resolution: {integrity: sha512-bcrwFPRax8fifRP60p7xkWDGSJJoMkPAzufMlk5K2NyLPht/YZzR2WcIk1+3gR8VOCLlst1P2PI+MXACaFzpIw==} engines: {node: '>= 10.15.0'} dependencies: - jszip: 3.7.1 + jszip: 3.8.0 rimraf: 3.0.2 tmp: 0.2.1 ws: 8.5.0 @@ -16603,7 +16657,7 @@ packages: resolution: {integrity: sha512-Fr9e9LC6zvD6/j7NO8M1M/NVxFX67abHcxDJoP5w2KN/Xb1SyYLjMVPGgD14U2TOiKe4XKHf42OmFw9g2JgCBQ==} engines: {node: '>= 10.15.0'} dependencies: - jszip: 3.7.1 + jszip: 3.8.0 tmp: 0.2.1 ws: 8.5.0 transitivePeerDependencies: @@ -16931,7 +16985,7 @@ packages: '@types/component-emitter': 1.2.11 backo2: 1.0.2 component-emitter: 1.3.0 - debug: 4.3.3 + debug: 4.3.4 engine.io-client: 4.1.4 parseuri: 0.0.6 socket.io-parser: 4.0.4 @@ -16947,7 +17001,7 @@ packages: dependencies: '@socket.io/component-emitter': 3.0.0 backo2: 1.0.2 - debug: 4.3.3 + debug: 4.3.4 engine.io-client: 6.1.1 parseuri: 0.0.6 socket.io-parser: 4.1.2 @@ -16971,7 +17025,7 @@ packages: dependencies: '@types/component-emitter': 1.2.11 component-emitter: 1.3.0 - debug: 4.3.3 + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: false @@ -16981,7 +17035,7 @@ packages: engines: {node: '>=10.0.0'} dependencies: '@socket.io/component-emitter': 3.0.0 - debug: 4.3.3 + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: false @@ -17402,7 +17456,7 @@ packages: postcss-selector-parser: 3.1.2 dev: false - /stylelint-config-html/1.0.0_f552817e5b8b1b7dca381d844218922e: + /stylelint-config-html/1.0.0_50484b26a38601352aaf9ea7986ae8a8: resolution: {integrity: sha512-rKQUUWDpaYC7ybsS6tLxddjn6DxhjSIXybElSmcTyVQj3ExhmU3q+l41ktrlwHRyY0M5SkTkZiwngvYPYmsgSQ==} engines: {node: ^12 || >=14} peerDependencies: @@ -17410,34 +17464,34 @@ packages: stylelint: '>=14.0.0' dependencies: postcss-html: 1.3.0 - stylelint: 14.6.0 + stylelint: 14.6.1 dev: true - /stylelint-config-prettier/9.0.3_stylelint@14.6.0: + /stylelint-config-prettier/9.0.3_stylelint@14.6.1: resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==} engines: {node: '>= 12'} hasBin: true peerDependencies: stylelint: '>=11.0.0' dependencies: - stylelint: 14.6.0 + stylelint: 14.6.1 dev: true - /stylelint-config-recommended-scss/5.0.2_stylelint@14.6.0: + /stylelint-config-recommended-scss/5.0.2_stylelint@14.6.1: resolution: {integrity: sha512-b14BSZjcwW0hqbzm9b0S/ScN2+3CO3O4vcMNOw2KGf8lfVSwJ4p5TbNEXKwKl1+0FMtgRXZj6DqVUe/7nGnuBg==} peerDependencies: stylelint: ^14.0.0 dependencies: postcss-scss: 4.0.2 - stylelint: 14.6.0 - stylelint-config-recommended: 6.0.0_stylelint@14.6.0 - stylelint-scss: 4.0.0_stylelint@14.6.0 + stylelint: 14.6.1 + stylelint-config-recommended: 6.0.0_stylelint@14.6.1 + stylelint-scss: 4.0.0_stylelint@14.6.1 transitivePeerDependencies: - postcss dev: true - /stylelint-config-recommended-vue/1.3.0_f552817e5b8b1b7dca381d844218922e: - resolution: {integrity: sha512-UEY/MZlBO2yiQdZoJm33trtqJ1MEDzBADhIAM0pTvfYbyXe5KwdbTtmALHETG1cXfDxuuUbJTvL9uENMy2Rjug==} + /stylelint-config-recommended-vue/1.4.0_50484b26a38601352aaf9ea7986ae8a8: + resolution: {integrity: sha512-DVJqyX2KvMCn9U0+keL12r7xlsH26K4Vg8NrIZuq5MoF7g82DpMp326Om4E0Q+Il1o+bTHuUyejf2XAI0iD04Q==} engines: {node: ^12 || >=14} peerDependencies: postcss-html: ^1.0.0 @@ -17445,58 +17499,58 @@ packages: dependencies: postcss-html: 1.3.0 semver: 7.3.5 - stylelint: 14.6.0 - stylelint-config-html: 1.0.0_f552817e5b8b1b7dca381d844218922e - stylelint-config-recommended: 7.0.0_stylelint@14.6.0 + stylelint: 14.6.1 + stylelint-config-html: 1.0.0_50484b26a38601352aaf9ea7986ae8a8 + stylelint-config-recommended: 7.0.0_stylelint@14.6.1 dev: true - /stylelint-config-recommended/6.0.0_stylelint@14.6.0: + /stylelint-config-recommended/6.0.0_stylelint@14.6.1: resolution: {integrity: sha512-ZorSSdyMcxWpROYUvLEMm0vSZud2uB7tX1hzBZwvVY9SV/uly4AvvJPPhCcymZL3fcQhEQG5AELmrxWqtmzacw==} peerDependencies: stylelint: ^14.0.0 dependencies: - stylelint: 14.6.0 + stylelint: 14.6.1 dev: true - /stylelint-config-recommended/7.0.0_stylelint@14.6.0: + /stylelint-config-recommended/7.0.0_stylelint@14.6.1: resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==} peerDependencies: stylelint: ^14.4.0 dependencies: - stylelint: 14.6.0 + stylelint: 14.6.1 dev: true - /stylelint-config-standard-scss/3.0.0_stylelint@14.6.0: + /stylelint-config-standard-scss/3.0.0_stylelint@14.6.1: resolution: {integrity: sha512-zt3ZbzIbllN1iCmc94e4pDxqpkzeR6CJo5DDXzltshuXr+82B8ylHyMMARNnUYrZH80B7wgY7UkKTYCFM0UUyw==} peerDependencies: stylelint: ^14.0.0 dependencies: - stylelint: 14.6.0 - stylelint-config-recommended-scss: 5.0.2_stylelint@14.6.0 - stylelint-config-standard: 24.0.0_stylelint@14.6.0 + stylelint: 14.6.1 + stylelint-config-recommended-scss: 5.0.2_stylelint@14.6.1 + stylelint-config-standard: 24.0.0_stylelint@14.6.1 transitivePeerDependencies: - postcss dev: true - /stylelint-config-standard/24.0.0_stylelint@14.6.0: + /stylelint-config-standard/24.0.0_stylelint@14.6.1: resolution: {integrity: sha512-+RtU7fbNT+VlNbdXJvnjc3USNPZRiRVp/d2DxOF/vBDDTi0kH5RX2Ny6errdtZJH3boO+bmqIYEllEmok4jiuw==} peerDependencies: stylelint: ^14.0.0 dependencies: - stylelint: 14.6.0 - stylelint-config-recommended: 6.0.0_stylelint@14.6.0 + stylelint: 14.6.1 + stylelint-config-recommended: 6.0.0_stylelint@14.6.1 dev: true - /stylelint-config-standard/25.0.0_stylelint@14.6.0: + /stylelint-config-standard/25.0.0_stylelint@14.6.1: resolution: {integrity: sha512-21HnP3VSpaT1wFjFvv9VjvOGDtAviv47uTp3uFmzcN+3Lt+RYRv6oAplLaV51Kf792JSxJ6svCJh/G18E9VnCA==} peerDependencies: stylelint: ^14.4.0 dependencies: - stylelint: 14.6.0 - stylelint-config-recommended: 7.0.0_stylelint@14.6.0 + stylelint: 14.6.1 + stylelint-config-recommended: 7.0.0_stylelint@14.6.1 dev: true - /stylelint-scss/4.0.0_stylelint@14.6.0: + /stylelint-scss/4.0.0_stylelint@14.6.1: resolution: {integrity: sha512-lIRhPqtI6I065EJ6aI4mWKsmQt8Krnu6aF9XSL9s8Nd2f/cDKImST0T9TfjnUul3ReKYWozkG9dlpNTZH2FB9w==} peerDependencies: stylelint: ^14.0.0 @@ -17506,10 +17560,10 @@ packages: postcss-resolve-nested-selector: 0.1.1 postcss-selector-parser: 6.0.9 postcss-value-parser: 4.2.0 - stylelint: 14.6.0 + stylelint: 14.6.1 dev: true - /stylelint-webpack-plugin/2.3.1_stylelint@14.6.0: + /stylelint-webpack-plugin/2.3.1_stylelint@14.6.1: resolution: {integrity: sha512-IPNQ0MJpNfTK/eQbkaiktYVYPN0m2tS/p/yCRdVbHpaebtzmMbmvuLtM7B08Wb3nbTOKL8+g1uQul9HVdOKTJQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -17523,11 +17577,11 @@ packages: micromatch: 4.0.4 normalize-path: 3.0.0 schema-utils: 3.1.1 - stylelint: 14.6.0 + stylelint: 14.6.1 dev: true - /stylelint/14.6.0: - resolution: {integrity: sha512-Xk2sqXYPi9nXgq70nBiZkbQm/QOOKd83NBTaBE1fXEWAEeRlgHnKC/E7kJFlT6K0SaNDOK5yIvR7GFPGsNLuOg==} + /stylelint/14.6.1: + resolution: {integrity: sha512-FfNdvZUZdzh9KDQxDnO7Opp+prKh8OQVuSW8S13cBtxrooCbm6J6royhUeb++53WPMt04VB+ZbOz/QmzAijs6Q==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true dependencies: @@ -17535,7 +17589,7 @@ packages: colord: 2.9.2 cosmiconfig: 7.0.1 css-functions-list: 3.0.1 - debug: 4.3.3 + debug: 4.3.4 execall: 2.0.0 fast-glob: 3.2.11 fastest-levenshtein: 1.0.12 @@ -17552,7 +17606,7 @@ packages: known-css-properties: 0.24.0 mathml-tag-names: 2.1.3 meow: 9.0.0 - micromatch: 4.0.4 + micromatch: 4.0.5 normalize-path: 3.0.0 normalize-selector: 0.2.0 picocolors: 1.0.0 @@ -17560,7 +17614,7 @@ packages: postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 postcss-safe-parser: 6.0.0_postcss@8.4.12 - postcss-selector-parser: 6.0.9 + postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 specificity: 0.4.1 @@ -17634,8 +17688,8 @@ packages: has-flag: 4.0.0 dev: true - /supports-color/9.2.1: - resolution: {integrity: sha512-Obv7ycoCTG51N7y175StI9BlAXrmgZrFhZOb0/PyjHBher/NmsdBgbbQ1Inhq+gIhz6+7Gb+jWF2Vqi7Mf1xnQ==} + /supports-color/9.2.2: + resolution: {integrity: sha512-XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA==} engines: {node: '>=12'} dev: false @@ -17765,7 +17819,7 @@ packages: resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==} engines: {node: '>=10.0.0'} dependencies: - ajv: 8.10.0 + ajv: 8.11.0 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 @@ -17789,7 +17843,7 @@ packages: fs-minipass: 1.2.7 minipass: 2.9.0 minizlib: 1.3.3 - mkdirp: 0.5.5 + mkdirp: 0.5.6 safe-buffer: 5.2.1 yallist: 3.1.1 dev: true @@ -18087,28 +18141,28 @@ packages: engines: {node: '>=8'} dev: true - /ts-clone-node/0.3.30_typescript@4.6.2: + /ts-clone-node/0.3.30_typescript@4.6.3: resolution: {integrity: sha512-T9RLibxk0UBHelLUnSIZNyTxlPzcEk+KFFLXBUAG9YFJ3gPOYRrgD/RHnrlAxwEJ9Gq5S/iB8m3tcuTKtgf5Rw==} engines: {node: '>=10.0.0'} peerDependencies: typescript: ^3.x || ^4.x dependencies: - compatfactory: 0.0.12_typescript@4.6.2 - typescript: 4.6.2 + compatfactory: 0.0.12_typescript@4.6.3 + typescript: 4.6.3 dev: true /ts-interface-checker/0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-jest/27.1.3_60149d457e34ffba7d4e845dde6a1263: - resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==} + /ts-jest/27.1.4_9985e1834e803358b7be1e6ce5ca0eea: + resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' '@types/jest': ^27.0.0 babel-jest: '>=27.0.0 <28' - esbuild: ~0.14.0 + esbuild: '*' jest: ^27.0.0 typescript: '>=3.8 <5.0' peerDependenciesMeta: @@ -18126,23 +18180,23 @@ packages: fast-json-stable-stringify: 2.1.0 jest: 27.5.1 jest-util: 27.5.1 - json5: 2.2.0 + json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.5 - typescript: 4.6.2 + typescript: 4.6.3 yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.3_f7ed6b971a5360a14708ed7d94494e96: - resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==} + /ts-jest/27.1.4_e1df7840075a73eb70c3461b78455f05: + resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' '@types/jest': ^27.0.0 babel-jest: '>=27.0.0 <28' - esbuild: ~0.14.0 + esbuild: '*' jest: ^27.0.0 typescript: '>=3.8 <5.0' peerDependenciesMeta: @@ -18161,11 +18215,11 @@ packages: fast-json-stable-stringify: 2.1.0 jest: 27.5.1 jest-util: 27.5.1 - json5: 2.2.0 + json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.5 - typescript: 4.6.2 + typescript: 4.6.3 yargs-parser: 20.2.9 dev: true @@ -18188,7 +18242,7 @@ packages: resolution: {integrity: sha512-DEQrfv6l7IvN2jlzc/VTdZJYsWUnQNCsueYjMkC/iXoEoi5fNan6MjeDqkvhfzbmHgdz9UxDUluX3V5HdjTydQ==} dev: true - /ts-node/10.7.0_f01b7c141b75a45db67b7d9ae4c261df: + /ts-node/10.7.0_ee885bc7281b682b6adbed6ae09ee090: resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} hasBin: true peerDependencies: @@ -18207,7 +18261,7 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 17.0.21 + '@types/node': 17.0.23 acorn: 8.7.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -18219,7 +18273,7 @@ packages: yn: 3.1.1 dev: true - /ts-node/9.1.1_typescript@4.6.2: + /ts-node/9.1.1_typescript@4.6.3: resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} hasBin: true @@ -18231,10 +18285,10 @@ packages: diff: 4.0.2 make-error: 1.3.6 source-map-support: 0.5.21 - typescript: 4.6.2 + typescript: 4.6.3 yn: 3.1.1 - /ts-pnp/1.2.0_typescript@4.6.2: + /ts-pnp/1.2.0_typescript@4.6.3: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -18243,7 +18297,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.6.2 + typescript: 4.6.3 dev: false /tsconfig-paths/3.14.0: @@ -18270,8 +18324,8 @@ packages: /tslib/2.3.1: resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} - /tsup/5.12.1: - resolution: {integrity: sha512-vI7E4T6+6n5guQ9UKUOkQmzd1n4V9abGK71lbnzJMLJspbkNby5zlwWvgvHafLdYCb1WXpjFuqqmNLjBA0Wz3g==} + /tsup/5.12.4: + resolution: {integrity: sha512-uUraITfIj2h6rXAdeaVUYrZ2Is9joLFyEGZN5mGAke874JojCizb2MCUcE0wGdcERtyob5mbbFUKkMgal8SlFw==} hasBin: true peerDependencies: typescript: ^4.1.0 @@ -18279,27 +18333,28 @@ packages: typescript: optional: true dependencies: - bundle-require: 3.0.4_esbuild@0.14.26 + bundle-require: 3.0.4_esbuild@0.14.30 cac: 6.7.12 chokidar: 3.5.3 - debug: 4.3.3 - esbuild: 0.14.26 + debug: 4.3.4 + esbuild: 0.14.30 execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 3.1.3 + postcss-load-config: 3.1.4 resolve-from: 5.0.0 rollup: 2.70.1 source-map: 0.7.3 sucrase: 3.20.3 tree-kill: 1.2.2 transitivePeerDependencies: + - postcss - supports-color - ts-node dev: true - /tsup/5.12.1_typescript@4.6.2: - resolution: {integrity: sha512-vI7E4T6+6n5guQ9UKUOkQmzd1n4V9abGK71lbnzJMLJspbkNby5zlwWvgvHafLdYCb1WXpjFuqqmNLjBA0Wz3g==} + /tsup/5.12.4_typescript@4.6.3: + resolution: {integrity: sha512-uUraITfIj2h6rXAdeaVUYrZ2Is9joLFyEGZN5mGAke874JojCizb2MCUcE0wGdcERtyob5mbbFUKkMgal8SlFw==} hasBin: true peerDependencies: typescript: ^4.1.0 @@ -18307,44 +18362,15 @@ packages: typescript: optional: true dependencies: - bundle-require: 3.0.4_esbuild@0.14.26 + bundle-require: 3.0.4_esbuild@0.14.30 cac: 6.7.12 chokidar: 3.5.3 - debug: 4.3.3 - esbuild: 0.14.26 + debug: 4.3.4 + esbuild: 0.14.30 execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 3.1.3 - resolve-from: 5.0.0 - rollup: 2.70.1 - source-map: 0.7.3 - sucrase: 3.20.3 - tree-kill: 1.2.2 - typescript: 4.6.2 - transitivePeerDependencies: - - supports-color - - ts-node - dev: false - - /tsup/5.12.2_typescript@4.6.3: - resolution: {integrity: sha512-CZcM4UGYlKcdQzDIJbrwgpn4sQe8zobnHRgAF6C8RpMGvfRov9ipSQY3mjjnZRAkEZQO1+Jr3cxeaQJjY/iVTg==} - hasBin: true - peerDependencies: - typescript: ^4.1.0 - peerDependenciesMeta: - typescript: - optional: true - dependencies: - bundle-require: 3.0.4_esbuild@0.14.26 - cac: 6.7.12 - chokidar: 3.5.3 - debug: 4.3.3 - esbuild: 0.14.26 - execa: 5.1.1 - globby: 11.1.0 - joycon: 3.1.1 - postcss-load-config: 3.1.3 + postcss-load-config: 3.1.4 resolve-from: 5.0.0 rollup: 2.70.1 source-map: 0.7.3 @@ -18352,18 +18378,18 @@ packages: tree-kill: 1.2.2 typescript: 4.6.3 transitivePeerDependencies: + - postcss - supports-color - ts-node - dev: true - /tsutils/3.21.0_typescript@4.6.2: + /tsutils/3.21.0_typescript@4.6.3: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.6.2 + typescript: 4.6.3 dev: true /tty-browserify/0.0.0: @@ -18428,12 +18454,6 @@ packages: hasBin: true dev: true - /typescript/4.6.2: - resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - /typescript/4.6.3: resolution: {integrity: sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==} engines: {node: '>=4.2.0'} @@ -18455,13 +18475,8 @@ packages: resolution: {integrity: sha512-IT3q0lPvtkqQ8toHQN/BkOi4VIqoqheqM1FnkNWT9y0G8B3xJhwnoKBu5OHx8zHDOvveQzfKuFowJ0VSARiIDg==} dev: false - /ufo/0.7.9: - resolution: {integrity: sha512-6t9LrLk3FhqTS+GW3IqlITtfRB5JAVr5MMNjpBECfK827W+Vh5Ilw/LhTcHWrt6b3hkeBvcbjx4Ti7QVFzmcww==} - dev: false - - /ufo/0.8.1: - resolution: {integrity: sha512-1hqVxwcvBvzwwMRjR8pQEJ0CYOCGo49VF11caCe1hxKGiMGpL5ge/JiRX8ttf+YoIMomoEAim2SbD4jQ4tKbXw==} - dev: true + /ufo/0.8.3: + resolution: {integrity: sha512-AIkk06G21y/P+NCatfU+1qldCmI0XCszZLn8AkuKotffF3eqCvlce0KuwM7ZemLE/my0GSYADOAeM5zDYWMB+A==} /uglify-js/3.14.3: resolution: {integrity: sha512-mic3aOdiq01DuSVx0TseaEzMIVqebMZ0Z3vaeDhFEh9bsc24hV1TFvN74reA2vs08D0ZWfNjAcJ3UbVLaBss+g==} @@ -18482,13 +18497,13 @@ packages: engines: {node: '>=0.10.0'} dev: true - /unctx/1.1.3: - resolution: {integrity: sha512-x3sI4ueuHw05zQgbzfpzF9XO+zw0C7sPCPoTRIgVPAXr76HALqcV97cJDEa5Nj+WCAl7V2rgSZR/p4uM78gO2g==} + /unctx/1.1.4: + resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==} dependencies: acorn: 8.7.0 estree-walker: 2.0.2 magic-string: 0.26.1 - unplugin: 0.5.2 + unplugin: 0.6.1 transitivePeerDependencies: - esbuild - rollup @@ -18675,8 +18690,8 @@ packages: webpack-virtual-modules: 0.4.3 dev: true - /unplugin/0.5.2: - resolution: {integrity: sha512-3SPYtus/56cxyD4jfjrnqCvb6jPxvdqJNaRXnEaG2BhNEMaoygu/39AG+LwKmiIUzj4XHyitcfZ7scGlWfEigA==} + /unplugin/0.6.1: + resolution: {integrity: sha512-cQqRCgQ2v/Q4fPIWNVZ6sNIDdl5v8JXOnlsUOsGzT4fblTONoPWaytiYSpu5qJ9lvSDZYAQN6BRVo3XQoZMfUQ==} peerDependencies: esbuild: '>=0.13' rollup: ^2.50.0 @@ -18707,11 +18722,11 @@ packages: has-value: 0.3.1 isobject: 3.0.1 - /untyped/0.4.3: - resolution: {integrity: sha512-IFlE2be3vW69rLjdkmj5pa/JK/rAzbvFyJZfs+63QX/RN+jgx2CQUZckhTxNsV2H/JSXfc7NEqpX8tLoI2+eOg==} + /untyped/0.4.4: + resolution: {integrity: sha512-sY6u8RedwfLfBis0copfU/fzROieyAndqPs8Kn2PfyzTjtA88vCk81J1b5z+8/VJc+cwfGy23/AqOCpvAbkNVw==} dependencies: '@babel/core': 7.17.8 - '@babel/standalone': 7.17.7 + '@babel/standalone': 7.17.8 '@babel/types': 7.17.0 scule: 0.2.1 transitivePeerDependencies: @@ -18927,8 +18942,8 @@ packages: resolution: {integrity: sha512-vKl1skEKn8EK9f8P2ZzhRnuaRHLHrlt1sbRmazlvsx6EiC3A8oWF8YCBrMJzoN+W3OnElwIGbVjsx6/xelY1AA==} dev: false - /vue-demi/0.12.1_@vue+composition-api@1.4.9: - resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} + /vue-demi/0.12.5_@vue+composition-api@1.4.9: + resolution: {integrity: sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q==} engines: {node: '>=12'} hasBin: true requiresBuild: true @@ -18942,14 +18957,14 @@ packages: '@vue/composition-api': 1.4.9 dev: true - /vue-eslint-parser/8.3.0_eslint@8.11.0: + /vue-eslint-parser/8.3.0_eslint@8.12.0: resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.3 - eslint: 8.11.0 + eslint: 8.12.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 espree: 9.3.1 @@ -18974,8 +18989,8 @@ packages: resolution: {integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==} dev: false - /vue-i18n/8.26.7: - resolution: {integrity: sha512-7apa5PvRg1YCLoraE3lOgpCG8hJGupLCtywQWedWsgBbvF0TOgFvhitqK9xRH0PBGG1G8aiJz9oklyNDFfDxLg==} + /vue-i18n/8.27.1: + resolution: {integrity: sha512-lWrGm4F25qReJ7XxSnFVb2h3PfW54ldnM4C+YLBGGJ75+Myt/kj4hHSTKqsyDLamvNYpvINMicSOdW+7yuqgIQ==} dev: false /vue-jest/3.0.7_babel-core@7.0.0-bridge.0: @@ -19033,8 +19048,8 @@ packages: resolution: {integrity: sha512-ZMjqRpWabMPqPc7gIrG0Nw6vRf1+itwf0Itft7LbMXs2g3Zs/NFmevjZGN1x7K3Q95GmIjWbQZTVerxiBxI+0g==} dev: false - /vue-pdf-embed/1.1.0: - resolution: {integrity: sha512-lXfcx/wePLOZtNELdxrCjqnW6RtbgC/jfZAM9dydOEdnAjva+z8W577eiJL0qdpSD10oNAFhKoyDLFpam4N22g==} + /vue-pdf-embed/1.1.1: + resolution: {integrity: sha512-Ydbgiay/xIp0aW1mv62/JNkUlsk9dpbba+K03CKniIoos+N0URab+jEZW5RzJ0JbN6bplp+j+pAc78El1d8htw==} peerDependencies: vue: ^2.x || ^3.x dev: false @@ -19240,7 +19255,7 @@ packages: colorette: 1.4.0 mem: 8.1.1 memfs: 3.3.0 - mime-types: 2.1.34 + mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.1.1 webpack: 4.46.0 @@ -19334,7 +19349,7 @@ packages: resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} engines: {node: '>=0.8.0'} dependencies: - http-parser-js: 0.5.5 + http-parser-js: 0.5.6 safe-buffer: 5.2.1 websocket-extensions: 0.1.4 dev: false @@ -19407,7 +19422,7 @@ packages: /wide-align/1.1.5: resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: - string-width: 4.2.3 + string-width: 1.0.2 dev: false /widest-line/3.1.0: @@ -19686,11 +19701,11 @@ packages: /yargs-parser/20.2.4: resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} engines: {node: '>=10'} - dev: true /yargs-parser/20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} + dev: true /yargs-parser/21.0.1: resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} @@ -19733,7 +19748,7 @@ packages: require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 20.2.9 + yargs-parser: 20.2.4 /yargs/17.3.1: resolution: {integrity: sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==} @@ -19748,6 +19763,19 @@ packages: yargs-parser: 21.0.1 dev: true + /yargs/17.4.0: + resolution: {integrity: sha512-WJudfrk81yWFSOkZYpAZx4Nt7V4xp7S/uJkX0CnxovMCt1wCE8LNftPpNuF9X/u9gN5nsD7ycYtRcDf2pL3UiA==} + engines: {node: '>=12'} + dependencies: + cliui: 7.0.4 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.0.1 + dev: true + /yauzl/2.10.0: resolution: {integrity: sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=} dependencies: