diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cdf77df280..f428303682 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,13 +2,17 @@ name: CI -# Controls when the action will run. +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +# Controls when the action will run. on: # Triggers the workflow on push or pull request events but only for the main branch push: - branches: [ main, develop ] + branches: [main, develop] pull_request: - branches: [ main, develop ] + branches: [main, develop] create: tags: - v* @@ -25,6 +29,9 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Cache node modules uses: actions/cache@v3 env: @@ -34,8 +41,27 @@ jobs: key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }} + - name: Cache PR common + uses: actions/cache@v3 + with: + path: ./common/temp + key: ${{ runner.os }}-build-ref-${{ github.ref }} + restore-keys: | + ${{ runner.os }}-build-ref-${{ github.ref }} - - name: Cache build results + - name: Checking for mis-matching dependencies... + run: node common/scripts/install-run-rush.js check + + - name: Installing... + run: node common/scripts/install-run-rush.js install + + - name: Setting model version from git release... + run: node common/scripts/install-run-rush.js bump-model-version + + - name: Building... + run: node common/scripts/install-run-rush.js build + + - name: Cache build results for next jobs uses: actions/cache@v3 env: cache-name: cache-build-results @@ -56,24 +82,8 @@ jobs: tests rush.json .prettierrc - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} - restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} - # Checkout after restore cache - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Checking for mis-matching dependencies... - run: node common/scripts/install-run-rush.js check - - - name: Installing... - run: node common/scripts/install-run-rush.js install - - - name: Setting model version from git release... - run: node common/scripts/install-run-rush.js bump-model-version - - - name: Building... - run: node common/scripts/install-run-rush.js build -p 16 -l + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} + restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} svelte-check: needs: build runs-on: ubuntu-latest @@ -103,45 +113,11 @@ jobs: tests rush.json .prettierrc - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} - restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} + restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} - name: Checking svelte sources... run: node common/scripts/install-run-rush.js svelte-check - linting: - needs: build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Cache build results - uses: actions/cache@v3 - env: - cache-name: cache-build-results - with: - path: | - cloud - common - deploy - dev - models - packages - plugins - pods - products - server - server-plugins - templates - tests - rush.json - .prettierrc - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} - restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} - - - name: Linting... - run: node common/scripts/install-run-rush.js lint -p 16 formatting: needs: build runs-on: ubuntu-latest @@ -149,7 +125,6 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Cache build results uses: actions/cache@v3 env: @@ -171,11 +146,13 @@ jobs: tests rush.json .prettierrc - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} - restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} + restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} + - name: Install... + run: node common/scripts/install-run-rush.js install - name: Formatting... - run: node common/scripts/install-run-rush.js format -p 16 + run: node common/scripts/install-run-rush.js format - name: Check files formatting run: | echo '================================================================' @@ -183,7 +160,7 @@ jobs: echo '================================================================' git diff '*.ts' '*.svelte' | cat [ -z "$(git diff --name-only '*.ts' '*.svelte' | cat)" ] - echo '================================================================' + echo '================================================================' test: needs: build runs-on: ubuntu-latest @@ -213,8 +190,8 @@ jobs: tests rush.json .prettierrc - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} - restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} + restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} - name: Start MongoDB uses: supercharge/mongodb-github-action@1.7.0 @@ -259,8 +236,8 @@ jobs: tests rush.json .prettierrc - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} - restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} + restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} - name: Installing... run: node common/scripts/install-run-rush.js install @@ -288,7 +265,7 @@ jobs: path: ./tests/sanity/playwright-report/ docker-build: if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') }} - needs: [ build, uitest, test, linting, svelte-check ] + needs: [build, uitest, test, svelte-check] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -316,15 +293,15 @@ jobs: tests rush.json .prettierrc - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} - restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.ref }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} + restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} - name: Installing... run: node common/scripts/install-run-rush.js install - name: Setting model version from git release... run: node common/scripts/install-run-rush.js bump-model-version - name: Build, to include new model version - run: node common/scripts/install-run-rush.js build -p 16 + run: node common/scripts/install-run-rush.js build - name: Bundle run: node common/scripts/install-run-rush.js bundle - name: Docker build diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index cc8f0aec14..b0cd09d1a9 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -197,6 +197,7 @@ specifiers: '@types/express-fileupload': ^1.1.7 '@types/faker': ~5.5.9 '@types/heft-jest': ^1.0.2 + '@types/jest': ~28.1.0 '@types/koa': ^2.13.4 '@types/koa-bodyparser': ^4.3.3 '@types/koa-router': ^7.4.4 @@ -233,7 +234,6 @@ specifiers: eslint-plugin-import: ^2.25.3 eslint-plugin-node: ^11.1.0 eslint-plugin-promise: ^5.1.1 - eslint-plugin-svelte3: ~3.4.1 express: ^4.17.1 express-fileupload: ^1.2.1 faker: ~5.5.3 @@ -273,7 +273,7 @@ specifiers: tar-stream: ^2.2.0 toposort: ^2.0.2 ts-loader: ^9.2.5 - ts-node: ~10.5.0 + ts-node: ^10.8.0 typescript: ^4.3.5 uuid: ^8.3.2 webpack: ^5.32.0 @@ -287,116 +287,116 @@ dependencies: '@anticrm/skillset': 0.6.0 '@elastic/elasticsearch': 7.17.0 '@koa/cors': 3.3.0 - '@microsoft/api-extractor': 7.23.0 + '@microsoft/api-extractor': 7.24.2 '@playwright/test': 1.18.1 '@rush-temp/account': file:projects/account.tgz '@rush-temp/activity': file:projects/activity.tgz '@rush-temp/activity-assets': file:projects/activity-assets.tgz - '@rush-temp/activity-resources': file:projects/activity-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/activity-resources': file:projects/activity-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/attachment': file:projects/attachment.tgz - '@rush-temp/attachment-assets': file:projects/attachment-assets.tgz_typescript@4.6.4 - '@rush-temp/attachment-resources': file:projects/attachment-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/attachment-assets': file:projects/attachment-assets.tgz_typescript@4.7.2 + '@rush-temp/attachment-resources': file:projects/attachment-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/board': file:projects/board.tgz - '@rush-temp/board-assets': file:projects/board-assets.tgz_typescript@4.6.4 - '@rush-temp/board-resources': file:projects/board-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/board-assets': file:projects/board-assets.tgz_typescript@4.7.2 + '@rush-temp/board-resources': file:projects/board-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/calendar': file:projects/calendar.tgz - '@rush-temp/calendar-assets': file:projects/calendar-assets.tgz_typescript@4.6.4 - '@rush-temp/calendar-resources': file:projects/calendar-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/calendar-assets': file:projects/calendar-assets.tgz_typescript@4.7.2 + '@rush-temp/calendar-resources': file:projects/calendar-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/chunter': file:projects/chunter.tgz - '@rush-temp/chunter-assets': file:projects/chunter-assets.tgz_typescript@4.6.4 - '@rush-temp/chunter-resources': file:projects/chunter-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/chunter-assets': file:projects/chunter-assets.tgz_typescript@4.7.2 + '@rush-temp/chunter-resources': file:projects/chunter-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/client': file:projects/client.tgz - '@rush-temp/client-resources': file:projects/client-resources.tgz_bffe1cde49a25e50e21f81a4f51503ea + '@rush-temp/client-resources': file:projects/client-resources.tgz_c1788f0bf13b393830d6c30602bd01af '@rush-temp/contact': file:projects/contact.tgz - '@rush-temp/contact-assets': file:projects/contact-assets.tgz_typescript@4.6.4 - '@rush-temp/contact-resources': file:projects/contact-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/contact-assets': file:projects/contact-assets.tgz_typescript@4.7.2 + '@rush-temp/contact-resources': file:projects/contact-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/contrib': file:projects/contrib.tgz '@rush-temp/core': file:projects/core.tgz '@rush-temp/dev-account': file:projects/dev-account.tgz '@rush-temp/dev-client-resources': file:projects/dev-client-resources.tgz - '@rush-temp/dev-server': file:projects/dev-server.tgz_@types+node@16.11.33 + '@rush-temp/dev-server': file:projects/dev-server.tgz_@types+node@16.11.38 '@rush-temp/dev-storage': file:projects/dev-storage.tgz - '@rush-temp/devmodel': file:projects/devmodel.tgz_typescript@4.6.4 - '@rush-temp/devmodel-resources': file:projects/devmodel-resources.tgz_8aa3038c4a34f0944bc8ec8757e97eb6 - '@rush-temp/elastic': file:projects/elastic.tgz_@types+node@16.11.33 + '@rush-temp/devmodel': file:projects/devmodel.tgz_typescript@4.7.2 + '@rush-temp/devmodel-resources': file:projects/devmodel-resources.tgz_98a0b9c9098a3549e1ac525033e9d1f6 + '@rush-temp/elastic': file:projects/elastic.tgz_@types+node@16.11.38 '@rush-temp/front': file:projects/front.tgz '@rush-temp/generator': file:projects/generator.tgz '@rush-temp/gmail': file:projects/gmail.tgz '@rush-temp/gmail-assets': file:projects/gmail-assets.tgz - '@rush-temp/gmail-resources': file:projects/gmail-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/gmail-resources': file:projects/gmail-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/image-cropper': file:projects/image-cropper.tgz - '@rush-temp/image-cropper-resources': file:projects/image-cropper-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/image-cropper-resources': file:projects/image-cropper-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/inventory': file:projects/inventory.tgz '@rush-temp/inventory-assets': file:projects/inventory-assets.tgz - '@rush-temp/inventory-resources': file:projects/inventory-resources.tgz_3b42a51b6c974062237d417c554d9dd7 - '@rush-temp/kanban': file:projects/kanban.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/inventory-resources': file:projects/inventory-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c + '@rush-temp/kanban': file:projects/kanban.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/lead': file:projects/lead.tgz - '@rush-temp/lead-assets': file:projects/lead-assets.tgz_typescript@4.6.4 - '@rush-temp/lead-resources': file:projects/lead-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/lead-assets': file:projects/lead-assets.tgz_typescript@4.7.2 + '@rush-temp/lead-resources': file:projects/lead-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/login': file:projects/login.tgz - '@rush-temp/login-assets': file:projects/login-assets.tgz_typescript@4.6.4 - '@rush-temp/login-resources': file:projects/login-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/login-assets': file:projects/login-assets.tgz_typescript@4.7.2 + '@rush-temp/login-resources': file:projects/login-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/middleware': file:projects/middleware.tgz '@rush-temp/model': file:projects/model.tgz - '@rush-temp/model-activity': file:projects/model-activity.tgz_typescript@4.6.4 - '@rush-temp/model-all': file:projects/model-all.tgz_typescript@4.6.4 - '@rush-temp/model-attachment': file:projects/model-attachment.tgz_typescript@4.6.4 - '@rush-temp/model-board': file:projects/model-board.tgz_typescript@4.6.4 - '@rush-temp/model-calendar': file:projects/model-calendar.tgz_typescript@4.6.4 - '@rush-temp/model-chunter': file:projects/model-chunter.tgz_typescript@4.6.4 - '@rush-temp/model-contact': file:projects/model-contact.tgz_typescript@4.6.4 - '@rush-temp/model-core': file:projects/model-core.tgz_typescript@4.6.4 - '@rush-temp/model-demo': file:projects/model-demo.tgz_typescript@4.6.4 - '@rush-temp/model-gmail': file:projects/model-gmail.tgz_typescript@4.6.4 - '@rush-temp/model-inventory': file:projects/model-inventory.tgz_typescript@4.6.4 - '@rush-temp/model-lead': file:projects/model-lead.tgz_typescript@4.6.4 - '@rush-temp/model-notification': file:projects/model-notification.tgz_typescript@4.6.4 - '@rush-temp/model-preference': file:projects/model-preference.tgz_typescript@4.6.4 - '@rush-temp/model-presentation': file:projects/model-presentation.tgz_typescript@4.6.4 - '@rush-temp/model-recruit': file:projects/model-recruit.tgz_typescript@4.6.4 - '@rush-temp/model-rig': file:projects/model-rig.tgz_a7bf1e25e106178892e782f13bd35565 - '@rush-temp/model-server-attachment': file:projects/model-server-attachment.tgz_typescript@4.6.4 - '@rush-temp/model-server-board': file:projects/model-server-board.tgz_typescript@4.6.4 - '@rush-temp/model-server-calendar': file:projects/model-server-calendar.tgz_typescript@4.6.4 - '@rush-temp/model-server-chunter': file:projects/model-server-chunter.tgz_typescript@4.6.4 - '@rush-temp/model-server-contact': file:projects/model-server-contact.tgz_typescript@4.6.4 - '@rush-temp/model-server-core': file:projects/model-server-core.tgz_typescript@4.6.4 - '@rush-temp/model-server-gmail': file:projects/model-server-gmail.tgz_typescript@4.6.4 - '@rush-temp/model-server-inventory': file:projects/model-server-inventory.tgz_typescript@4.6.4 - '@rush-temp/model-server-lead': file:projects/model-server-lead.tgz_typescript@4.6.4 - '@rush-temp/model-server-notification': file:projects/model-server-notification.tgz_typescript@4.6.4 - '@rush-temp/model-server-recruit': file:projects/model-server-recruit.tgz_typescript@4.6.4 - '@rush-temp/model-server-setting': file:projects/model-server-setting.tgz_typescript@4.6.4 - '@rush-temp/model-server-tags': file:projects/model-server-tags.tgz_typescript@4.6.4 - '@rush-temp/model-server-task': file:projects/model-server-task.tgz_typescript@4.6.4 - '@rush-temp/model-server-telegram': file:projects/model-server-telegram.tgz_typescript@4.6.4 - '@rush-temp/model-setting': file:projects/model-setting.tgz_typescript@4.6.4 - '@rush-temp/model-tags': file:projects/model-tags.tgz_typescript@4.6.4 - '@rush-temp/model-task': file:projects/model-task.tgz_typescript@4.6.4 - '@rush-temp/model-telegram': file:projects/model-telegram.tgz_typescript@4.6.4 - '@rush-temp/model-templates': file:projects/model-templates.tgz_typescript@4.6.4 - '@rush-temp/model-text-editor': file:projects/model-text-editor.tgz_typescript@4.6.4 - '@rush-temp/model-tracker': file:projects/model-tracker.tgz_typescript@4.6.4 - '@rush-temp/model-view': file:projects/model-view.tgz_typescript@4.6.4 - '@rush-temp/model-workbench': file:projects/model-workbench.tgz_typescript@4.6.4 + '@rush-temp/model-activity': file:projects/model-activity.tgz_typescript@4.7.2 + '@rush-temp/model-all': file:projects/model-all.tgz_typescript@4.7.2 + '@rush-temp/model-attachment': file:projects/model-attachment.tgz_typescript@4.7.2 + '@rush-temp/model-board': file:projects/model-board.tgz_typescript@4.7.2 + '@rush-temp/model-calendar': file:projects/model-calendar.tgz_typescript@4.7.2 + '@rush-temp/model-chunter': file:projects/model-chunter.tgz_typescript@4.7.2 + '@rush-temp/model-contact': file:projects/model-contact.tgz_typescript@4.7.2 + '@rush-temp/model-core': file:projects/model-core.tgz_typescript@4.7.2 + '@rush-temp/model-demo': file:projects/model-demo.tgz_typescript@4.7.2 + '@rush-temp/model-gmail': file:projects/model-gmail.tgz_typescript@4.7.2 + '@rush-temp/model-inventory': file:projects/model-inventory.tgz_typescript@4.7.2 + '@rush-temp/model-lead': file:projects/model-lead.tgz_typescript@4.7.2 + '@rush-temp/model-notification': file:projects/model-notification.tgz_typescript@4.7.2 + '@rush-temp/model-preference': file:projects/model-preference.tgz_typescript@4.7.2 + '@rush-temp/model-presentation': file:projects/model-presentation.tgz_typescript@4.7.2 + '@rush-temp/model-recruit': file:projects/model-recruit.tgz_typescript@4.7.2 + '@rush-temp/model-rig': file:projects/model-rig.tgz_01063456e7929442b476df3d9fe00497 + '@rush-temp/model-server-attachment': file:projects/model-server-attachment.tgz_typescript@4.7.2 + '@rush-temp/model-server-board': file:projects/model-server-board.tgz_typescript@4.7.2 + '@rush-temp/model-server-calendar': file:projects/model-server-calendar.tgz_typescript@4.7.2 + '@rush-temp/model-server-chunter': file:projects/model-server-chunter.tgz_typescript@4.7.2 + '@rush-temp/model-server-contact': file:projects/model-server-contact.tgz_typescript@4.7.2 + '@rush-temp/model-server-core': file:projects/model-server-core.tgz_typescript@4.7.2 + '@rush-temp/model-server-gmail': file:projects/model-server-gmail.tgz_typescript@4.7.2 + '@rush-temp/model-server-inventory': file:projects/model-server-inventory.tgz_typescript@4.7.2 + '@rush-temp/model-server-lead': file:projects/model-server-lead.tgz_typescript@4.7.2 + '@rush-temp/model-server-notification': file:projects/model-server-notification.tgz_typescript@4.7.2 + '@rush-temp/model-server-recruit': file:projects/model-server-recruit.tgz_typescript@4.7.2 + '@rush-temp/model-server-setting': file:projects/model-server-setting.tgz_typescript@4.7.2 + '@rush-temp/model-server-tags': file:projects/model-server-tags.tgz_typescript@4.7.2 + '@rush-temp/model-server-task': file:projects/model-server-task.tgz_typescript@4.7.2 + '@rush-temp/model-server-telegram': file:projects/model-server-telegram.tgz_typescript@4.7.2 + '@rush-temp/model-setting': file:projects/model-setting.tgz_typescript@4.7.2 + '@rush-temp/model-tags': file:projects/model-tags.tgz_typescript@4.7.2 + '@rush-temp/model-task': file:projects/model-task.tgz_typescript@4.7.2 + '@rush-temp/model-telegram': file:projects/model-telegram.tgz_typescript@4.7.2 + '@rush-temp/model-templates': file:projects/model-templates.tgz_typescript@4.7.2 + '@rush-temp/model-text-editor': file:projects/model-text-editor.tgz_typescript@4.7.2 + '@rush-temp/model-tracker': file:projects/model-tracker.tgz_typescript@4.7.2 + '@rush-temp/model-view': file:projects/model-view.tgz_typescript@4.7.2 + '@rush-temp/model-workbench': file:projects/model-workbench.tgz_typescript@4.7.2 '@rush-temp/mongo': file:projects/mongo.tgz '@rush-temp/notification': file:projects/notification.tgz - '@rush-temp/notification-assets': file:projects/notification-assets.tgz_typescript@4.6.4 - '@rush-temp/notification-resources': file:projects/notification-resources.tgz_3b42a51b6c974062237d417c554d9dd7 - '@rush-temp/panel': file:projects/panel.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/notification-assets': file:projects/notification-assets.tgz_typescript@4.7.2 + '@rush-temp/notification-resources': file:projects/notification-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c + '@rush-temp/panel': file:projects/panel.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/platform': file:projects/platform.tgz - '@rush-temp/platform-rig': file:projects/platform-rig.tgz_6fa5d152813644f44d2852d983dc9002 + '@rush-temp/platform-rig': file:projects/platform-rig.tgz_29ca2220195d4cc51ab83d7e753528c2 '@rush-temp/pod-account': file:projects/pod-account.tgz '@rush-temp/pod-backup': file:projects/pod-backup.tgz '@rush-temp/preference': file:projects/preference.tgz '@rush-temp/preference-assets': file:projects/preference-assets.tgz - '@rush-temp/presentation': file:projects/presentation.tgz_3b42a51b6c974062237d417c554d9dd7 - '@rush-temp/prod': file:projects/prod.tgz_de7e4eae5aef826b485231087765ce17 - '@rush-temp/prod-tracker': file:projects/prod-tracker.tgz_de7e4eae5aef826b485231087765ce17 + '@rush-temp/presentation': file:projects/presentation.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c + '@rush-temp/prod': file:projects/prod.tgz_d1c3762ecb2c185353d3f02936f6ec22 + '@rush-temp/prod-tracker': file:projects/prod-tracker.tgz_d1c3762ecb2c185353d3f02936f6ec22 '@rush-temp/query': file:projects/query.tgz '@rush-temp/recruit': file:projects/recruit.tgz - '@rush-temp/recruit-assets': file:projects/recruit-assets.tgz_typescript@4.6.4 - '@rush-temp/recruit-resources': file:projects/recruit-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/recruit-assets': file:projects/recruit-assets.tgz_typescript@4.7.2 + '@rush-temp/recruit-resources': file:projects/recruit-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/rekoni': file:projects/rekoni.tgz_svelte@3.48.0 '@rush-temp/server': file:projects/server.tgz '@rush-temp/server-attachment': file:projects/server-attachment.tgz @@ -434,44 +434,44 @@ dependencies: '@rush-temp/server-tool': file:projects/server-tool.tgz '@rush-temp/server-ws': file:projects/server-ws.tgz '@rush-temp/setting': file:projects/setting.tgz - '@rush-temp/setting-assets': file:projects/setting-assets.tgz_typescript@4.6.4 - '@rush-temp/setting-resources': file:projects/setting-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/setting-assets': file:projects/setting-assets.tgz_typescript@4.7.2 + '@rush-temp/setting-resources': file:projects/setting-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/tags': file:projects/tags.tgz '@rush-temp/tags-assets': file:projects/tags-assets.tgz - '@rush-temp/tags-resources': file:projects/tags-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/tags-resources': file:projects/tags-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/task': file:projects/task.tgz - '@rush-temp/task-assets': file:projects/task-assets.tgz_typescript@4.6.4 - '@rush-temp/task-resources': file:projects/task-resources.tgz_8aa3038c4a34f0944bc8ec8757e97eb6 + '@rush-temp/task-assets': file:projects/task-assets.tgz_typescript@4.7.2 + '@rush-temp/task-resources': file:projects/task-resources.tgz_98a0b9c9098a3549e1ac525033e9d1f6 '@rush-temp/telegram': file:projects/telegram.tgz '@rush-temp/telegram-assets': file:projects/telegram-assets.tgz - '@rush-temp/telegram-resources': file:projects/telegram-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/telegram-resources': file:projects/telegram-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/templates': file:projects/templates.tgz '@rush-temp/templates-assets': file:projects/templates-assets.tgz - '@rush-temp/templates-resources': file:projects/templates-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/templates-resources': file:projects/templates-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/tests-sanity': file:projects/tests-sanity.tgz - '@rush-temp/text-editor': file:projects/text-editor.tgz_3b42a51b6c974062237d417c554d9dd7 - '@rush-temp/theme': file:projects/theme.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/text-editor': file:projects/text-editor.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c + '@rush-temp/theme': file:projects/theme.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/tool': file:projects/tool.tgz '@rush-temp/tracker': file:projects/tracker.tgz - '@rush-temp/tracker-assets': file:projects/tracker-assets.tgz_typescript@4.6.4 - '@rush-temp/tracker-resources': file:projects/tracker-resources.tgz_3b42a51b6c974062237d417c554d9dd7 - '@rush-temp/ui': file:projects/ui.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/tracker-assets': file:projects/tracker-assets.tgz_typescript@4.7.2 + '@rush-temp/tracker-resources': file:projects/tracker-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c + '@rush-temp/ui': file:projects/ui.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/view': file:projects/view.tgz - '@rush-temp/view-assets': file:projects/view-assets.tgz_typescript@4.6.4 - '@rush-temp/view-resources': file:projects/view-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/view-assets': file:projects/view-assets.tgz_typescript@4.7.2 + '@rush-temp/view-resources': file:projects/view-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rush-temp/workbench': file:projects/workbench.tgz '@rush-temp/workbench-assets': file:projects/workbench-assets.tgz - '@rush-temp/workbench-resources': file:projects/workbench-resources.tgz_3b42a51b6c974062237d417c554d9dd7 + '@rush-temp/workbench-resources': file:projects/workbench-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c '@rushstack/heft': 0.45.5 - '@rushstack/heft-jest-plugin': 0.3.5_9ca49deabaa00b4a98851018e661ecb9 - '@tiptap/core': 2.0.0-beta.175 - '@tiptap/extension-highlight': 2.0.0-beta.33_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-link': 2.0.0-beta.37_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-mention': 2.0.0-beta.96_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-placeholder': 2.0.0-beta.48_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-typography': 2.0.0-beta.20_@tiptap+core@2.0.0-beta.175 - '@tiptap/starter-kit': 2.0.0-beta.184 - '@tiptap/suggestion': 2.0.0-beta.91_@tiptap+core@2.0.0-beta.175 + '@rushstack/heft-jest-plugin': 0.3.5_04f3c65f6de4a5e5529a6fededa44e1d + '@tiptap/core': 2.0.0-beta.176 + '@tiptap/extension-highlight': 2.0.0-beta.33_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-link': 2.0.0-beta.38_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-mention': 2.0.0-beta.97_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-placeholder': 2.0.0-beta.48_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-typography': 2.0.0-beta.20_@tiptap+core@2.0.0-beta.176 + '@tiptap/starter-kit': 2.0.0-beta.185 + '@tiptap/suggestion': 2.0.0-beta.92_@tiptap+core@2.0.0-beta.176 '@types/body-parser': 1.19.2 '@types/compression': 1.7.2 '@types/cors': 2.8.12 @@ -480,13 +480,14 @@ dependencies: '@types/express-fileupload': 1.2.2 '@types/faker': 5.5.9 '@types/heft-jest': 1.0.2 + '@types/jest': 28.1.0 '@types/koa': 2.13.4 '@types/koa-bodyparser': 4.3.7 '@types/koa-router': 7.4.4 '@types/koa__cors': 3.3.0 '@types/mime-types': 2.1.1 '@types/minio': 7.0.13 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/pdfkit': 0.12.6 '@types/prosemirror-model': 1.16.2 '@types/request': 2.48.8 @@ -495,36 +496,35 @@ dependencies: '@types/uuid': 8.3.4 '@types/ws': 8.5.3 '@types/xml2js': 0.4.11 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 - autoprefixer: 10.4.7_postcss@8.4.13 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 + autoprefixer: 10.4.7_postcss@8.4.14 body-parser: 1.19.2 commander: 8.3.0 compression: 1.7.4 - compression-webpack-plugin: 9.0.1_webpack@5.72.0 + compression-webpack-plugin: 9.0.1_webpack@5.73.0 cors: 2.8.5 cropperjs: 1.5.12 cross-env: 7.0.3 - css-loader: 5.2.7_webpack@5.72.0 + css-loader: 5.2.7_webpack@5.73.0 deep-equal: 2.0.5 - dotenv: 16.0.0 - dotenv-webpack: 7.1.0_webpack@5.72.0 + dotenv: 16.0.1 + dotenv-webpack: 7.1.0_webpack@5.73.0 elastic-apm-node: 3.26.0 esbuild: 0.12.29 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 express: 4.18.1 - express-fileupload: 1.3.1 + express-fileupload: 1.4.0 faker: 5.5.3 fast-equals: 2.0.4 - file-loader: 6.2.0_webpack@5.72.0 + file-loader: 6.2.0_webpack@5.73.0 filesize: 8.0.7 got: 11.8.5 - html-webpack-plugin: 5.5.0_webpack@5.72.0 + html-webpack-plugin: 5.5.0_webpack@5.73.0 intl-messageformat: 9.13.0 jpeg-js: 0.4.3 jwt-simple: 0.5.6 @@ -533,37 +533,37 @@ dependencies: koa-router: 10.1.1 lexorank: 1.0.4 mime-types: 2.1.35 - mini-css-extract-plugin: 2.6.0_webpack@5.72.0 + mini-css-extract-plugin: 2.6.0_webpack@5.73.0 minio: 7.0.28 - mongodb: 4.5.0 + mongodb: 4.6.0 pdfkit: 0.13.0 - postcss: 8.4.13 - postcss-load-config: 3.1.4_postcss@8.4.13+ts-node@10.5.0 - postcss-loader: 6.2.1_postcss@8.4.13+webpack@5.72.0 + postcss: 8.4.14 + postcss-load-config: 3.1.4_postcss@8.4.14+ts-node@10.8.0 + postcss-loader: 6.2.1_postcss@8.4.14+webpack@5.73.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 prosemirror-model: 1.16.1 - sass: 1.51.0 - sass-loader: 12.6.0_sass@1.51.0+webpack@5.72.0 - simplytyped: 3.3.0_typescript@4.6.4 + sass: 1.52.2 + sass-loader: 12.6.0_sass@1.52.2+webpack@5.73.0 + simplytyped: 3.3.0_typescript@4.7.2 smartcrop: 2.0.5 - style-loader: 3.3.1_webpack@5.72.0 + style-loader: 3.3.1_webpack@5.73.0 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 svgo-loader: 3.0.0 tar-stream: 2.2.0 toposort: 2.0.2 - ts-loader: 9.3.0_typescript@4.6.4+webpack@5.72.0 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 + ts-loader: 9.3.0_typescript@4.7.2+webpack@5.73.0 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c + typescript: 4.7.2 uuid: 8.3.2 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 webpack-bundle-analyzer: 4.5.0 - webpack-cli: 4.9.2_a0d31263581cf2badb6e37c16bc9b287 - webpack-dev-server: 4.8.1_webpack-cli@4.9.2+webpack@5.72.0 - ws: 8.6.0 + webpack-cli: 4.9.2_2bff2f48c762780731ffbdff7d75fc65 + webpack-dev-server: 4.9.1_webpack-cli@4.9.2+webpack@5.73.0 + ws: 8.7.0 xml2js: 0.4.23 packages: @@ -573,7 +573,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.9 + '@jridgewell/trace-mapping': 0.3.13 dev: false /@anticrm/skillset/0.6.0: @@ -583,14 +583,14 @@ packages: /@babel/code-frame/7.12.11: resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} dependencies: - '@babel/highlight': 7.17.9 + '@babel/highlight': 7.17.12 dev: false /@babel/code-frame/7.16.7: resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.17.9 + '@babel/highlight': 7.17.12 dev: false /@babel/compat-data/7.17.10: @@ -598,20 +598,20 @@ packages: engines: {node: '>=6.9.0'} dev: false - /@babel/core/7.17.10: - resolution: {integrity: sha512-liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA==} + /@babel/core/7.18.2: + resolution: {integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.10 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 - '@babel/helper-module-transforms': 7.17.7 - '@babel/helpers': 7.17.9 - '@babel/parser': 7.17.10 + '@babel/generator': 7.18.2 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 + '@babel/helper-module-transforms': 7.18.0 + '@babel/helpers': 7.18.2 + '@babel/parser': 7.18.4 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -621,12 +621,12 @@ packages: - supports-color dev: false - /@babel/generator/7.17.10: - resolution: {integrity: sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==} + /@babel/generator/7.18.2: + resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 - '@jridgewell/gen-mapping': 0.1.1 + '@babel/types': 7.18.4 + '@jridgewell/gen-mapping': 0.3.1 jsesc: 2.5.2 dev: false @@ -634,45 +634,43 @@ packages: resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false - /@babel/helper-compilation-targets/7.17.10_@babel+core@7.17.10: - resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} + /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.2: + resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.17.10 + '@babel/core': 7.18.2 '@babel/helper-validator-option': 7.16.7 browserslist: 4.20.3 semver: 6.3.0 dev: false - /@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.17.10: - resolution: {integrity: sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==} + /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.2: + resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-replace-supers': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 transitivePeerDependencies: - supports-color dev: false - /@babel/helper-environment-visitor/7.16.7: - resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} + /@babel/helper-environment-visitor/7.18.2: + resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.10 dev: false /@babel/helper-function-name/7.17.9: @@ -680,42 +678,42 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false /@babel/helper-hoist-variables/7.16.7: resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false /@babel/helper-member-expression-to-functions/7.17.7: resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false /@babel/helper-module-imports/7.16.7: resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false - /@babel/helper-module-transforms/7.17.7: - resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==} + /@babel/helper-module-transforms/7.18.0: + resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-simple-access': 7.17.7 + '@babel/helper-simple-access': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 '@babel/helper-validator-identifier': 7.16.7 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: false @@ -724,46 +722,46 @@ packages: resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false - /@babel/helper-plugin-utils/7.16.7: - resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==} + /@babel/helper-plugin-utils/7.17.12: + resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==} engines: {node: '>=6.9.0'} dev: false - /@babel/helper-replace-supers/7.16.7: - resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} + /@babel/helper-replace-supers/7.18.2: + resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: false - /@babel/helper-simple-access/7.17.7: - resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==} + /@babel/helper-simple-access/7.18.2: + resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false /@babel/helper-skip-transparent-expression-wrappers/7.16.0: resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false /@babel/helper-split-export-declaration/7.16.7: resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false /@babel/helper-validator-identifier/7.16.7: @@ -776,19 +774,19 @@ packages: engines: {node: '>=6.9.0'} dev: false - /@babel/helpers/7.17.9: - resolution: {integrity: sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==} + /@babel/helpers/7.18.2: + resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: false - /@babel/highlight/7.17.9: - resolution: {integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==} + /@babel/highlight/7.17.12: + resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.16.7 @@ -796,332 +794,332 @@ packages: js-tokens: 4.0.0 dev: false - /@babel/parser/7.17.10: - resolution: {integrity: sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ==} + /@babel/parser/7.18.4: + resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false - /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} + /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/helper-plugin-utils': 7.17.12 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.10: + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.2 dev: false - /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} + /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.10 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.2 dev: false - /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==} + /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.10 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.2 dev: false - /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} + /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.10 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2 dev: false - /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.10: + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.10 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.2 dev: false - /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} + /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2 dev: false - /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.10: - resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==} + /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/helper-plugin-utils': 7.17.12 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==} + /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.10 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.2 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.10: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.2: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.10: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.2: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.10: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.2: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==} + /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.10: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.2: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.10: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.2: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.10: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.2: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.10: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.2: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-typescript/7.17.10_@babel+core@7.17.10: - resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} + /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-modules-commonjs/7.17.9_@babel+core@7.17.10: - resolution: {integrity: sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==} + /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.2: + resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-module-transforms': 7.17.7 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/helper-simple-access': 7.17.7 + '@babel/core': 7.18.2 + '@babel/helper-module-transforms': 7.18.0 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/helper-simple-access': 7.18.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.17.10: - resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==} + /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 - '@babel/types': 7.17.10 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.2 + '@babel/types': 7.18.4 dev: false - /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.10: - resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} + /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.2: + resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.17.10 + '@babel/core': 7.18.2 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.2 transitivePeerDependencies: - supports-color dev: false - /@babel/preset-typescript/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} + /@babel/preset-typescript/7.17.12_@babel+core@7.18.2: + resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.10 + '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.18.2 transitivePeerDependencies: - supports-color dev: false @@ -1131,30 +1129,30 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/parser': 7.18.4 + '@babel/types': 7.18.4 dev: false - /@babel/traverse/7.17.10: - resolution: {integrity: sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==} + /@babel/traverse/7.18.2: + resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.10 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/parser': 7.18.4 + '@babel/types': 7.18.4 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: false - /@babel/types/7.17.10: - resolution: {integrity: sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==} + /@babel/types/7.18.4: + resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.16.7 @@ -1165,16 +1163,11 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: false - /@cspotcode/source-map-consumer/0.8.0: - resolution: {integrity: sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==} - engines: {node: '>= 12'} - dev: false - - /@cspotcode/source-map-support/0.7.0: - resolution: {integrity: sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==} + /@cspotcode/source-map-support/0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} dependencies: - '@cspotcode/source-map-consumer': 0.8.0 + '@jridgewell/trace-mapping': 0.3.9 dev: false /@discoveryjs/json-ext/0.5.7: @@ -1215,7 +1208,7 @@ packages: ajv: 6.12.6 debug: 4.3.4 espree: 7.3.1 - globals: 13.13.0 + globals: 13.15.0 ignore: 4.0.6 import-fresh: 3.3.0 js-yaml: 3.14.1 @@ -1295,14 +1288,14 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 slash: 3.0.0 dev: false - /@jest/core/27.4.7_ts-node@10.5.0: + /@jest/core/27.4.7_ts-node@10.8.0: resolution: {integrity: sha512-n181PurSJkVMS+kClIFSX/LLvw9ExSb+4IMtD6YnfxZVerw9ANYtW0bPrm0MJu2pfe9SY9FJ9FtQ+MdZkrZwjg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -1314,24 +1307,24 @@ packages: '@jest/console': 27.5.1 '@jest/reporters': 27.4.6 '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 + '@jest/transform': 27.4.6 '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 27.5.1 - jest-config: 27.4.7_ts-node@10.5.0 + jest-config: 27.4.7_ts-node@10.8.0 jest-haste-map: 27.5.1 jest-message-util: 27.5.1 jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 + jest-resolve: 27.4.6 jest-resolve-dependencies: 27.5.1 jest-runner: 27.5.1 jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 + jest-snapshot: 27.4.6 jest-util: 27.5.1 jest-validate: 27.5.1 jest-watcher: 27.5.1 @@ -1353,7 +1346,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 jest-mock: 27.5.1 dev: false @@ -1363,7 +1356,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 16.11.33 + '@types/node': 16.11.38 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -1390,13 +1383,13 @@ packages: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 27.5.1 '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 + '@jest/transform': 27.4.6 '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 istanbul-lib-coverage: 3.2.0 istanbul-lib-instrument: 5.2.0 @@ -1404,7 +1397,7 @@ packages: istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.4 jest-haste-map: 27.5.1 - jest-resolve: 27.5.1 + jest-resolve: 27.4.6 jest-util: 27.5.1 jest-worker: 27.5.1 slash: 3.0.0 @@ -1451,7 +1444,7 @@ packages: resolution: {integrity: sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.2 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -1474,7 +1467,7 @@ packages: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.2 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -1499,7 +1492,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: false @@ -1508,29 +1501,52 @@ packages: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/set-array': 1.1.0 - '@jridgewell/sourcemap-codec': 1.4.12 + '@jridgewell/set-array': 1.1.1 + '@jridgewell/sourcemap-codec': 1.4.13 dev: false - /@jridgewell/resolve-uri/3.0.6: - resolution: {integrity: sha512-R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw==} + /@jridgewell/gen-mapping/0.3.1: + resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.1 + '@jridgewell/sourcemap-codec': 1.4.13 + '@jridgewell/trace-mapping': 0.3.13 + dev: false + + /@jridgewell/resolve-uri/3.0.7: + resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==} engines: {node: '>=6.0.0'} dev: false - /@jridgewell/set-array/1.1.0: - resolution: {integrity: sha512-SfJxIxNVYLTsKwzB3MoOQ1yxf4w/E6MdkvTgrgAt1bfxjSrLUoHMKrDOykwN14q65waezZIdqDneUIPh4/sKxg==} + /@jridgewell/set-array/1.1.1: + resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==} engines: {node: '>=6.0.0'} dev: false - /@jridgewell/sourcemap-codec/1.4.12: - resolution: {integrity: sha512-az/NhpIwP3K33ILr0T2bso+k2E/SLf8Yidd8mHl0n6sCQ4YdyC8qDhZA6kOPDNDBA56ZnIjngVl0U3jREA0BUA==} + /@jridgewell/source-map/0.3.2: + resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} + dependencies: + '@jridgewell/gen-mapping': 0.3.1 + '@jridgewell/trace-mapping': 0.3.13 + dev: false + + /@jridgewell/sourcemap-codec/1.4.13: + resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==} + dev: false + + /@jridgewell/trace-mapping/0.3.13: + resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==} + dependencies: + '@jridgewell/resolve-uri': 3.0.7 + '@jridgewell/sourcemap-codec': 1.4.13 dev: false /@jridgewell/trace-mapping/0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: - '@jridgewell/resolve-uri': 3.0.6 - '@jridgewell/sourcemap-codec': 1.4.12 + '@jridgewell/resolve-uri': 3.0.7 + '@jridgewell/sourcemap-codec': 1.4.13 dev: false /@koa/cors/3.3.0: @@ -1540,28 +1556,28 @@ packages: vary: 1.1.2 dev: false - /@leichtgewicht/ip-codec/2.0.3: - resolution: {integrity: sha512-nkalE/f1RvRGChwBnEIoBfSEYOXnCRdleKuv6+lePbMDrMZXeDQnqak5XDOeBgrPPyPfAdcCu/B5z+v3VhplGg==} + /@leichtgewicht/ip-codec/2.0.4: + resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} dev: false - /@microsoft/api-extractor-model/7.17.2: - resolution: {integrity: sha512-fYfCeBeLm7jnZligC64qHiH4/vzswFLDfyPpX+uKO36OI2kIeMHrYG0zaezmuinKvE4vg1dAz38zZeDbPvBKGg==} + /@microsoft/api-extractor-model/7.17.3: + resolution: {integrity: sha512-ETslFxVEZTEK6mrOARxM34Ll2W/5H2aTk9Pe9dxsMCnthE8O/CaStV4WZAGsvvZKyjelSWgPVYGowxGVnwOMlQ==} dependencies: '@microsoft/tsdoc': 0.14.1 '@microsoft/tsdoc-config': 0.16.1 - '@rushstack/node-core-library': 3.45.4 + '@rushstack/node-core-library': 3.45.5 dev: false - /@microsoft/api-extractor/7.23.0: - resolution: {integrity: sha512-fbdX05RVE1EMA7nvyRHuS9nx1pryhjgURDx6pQlE/9yOXQ5PO7MpYdfWGaRsQwyYuU3+tPxgro819c0R3AK6KA==} + /@microsoft/api-extractor/7.24.2: + resolution: {integrity: sha512-QWZh9aQZvBAdRVK+Go8NiW8YNMN//OGiNqgA3iZ2sEy8imUqkRBCybXgmw2HkEYyPnn55CFoMKvnAHvV9+4B/A==} hasBin: true dependencies: - '@microsoft/api-extractor-model': 7.17.2 + '@microsoft/api-extractor-model': 7.17.3 '@microsoft/tsdoc': 0.14.1 '@microsoft/tsdoc-config': 0.16.1 - '@rushstack/node-core-library': 3.45.4 + '@rushstack/node-core-library': 3.45.5 '@rushstack/rig-package': 0.3.11 - '@rushstack/ts-command-line': 4.10.10 + '@rushstack/ts-command-line': 4.11.0 colors: 1.2.5 lodash: 4.17.21 resolve: 1.17.0 @@ -1610,23 +1626,23 @@ packages: hasBin: true dependencies: '@babel/code-frame': 7.16.7 - '@babel/core': 7.17.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 - '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.17.10 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/core': 7.18.2 + '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.2 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 babel-plugin-module-resolver: 4.1.0 colors: 1.4.0 commander: 8.3.0 @@ -1666,18 +1682,18 @@ packages: jsonpath-plus: 4.0.0 dev: false - /@rushstack/heft-jest-plugin/0.3.5_9ca49deabaa00b4a98851018e661ecb9: + /@rushstack/heft-jest-plugin/0.3.5_04f3c65f6de4a5e5529a6fededa44e1d: resolution: {integrity: sha512-n64rwKqZ3TeZEV/VV7GNI6vZ37DXCaE0uICJIo2jRAJ4kAi1RixbCftVou/lm7Ndr6pX08Zvtvcp2nseRM7BQg==} peerDependencies: '@rushstack/heft': ^0.45.5 dependencies: - '@jest/core': 27.4.7_ts-node@10.5.0 + '@jest/core': 27.4.7_ts-node@10.8.0 '@jest/reporters': 27.4.6 '@jest/transform': 27.4.6 '@rushstack/heft': 0.45.5 '@rushstack/heft-config-file': 0.8.4 '@rushstack/node-core-library': 3.45.5 - jest-config: 27.4.7_ts-node@10.5.0 + jest-config: 27.4.7_ts-node@10.8.0 jest-resolve: 27.4.6 jest-snapshot: 27.4.6 lodash: 4.17.21 @@ -1711,20 +1727,6 @@ packages: true-case-path: 2.2.1 dev: false - /@rushstack/node-core-library/3.45.4: - resolution: {integrity: sha512-FMoEQWjK7nWAO2uFgV1eVpVhY9ZDGOdIIomi9zTej64cKJ+8/Nvu+ny0xKaUDEjw/ALftN2D2ml7L0RDpW/Z9g==} - dependencies: - '@types/node': 12.20.24 - colors: 1.2.5 - fs-extra: 7.0.1 - import-lazy: 4.0.0 - jju: 1.4.0 - resolve: 1.17.0 - semver: 7.3.7 - timsort: 0.3.0 - z-schema: 5.0.3 - dev: false - /@rushstack/node-core-library/3.45.5: resolution: {integrity: sha512-KbN7Hp9vH3bD3YJfv6RnVtzzTAwGYIBl7y2HQLY4WEQqRbvE3LgI78W9l9X+cTAXCX//p0EeoiUYNTFdqJrMZg==} dependencies: @@ -1746,15 +1748,6 @@ packages: strip-json-comments: 3.1.1 dev: false - /@rushstack/ts-command-line/4.10.10: - resolution: {integrity: sha512-F+MH7InPDXqX40qvvcEsnvPpmg566SBpfFqj2fcCh8RjM6AyOoWlXc8zx7giBD3ZN85NVAEjZAgrcLU0z+R2yg==} - dependencies: - '@types/argparse': 1.0.38 - argparse: 1.0.10 - colors: 1.2.5 - string-argv: 0.3.1 - dev: false - /@rushstack/ts-command-line/4.11.0: resolution: {integrity: sha512-ptG9L0mjvJ5QtK11GsAFY+jGfsnqHDS6CY6Yw1xT7a9bhjfNYnf6UPwjV+pF6UgiucfNcMDNW9lkDLxvZKKxMg==} dependencies: @@ -1781,6 +1774,12 @@ packages: '@sinonjs/commons': 1.8.3 dev: false + /@swc/helpers/0.3.17: + resolution: {integrity: sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==} + dependencies: + tslib: 2.4.0 + dev: false + /@szmarczak/http-timer/4.0.6: resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} engines: {node: '>=10'} @@ -1788,259 +1787,259 @@ packages: defer-to-connect: 2.0.1 dev: false - /@tiptap/core/2.0.0-beta.175: - resolution: {integrity: sha512-dDf+2GtifskNLysn49kaCIz0o5hf6VDZ8J7jSQAfoPDEkEkfw9OKhWrR7NzWW6J34CSJreFDRiWkGt8Qz283Vg==} + /@tiptap/core/2.0.0-beta.176: + resolution: {integrity: sha512-Gs/+yUYTNpt8PnclEHbfBnY56D/9PpKTyzrg8VZwCFK9S69aVD2dqLsYs/Gn+EjzKImXRAiqSe1/FWcNEDkmCg==} dependencies: '@types/prosemirror-commands': 1.0.4 '@types/prosemirror-keymap': 1.0.4 '@types/prosemirror-model': 1.16.2 '@types/prosemirror-schema-list': 1.0.3 '@types/prosemirror-state': 1.3.0 - '@types/prosemirror-transform': 1.4.0 - '@types/prosemirror-view': 1.23.2 - prosemirror-commands: 1.2.2 - prosemirror-keymap: 1.1.5 + '@types/prosemirror-transform': 1.4.2 + '@types/prosemirror-view': 1.23.3 + prosemirror-commands: 1.3.0 + prosemirror-keymap: 1.2.0 prosemirror-model: 1.16.1 - prosemirror-schema-list: 1.1.6 - prosemirror-state: 1.3.4 - prosemirror-transform: 1.4.2 - prosemirror-view: 1.23.13 + prosemirror-schema-list: 1.2.0 + prosemirror-state: 1.4.0 + prosemirror-transform: 1.6.0 + prosemirror-view: 1.25.0 dev: false - /@tiptap/extension-blockquote/2.0.0-beta.26_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-blockquote/2.0.0-beta.26_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-A6yjcYovONJfOjQFk6vDYXswaCdCtCwjL7w9VTB0R2DLTuJvvRt9DWN0IDcMrj5G+aMgDq4GUUTitv+2Y8krDg==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-bold/2.0.0-beta.26_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-bold/2.0.0-beta.26_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-pnO0I5sEQM3pmowjMGQ74adLzvc6HqGyLyqMizaGMicPu9uTYlSdId+qckYEEgPwPMaEShtv2Vg+ZHs7KVqfcg==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-bullet-list/2.0.0-beta.26_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-bullet-list/2.0.0-beta.26_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-1n5HV8gY1tLjPk4x48nva6SZlFHoPlRfF6pqSu9JcJxPO7FUSPxUokuz4swYNe0LRrtykfyNz44dUcxKVhoFow==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-code-block/2.0.0-beta.37_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-code-block/2.0.0-beta.37_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-mJAM+PHaNoKRYwM3D36lZ51/aoPxxvZNQn3UBnZ6G7l0ZJSgB3JvBEzqK6S8nNFeYIIxGwv4QF6vXe4MG9ie2g==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 - prosemirror-state: 1.3.4 + '@tiptap/core': 2.0.0-beta.176 + prosemirror-state: 1.4.0 dev: false - /@tiptap/extension-code/2.0.0-beta.26_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-code/2.0.0-beta.26_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-QcFWdEFfbJ1n5UFFBD17QPPAJ3J5p/b7XV484u0shCzywO7aNPV32QeHy1z0eMoyZtCbOWf6hg/a7Ugv8IwpHw==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-document/2.0.0-beta.15_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-document/2.0.0-beta.15_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-ypENC+xUYD5m2t+KOKNYqyXnanXd5fxyIyhR1qeEEwwQwMXGNrO3kCH6O4mIDCpy+/WqHvVay2tV5dVsXnvY8w==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-dropcursor/2.0.0-beta.25_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-dropcursor/2.0.0-beta.25_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-GYf5s6dkZtsDy+TEkrQK6kLbfbitG4qnk02D+FlhlJMI/Nnx8rYCRJbwEHDdqrfX7XwZzULMqqqHvzxZYrEeNg==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 '@types/prosemirror-dropcursor': 1.0.3 - prosemirror-dropcursor: 1.4.0 + prosemirror-dropcursor: 1.5.0 dev: false - /@tiptap/extension-gapcursor/2.0.0-beta.34_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-gapcursor/2.0.0-beta.34_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-Vm8vMWWQ2kJcUOLfB5CEo5pYgyudI7JeeiZvX9ScPmUmgKVYhEpt3EAICY9pUYJ41aAVH35gZLXkUtsz2f9GHw==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 '@types/prosemirror-gapcursor': 1.0.4 - prosemirror-gapcursor: 1.2.2 + prosemirror-gapcursor: 1.3.0 dev: false - /@tiptap/extension-hard-break/2.0.0-beta.30_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-hard-break/2.0.0-beta.30_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-X9xj/S+CikrbIE7ccUFVwit5QHEbflnKVxod+4zPwr1cxogFbE9AyLZE2MpYdx3z9LcnTYYi9leBqFrP4T/Olw==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-heading/2.0.0-beta.26_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-heading/2.0.0-beta.26_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-nR6W/3rjnZH1Swo7tGBoYsmO6xMvu9MGq6jlm3WVHCB7B3CsrRvCkTwGjVIbKTaZC4bQfx5gvAUpQFvwuU+M5w==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-highlight/2.0.0-beta.33_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-highlight/2.0.0-beta.33_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-TXyMiCcY5a0w5UFax350xU+T79GKJw2XwJ6Punc6sY2RRRgKaEbN1ZF0JCdQhQvD1ooKImHzCRYR8Pldb0xgfg==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-history/2.0.0-beta.21_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-history/2.0.0-beta.21_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-0v8Cl30V4dsabdpspLdk+f+lMoIvLFlJN5WRxtc7RRZ5gfJVxPHwooIKdvC51brfh/oJtWFCNMRjhoz0fRaF9A==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 '@types/prosemirror-history': 1.0.3 - prosemirror-history: 1.2.0 + prosemirror-history: 1.3.0 dev: false - /@tiptap/extension-horizontal-rule/2.0.0-beta.31_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-horizontal-rule/2.0.0-beta.31_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-MNc4retfjRgkv3qxqGya0+/BEd1Kmn+oMsCRvE+8x3sXyKIse+vdqMuG5qUcA6np0ZD/9hh1riiQ1GQdgc23Ng==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 - prosemirror-state: 1.3.4 + '@tiptap/core': 2.0.0-beta.176 + prosemirror-state: 1.4.0 dev: false - /@tiptap/extension-italic/2.0.0-beta.26_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-italic/2.0.0-beta.26_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-vejGe2ra4K5ipFOn1U9viqF9X9nPTX8WSJpSOux+9UbKjHpANy7bz69tp66OIi/Wh5L/MMDc+luH/04qfVnpZw==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-link/2.0.0-beta.37_@tiptap+core@2.0.0-beta.175: - resolution: {integrity: sha512-G5sM1a8Kjm1ZMro+BGsk+yApIDMl7RF/u1PY929HHld7JPsjgB+DZbbQ1U7e9Kxiu/9aDwgOa+w+SLqLiajedw==} + /@tiptap/extension-link/2.0.0-beta.38_@tiptap+core@2.0.0-beta.176: + resolution: {integrity: sha512-j+ygwq3cpDu5/8zPBcHyfgC5cuyO3jfV+2KcJw2I6Qi73y4Kwo3PW/leEYlSHkIt7i1zjyFHo/oDfC4K9x9eQg==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 linkifyjs: 3.0.5 prosemirror-model: 1.16.1 - prosemirror-state: 1.3.4 + prosemirror-state: 1.4.0 dev: false - /@tiptap/extension-list-item/2.0.0-beta.20_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-list-item/2.0.0-beta.20_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-5IPEspJt38t9ROj4xLUesOVEYlTT/R9Skd9meHRxJQZX1qrzBICs5PC/WRIsnexrvTBhdxpYgCYjpvpsJBlKuQ==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-mention/2.0.0-beta.96_@tiptap+core@2.0.0-beta.175: - resolution: {integrity: sha512-dBlf4maaDX+b03wLDO0dG77uQblUljtUO9NJj1B4O64bmDiKmac5garkpg70ZwTU/+ESiqdB2Aytbtj7TzMSOA==} + /@tiptap/extension-mention/2.0.0-beta.97_@tiptap+core@2.0.0-beta.176: + resolution: {integrity: sha512-XjcK9bdkFDutMlclwJA6e7Rl0hLOgz5gmye9zGwnJcHpkjiUE6GAG5wZcHifRbvb3uhoxFAlVoJjHQ99QS0dwA==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 - '@tiptap/suggestion': 2.0.0-beta.91_@tiptap+core@2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 + '@tiptap/suggestion': 2.0.0-beta.92_@tiptap+core@2.0.0-beta.176 prosemirror-model: 1.16.1 - prosemirror-state: 1.3.4 + prosemirror-state: 1.4.0 dev: false - /@tiptap/extension-ordered-list/2.0.0-beta.27_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-ordered-list/2.0.0-beta.27_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-apFDeignxdZb3cA3p1HJu0zw1JgJdBYUBz1r7f99qdNybYuk3I/1MPUvlOuOgvIrBB/wydoyVDP+v9F7QN3tfQ==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-paragraph/2.0.0-beta.23_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-paragraph/2.0.0-beta.23_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-VWAxyzecErYWk97Kv/Gkghh97zAQTcaVOisEnYYArZAlyYDaYM48qVssAC/vnRRynP2eQxb1EkppbAxE+bMHAA==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-placeholder/2.0.0-beta.48_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-placeholder/2.0.0-beta.48_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-TZNGAHocPoV5DtB8Q5BwQU2uf5vDiwLxbgVHRAIme9P4VsVqa/U1i1TkyN5A5BVdfOzc+E4EOU7cKuyjy7DNyA==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 prosemirror-model: 1.16.1 - prosemirror-state: 1.3.4 - prosemirror-view: 1.23.13 + prosemirror-state: 1.4.0 + prosemirror-view: 1.25.0 dev: false - /@tiptap/extension-strike/2.0.0-beta.27_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-strike/2.0.0-beta.27_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-2dmCgtesuDdivM/54Q+Y6Tc3JbGz1SkHP6c62piuqBiYLWg3xa16zChZOhfN8szbbQlBgLT6XRTDt3c2Ux+Dug==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-text/2.0.0-beta.15_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-text/2.0.0-beta.15_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-S3j2+HyV2gsXZP8Wg/HA+YVXQsZ3nrXgBM9HmGAxB0ESOO50l7LWfip0f3qcw1oRlh5H3iLPkA6/f7clD2/TFA==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/extension-typography/2.0.0-beta.20_@tiptap+core@2.0.0-beta.175: + /@tiptap/extension-typography/2.0.0-beta.20_@tiptap+core@2.0.0-beta.176: resolution: {integrity: sha512-rDgl5ssuM/UKTZHHN1QgF5lZTqNI/q7hxpsk7SZhGjuTSbo2mJ38shaKWEsLmofer/xE6+lWtYo8IVkuv998QA==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 dev: false - /@tiptap/starter-kit/2.0.0-beta.184: - resolution: {integrity: sha512-FgF94i5RQzXiGAIkaubnXEaYwJfiZRbMPZcmarwNo8IyqPnLT34Q1yjw/qZ3nv7rDehWV5l/zenbrrNtPYVCkA==} + /@tiptap/starter-kit/2.0.0-beta.185: + resolution: {integrity: sha512-UN7GfYpenav9osAhUYfUnYxtGOYxq6i+k/rDEil/LsFKiRgWW7LrddX6X99TW66dmKohNXU4PaCy5RJ7IfoMdg==} dependencies: - '@tiptap/core': 2.0.0-beta.175 - '@tiptap/extension-blockquote': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-bold': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-bullet-list': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-code': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-code-block': 2.0.0-beta.37_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-document': 2.0.0-beta.15_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-dropcursor': 2.0.0-beta.25_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-gapcursor': 2.0.0-beta.34_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-hard-break': 2.0.0-beta.30_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-heading': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-history': 2.0.0-beta.21_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-horizontal-rule': 2.0.0-beta.31_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-italic': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-list-item': 2.0.0-beta.20_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-ordered-list': 2.0.0-beta.27_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-paragraph': 2.0.0-beta.23_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-strike': 2.0.0-beta.27_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-text': 2.0.0-beta.15_@tiptap+core@2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 + '@tiptap/extension-blockquote': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-bold': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-bullet-list': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-code': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-code-block': 2.0.0-beta.37_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-document': 2.0.0-beta.15_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-dropcursor': 2.0.0-beta.25_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-gapcursor': 2.0.0-beta.34_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-hard-break': 2.0.0-beta.30_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-heading': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-history': 2.0.0-beta.21_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-horizontal-rule': 2.0.0-beta.31_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-italic': 2.0.0-beta.26_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-list-item': 2.0.0-beta.20_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-ordered-list': 2.0.0-beta.27_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-paragraph': 2.0.0-beta.23_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-strike': 2.0.0-beta.27_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-text': 2.0.0-beta.15_@tiptap+core@2.0.0-beta.176 dev: false - /@tiptap/suggestion/2.0.0-beta.91_@tiptap+core@2.0.0-beta.175: - resolution: {integrity: sha512-G3TGwEsDadDL9eqHBI6PI3wczneEQ/P3JFeAvsPuSLlAo4ub9hXjoQz5KWwblLIH1xEQ0TgCPzITsdiF/e3XdQ==} + /@tiptap/suggestion/2.0.0-beta.92_@tiptap+core@2.0.0-beta.176: + resolution: {integrity: sha512-pdGlGDuZID8pf0v1l2/AEITvtKIfnnKJt5aYjszc2Bs7lohGGVwUwXoyH+gJpIueVz7suGfvyNKzHFHGpGdPow==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 prosemirror-model: 1.16.1 - prosemirror-state: 1.3.4 - prosemirror-view: 1.23.13 + prosemirror-state: 1.4.0 + prosemirror-view: 1.25.0 dev: false /@tootallnate/once/1.1.2: @@ -2072,7 +2071,7 @@ packages: /@types/accepts/1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/argparse/1.0.38: @@ -2082,8 +2081,8 @@ packages: /@types/babel__core/7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/parser': 7.18.4 + '@babel/types': 7.18.4 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.17.1 @@ -2092,39 +2091,39 @@ packages: /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/parser': 7.18.4 + '@babel/types': 7.18.4 dev: false /@types/babel__traverse/7.17.1: resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: false /@types/body-parser/1.19.2: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/bonjour/3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/busboy/0.3.2: resolution: {integrity: sha512-iEvdm9Z9KdSs/ozuh1Z7ZsXrOl8F4M/CLMXPZHr3QuJ4d6Bjn+HBMC5EMKpwpAo8oi8iK9GZfFoHaIMrrZgwVw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/cacheable-request/6.0.2: @@ -2132,7 +2131,7 @@ packages: dependencies: '@types/http-cache-semantics': 4.0.1 '@types/keyv': 3.1.4 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/responselike': 1.0.0 dev: false @@ -2150,17 +2149,17 @@ packages: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: '@types/express-serve-static-core': 4.17.28 - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false - /@types/content-disposition/0.5.4: - resolution: {integrity: sha512-0mPF08jn9zYI0n0Q/Pnz7C4kThdSt+6LD4amsrYDDpgBfrVWa3TcCOxKX1zkGgYniGagRv8heN2cbh+CAn+uuQ==} + /@types/content-disposition/0.5.5: + resolution: {integrity: sha512-v6LCdKfK6BwcqMo+wYW05rLS12S0ZO0Fl4w1h4aaZMD7bqT3gVUns6FvLJKGZHQmYn3SX55JWGpziwJRwVgutA==} dev: false /@types/cookies/0.7.7: @@ -2169,7 +2168,7 @@ packages: '@types/connect': 3.4.35 '@types/express': 4.17.13 '@types/keygrip': 1.0.2 - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/cors/2.8.12: @@ -2208,7 +2207,7 @@ packages: /@types/express-serve-static-core/4.17.28: resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 dev: false @@ -2229,13 +2228,13 @@ packages: /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/heft-jest/1.0.2: resolution: {integrity: sha512-HabX0JO8Pk+a3gTm2DQwTMrfZjqP6VxDnn8kIXAP6uZbmy4bkKuFRi9T9BV9K6LhwHrmcgq5kk2YikYHy4LJeg==} dependencies: - '@types/jest': 27.5.0 + '@types/jest': 28.1.0 dev: false /@types/html-minifier-terser/6.1.0: @@ -2257,7 +2256,7 @@ packages: /@types/http-proxy/1.17.9: resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/istanbul-lib-coverage/2.0.4: @@ -2276,8 +2275,8 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: false - /@types/jest/27.5.0: - resolution: {integrity: sha512-9RBFx7r4k+msyj/arpfaa0WOOEcaAZNmN+j80KFbFCoSqCJGHTz7YMAMGQW9Xmqm5w6l5c25vbSjMwlikJi5+g==} + /@types/jest/28.1.0: + resolution: {integrity: sha512-ITfF6JJIl9zbEi2k6NmhNE/BiDqfsI/ceqfvdaWaPbcrCpYyyRq4KtDQIWh6vQUru6SqwppODiom/Zhid+np6A==} dependencies: jest-matcher-utils: 27.5.1 pretty-format: 27.5.1 @@ -2292,7 +2291,7 @@ packages: dev: false /@types/json5/0.0.29: - resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=} + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: false /@types/keygrip/1.0.2: @@ -2302,7 +2301,7 @@ packages: /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/koa-bodyparser/4.3.7: @@ -2327,13 +2326,13 @@ packages: resolution: {integrity: sha512-dfHYMfU+z/vKtQB7NUrthdAEiSvnLebvBjwHtfFmpZmB7em2N3WVQdHgnFq+xvyVgxW5jKDmjWfLD3lw4g4uTw==} dependencies: '@types/accepts': 1.3.5 - '@types/content-disposition': 0.5.4 + '@types/content-disposition': 0.5.5 '@types/cookies': 0.7.7 '@types/http-assert': 1.5.3 '@types/http-errors': 1.8.2 '@types/keygrip': 1.0.2 '@types/koa-compose': 3.2.5 - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/koa__cors/3.3.0: @@ -2353,15 +2352,15 @@ packages: /@types/minio/7.0.13: resolution: {integrity: sha512-Warrx6uN4KEpBCAWiTh7ngrPoaNIckawtBXqWbFzaatG/NPRZToAv/fa9yAPA7a2FHAGhe154KqaVIqacIn2pQ==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/node/12.20.24: resolution: {integrity: sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==} dev: false - /@types/node/16.11.33: - resolution: {integrity: sha512-0PJ0vg+JyU0MIan58IOIFRtSvsb7Ri+7Wltx2qAg94eMOrpg4+uuP3aUHCpxXc1i0jCXiC+zIamSZh3l9AbcQA==} + /@types/node/16.11.38: + resolution: {integrity: sha512-hjO/0K140An3GWDw2HJfq7gko3wWeznbjXgg+rzPdVzhe198hp4x2i1dgveAOEiFKd8sOilAxzoSJiVv5P/CUg==} dev: false /@types/normalize-package-data/2.4.1: @@ -2379,11 +2378,11 @@ packages: /@types/pdfkit/0.12.6: resolution: {integrity: sha512-G7X9Q5sJ2cwOBOR3NcfsjdS+rvYsv3xjiccLTvQ9jZ2A2yaC3jfMd1AfXALetR+QSjogRLurSUEn3TyVWCDvIw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false - /@types/prettier/2.6.0: - resolution: {integrity: sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw==} + /@types/prettier/2.6.3: + resolution: {integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==} dev: false /@types/prosemirror-commands/1.0.4: @@ -2391,7 +2390,7 @@ packages: dependencies: '@types/prosemirror-model': 1.16.2 '@types/prosemirror-state': 1.3.0 - '@types/prosemirror-view': 1.23.2 + '@types/prosemirror-view': 1.23.3 dev: false /@types/prosemirror-dropcursor/1.0.3: @@ -2420,7 +2419,7 @@ packages: '@types/prosemirror-commands': 1.0.4 '@types/prosemirror-model': 1.16.2 '@types/prosemirror-state': 1.3.0 - '@types/prosemirror-view': 1.23.2 + '@types/prosemirror-view': 1.23.3 dev: false /@types/prosemirror-model/1.16.2: @@ -2441,22 +2440,22 @@ packages: resolution: {integrity: sha512-nMdUF6w8B++NH4V54X+4GvDty7M02UfuHQW0s1AS25Z4ZrOW4RSY2+s57doXBbeMSjzYV/QoMxCY2sT3KQ2VdQ==} dependencies: '@types/prosemirror-model': 1.16.2 - '@types/prosemirror-transform': 1.4.0 - '@types/prosemirror-view': 1.23.2 + '@types/prosemirror-transform': 1.4.2 + '@types/prosemirror-view': 1.23.3 dev: false - /@types/prosemirror-transform/1.4.0: - resolution: {integrity: sha512-ntfuTl9nJWHvFykCmqJj4YQMws6G5H9nBaxHW0xRqfTxDxUvX2bCloqRN7bQTWg9h3VSP2lx45UuET1fn/oQ9Q==} + /@types/prosemirror-transform/1.4.2: + resolution: {integrity: sha512-FZNzjYm6YUkb1XXOrw2193TiFzwM92ui1nycNaRSd5JDbugf9yBLkXm4Rq3HGJJxBBkRcUE8niqUW5aWlXQQiQ==} dependencies: '@types/prosemirror-model': 1.16.2 dev: false - /@types/prosemirror-view/1.23.2: - resolution: {integrity: sha512-P/qlXsUAZeZVJQkIy6hzc1RBWbeQIN01jtUo686ou7O8RDXWVKpVYMa1soR8nfUfKE8QHvCjCVe+7u6V3C/1fw==} + /@types/prosemirror-view/1.23.3: + resolution: {integrity: sha512-T5dPDmZiXAazJVSvnx55D6h4mcpiH2q2wTyO9zIeOdox5zx964+zcDl9dFNaXG3qCGlERwMPckhBZL1HCxyygw==} dependencies: '@types/prosemirror-model': 1.16.2 '@types/prosemirror-state': 1.3.0 - '@types/prosemirror-transform': 1.4.0 + '@types/prosemirror-transform': 1.4.2 dev: false /@types/pug/2.0.6: @@ -2475,7 +2474,7 @@ packages: resolution: {integrity: sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==} dependencies: '@types/caseless': 0.12.2 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/tough-cookie': 4.0.2 form-data: 2.5.1 dev: false @@ -2483,7 +2482,7 @@ packages: /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/retry/0.12.0: @@ -2493,7 +2492,7 @@ packages: /@types/sass/1.43.1: resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/serve-index/1.9.1: @@ -2506,13 +2505,13 @@ packages: resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} dependencies: '@types/mime': 1.3.2 - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/sockjs/0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/stack-utils/2.0.1: @@ -2526,7 +2525,7 @@ packages: /@types/tar-stream/2.2.2: resolution: {integrity: sha512-1AX+Yt3icFuU6kxwmPakaiGrJUwG44MpuiqPg4dSolRFk6jmvs4b3IbUol9wKDLIgU76gevn3EwE8y/DkSJCZQ==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/toposort/2.0.3: @@ -2548,20 +2547,20 @@ packages: /@types/whatwg-url/8.2.1: resolution: {integrity: sha512-2YubE1sjj5ifxievI5Ge1sckb9k/Er66HyR2c+3+I6VDUUg1TLPdYYTEbQ+DjRkS4nTxMJhgWfSfMRD2sl2EYQ==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/webidl-conversions': 6.1.1 dev: false /@types/ws/8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/xml2js/0.4.11: resolution: {integrity: sha512-JdigeAKmCyoJUiQljjr7tQG3if9NkqGUgwEUqBvV0N7LM4HyQk7UXCnusRa1lnvXAEYJ8mw8GtZWioagNztOwA==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /@types/yargs-parser/21.0.0: @@ -2578,12 +2577,12 @@ packages: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false optional: true - /@typescript-eslint/eslint-plugin/5.22.0_27efc1da00e78084f5aa1809ff6483a1: - resolution: {integrity: sha512-YCiy5PUzpAeOPGQ7VSGDEY2NeYUV1B0swde2e0HzokRsHBYjSdF6DZ51OuRZxVPHx0032lXGLvOMls91D8FXlg==} + /@typescript-eslint/eslint-plugin/5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5: + resolution: {integrity: sha512-DDrIA7GXtmHXr1VCcx9HivA39eprYBIFxbQEHI6NyraRDxCGpxAFiYQAT/1Y0vh1C+o2vfBiy4IuPoXxtTZCAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -2593,23 +2592,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 - '@typescript-eslint/scope-manager': 5.22.0 - '@typescript-eslint/type-utils': 5.22.0_eslint@7.32.0+typescript@4.6.4 - '@typescript-eslint/utils': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 + '@typescript-eslint/scope-manager': 5.27.0 + '@typescript-eslint/type-utils': 5.27.0_eslint@7.32.0+typescript@4.7.2 + '@typescript-eslint/utils': 5.27.0_eslint@7.32.0+typescript@4.7.2 debug: 4.3.4 eslint: 7.32.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.6.4 - typescript: 4.6.4 + tsutils: 3.21.0_typescript@4.7.2 + typescript: 4.7.2 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/parser/4.33.0_eslint@7.32.0+typescript@4.6.4: + /@typescript-eslint/parser/4.33.0_eslint@7.32.0+typescript@4.7.2: resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -2621,16 +2620,16 @@ packages: dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.6.4 + '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.7.2 debug: 4.3.4 eslint: 7.32.0 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/parser/5.22.0_eslint@7.32.0+typescript@4.6.4: - resolution: {integrity: sha512-piwC4krUpRDqPaPbFaycN70KCP87+PC5WZmrWs+DlVOxxmF+zI6b6hETv7Quy4s9wbkV16ikMeZgXsvzwI3icQ==} + /@typescript-eslint/parser/5.27.0_eslint@7.32.0+typescript@4.7.2: + resolution: {integrity: sha512-8oGjQF46c52l7fMiPPvX4It3u3V3JipssqDfHQ2hcR0AeR8Zge+OYyKUCm5b70X72N1qXt0qgHenwN6Gc2SXZA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -2639,12 +2638,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.22.0 - '@typescript-eslint/types': 5.22.0 - '@typescript-eslint/typescript-estree': 5.22.0_typescript@4.6.4 + '@typescript-eslint/scope-manager': 5.27.0 + '@typescript-eslint/types': 5.27.0 + '@typescript-eslint/typescript-estree': 5.27.0_typescript@4.7.2 debug: 4.3.4 eslint: 7.32.0 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - supports-color dev: false @@ -2657,16 +2656,16 @@ packages: '@typescript-eslint/visitor-keys': 4.33.0 dev: false - /@typescript-eslint/scope-manager/5.22.0: - resolution: {integrity: sha512-yA9G5NJgV5esANJCO0oF15MkBO20mIskbZ8ijfmlKIvQKg0ynVKfHZ15/nhAJN5m8Jn3X5qkwriQCiUntC9AbA==} + /@typescript-eslint/scope-manager/5.27.0: + resolution: {integrity: sha512-VnykheBQ/sHd1Vt0LJ1JLrMH1GzHO+SzX6VTXuStISIsvRiurue/eRkTqSrG0CexHQgKG8shyJfR4o5VYioB9g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.22.0 - '@typescript-eslint/visitor-keys': 5.22.0 + '@typescript-eslint/types': 5.27.0 + '@typescript-eslint/visitor-keys': 5.27.0 dev: false - /@typescript-eslint/type-utils/5.22.0_eslint@7.32.0+typescript@4.6.4: - resolution: {integrity: sha512-iqfLZIsZhK2OEJ4cQ01xOq3NaCuG5FQRKyHicA3xhZxMgaxQazLUHbH/B2k9y5i7l3+o+B5ND9Mf1AWETeMISA==} + /@typescript-eslint/type-utils/5.27.0_eslint@7.32.0+typescript@4.7.2: + resolution: {integrity: sha512-vpTvRRchaf628Hb/Xzfek+85o//zEUotr1SmexKvTfs7czXfYjXVT/a5yDbpzLBX1rhbqxjDdr1Gyo0x1Fc64g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2675,11 +2674,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/utils': 5.27.0_eslint@7.32.0+typescript@4.7.2 debug: 4.3.4 eslint: 7.32.0 - tsutils: 3.21.0_typescript@4.6.4 - typescript: 4.6.4 + tsutils: 3.21.0_typescript@4.7.2 + typescript: 4.7.2 transitivePeerDependencies: - supports-color dev: false @@ -2689,12 +2688,12 @@ packages: engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: false - /@typescript-eslint/types/5.22.0: - resolution: {integrity: sha512-T7owcXW4l0v7NTijmjGWwWf/1JqdlWiBzPqzAWhobxft0SiEvMJB56QXmeCQjrPuM8zEfGUKyPQr/L8+cFUBLw==} + /@typescript-eslint/types/5.27.0: + resolution: {integrity: sha512-lY6C7oGm9a/GWhmUDOs3xAVRz4ty/XKlQ2fOLr8GAIryGn0+UBOoJDWyHer3UgrHkenorwvBnphhP+zPmzmw0A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: false - /@typescript-eslint/typescript-estree/4.33.0_typescript@4.6.4: + /@typescript-eslint/typescript-estree/4.33.0_typescript@4.7.2: resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -2709,14 +2708,14 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.6.4 - typescript: 4.6.4 + tsutils: 3.21.0_typescript@4.7.2 + typescript: 4.7.2 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/typescript-estree/5.22.0_typescript@4.6.4: - resolution: {integrity: sha512-EyBEQxvNjg80yinGE2xdhpDYm41so/1kOItl0qrjIiJ1kX/L/L8WWGmJg8ni6eG3DwqmOzDqOhe6763bF92nOw==} + /@typescript-eslint/typescript-estree/5.27.0_typescript@4.7.2: + resolution: {integrity: sha512-QywPMFvgZ+MHSLRofLI7BDL+UczFFHyj0vF5ibeChDAJgdTV8k4xgEwF0geFhVlPc1p8r70eYewzpo6ps+9LJQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -2724,28 +2723,28 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.22.0 - '@typescript-eslint/visitor-keys': 5.22.0 + '@typescript-eslint/types': 5.27.0 + '@typescript-eslint/visitor-keys': 5.27.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.6.4 - typescript: 4.6.4 + tsutils: 3.21.0_typescript@4.7.2 + typescript: 4.7.2 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/utils/5.22.0_eslint@7.32.0+typescript@4.6.4: - resolution: {integrity: sha512-HodsGb037iobrWSUMS7QH6Hl1kppikjA1ELiJlNSTYf/UdMEwzgj0WIp+lBNb6WZ3zTwb0tEz51j0Wee3iJ3wQ==} + /@typescript-eslint/utils/5.27.0_eslint@7.32.0+typescript@4.7.2: + resolution: {integrity: sha512-nZvCrkIJppym7cIbP3pOwIkAefXOmfGPnCM0LQfzNaKxJHI6VjI8NC662uoiPlaf5f6ymkTy9C3NQXev2mdXmA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 - '@typescript-eslint/scope-manager': 5.22.0 - '@typescript-eslint/types': 5.22.0 - '@typescript-eslint/typescript-estree': 5.22.0_typescript@4.6.4 + '@typescript-eslint/scope-manager': 5.27.0 + '@typescript-eslint/types': 5.27.0 + '@typescript-eslint/typescript-estree': 5.27.0_typescript@4.7.2 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@7.32.0 @@ -2762,11 +2761,11 @@ packages: eslint-visitor-keys: 2.1.0 dev: false - /@typescript-eslint/visitor-keys/5.22.0: - resolution: {integrity: sha512-DbgTqn2Dv5RFWluG88tn0pP6Ex0ROF+dpDO1TNNZdRtLjUr6bdznjA6f/qNqJLjd2PgguAES2Zgxh/JzwzETDg==} + /@typescript-eslint/visitor-keys/5.27.0: + resolution: {integrity: sha512-46cYrteA2MrIAjv9ai44OQDUoCZyHeGIc4lsjCUX2WT6r4C+kidz1bNiR4017wHOPUythYeH+Sc7/cFP97KEAA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.22.0 + '@typescript-eslint/types': 5.27.0 eslint-visitor-keys: 3.3.0 dev: false @@ -2876,14 +2875,14 @@ packages: '@xtuc/long': 4.2.2 dev: false - /@webpack-cli/configtest/1.1.1_webpack-cli@4.9.2+webpack@5.72.0: + /@webpack-cli/configtest/1.1.1_webpack-cli@4.9.2+webpack@5.73.0: resolution: {integrity: sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==} peerDependencies: webpack: 4.x.x || 5.x.x webpack-cli: 4.x.x dependencies: - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 - webpack-cli: 4.9.2_a0d31263581cf2badb6e37c16bc9b287 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 + webpack-cli: 4.9.2_2bff2f48c762780731ffbdff7d75fc65 dev: false /@webpack-cli/info/1.4.1_webpack-cli@4.9.2: @@ -2892,10 +2891,10 @@ packages: webpack-cli: 4.x.x dependencies: envinfo: 7.8.1 - webpack-cli: 4.9.2_a0d31263581cf2badb6e37c16bc9b287 + webpack-cli: 4.9.2_2bff2f48c762780731ffbdff7d75fc65 dev: false - /@webpack-cli/serve/1.6.1_8b27d5839a2bdf89ba2338e4c89fea10: + /@webpack-cli/serve/1.6.1_b461ff3bae581dd5015735efcda10b9d: resolution: {integrity: sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==} peerDependencies: webpack-cli: 4.x.x @@ -2904,8 +2903,8 @@ packages: webpack-dev-server: optional: true dependencies: - webpack-cli: 4.9.2_a0d31263581cf2badb6e37c16bc9b287 - webpack-dev-server: 4.8.1_webpack-cli@4.9.2+webpack@5.72.0 + webpack-cli: 4.9.2_2bff2f48c762780731ffbdff7d75fc65 + webpack-dev-server: 4.9.1_webpack-cli@4.9.2+webpack@5.73.0 dev: false /@xtuc/ieee754/1.2.0: @@ -2957,14 +2956,6 @@ packages: acorn: 7.4.1 dev: false - /acorn-node/1.8.2: - resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} - dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 - xtend: 4.0.2 - dev: false - /acorn-walk/7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} engines: {node: '>=0.4.0'} @@ -2988,7 +2979,7 @@ packages: dev: false /after-all-results/2.0.0: - resolution: {integrity: sha1-asL8ICtQD4jaj09VMM+hAPTGotA=} + resolution: {integrity: sha512-2zHEyuhSJOuCrmas9YV0YL/MFCWLxe1dS6k/ENhgYrb/JqyMnadLN4iIAc9kkZrbElMDyyAGH/0J18OPErOWLg==} dev: false /agent-base/6.0.2: @@ -3044,14 +3035,8 @@ packages: uri-js: 4.4.1 dev: false - /amdefine/1.0.1: - resolution: {integrity: sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=} - engines: {node: '>=0.4.2'} - dev: false - optional: true - - /ansi-colors/4.1.1: - resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} + /ansi-colors/4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} dev: false @@ -3118,17 +3103,13 @@ packages: resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} dev: false - /array-from/2.1.1: - resolution: {integrity: sha1-z+nYwmYoudxa7MYqn12PHzUsEZU=} - dev: false - /array-includes/3.1.5: resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.19.5 + es-abstract: 1.20.1 get-intrinsic: 1.1.1 is-string: 1.0.7 dev: false @@ -3144,7 +3125,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.19.5 + es-abstract: 1.20.1 es-shim-unscopables: 1.0.0 dev: false @@ -3157,37 +3138,13 @@ packages: safer-buffer: 2.1.2 dev: false - /asn1/0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} - dependencies: - safer-buffer: 2.1.2 - dev: false - - /assert-plus/1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} - dev: false - - /ast-transform/0.0.0: - resolution: {integrity: sha1-dJRAWIh9goPhidlUYAlHvJj+AGI=} - dependencies: - escodegen: 1.2.0 - esprima: 1.0.4 - through: 2.3.8 - dev: false - - /ast-types/0.7.8: - resolution: {integrity: sha1-kC0uDWDQcb3NRtwRXhgJ7RHBOKk=} - engines: {node: '>= 0.6'} - dev: false - /astral-regex/2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} dev: false /async-cache/1.1.0: - resolution: {integrity: sha1-SppaidBl7F2OUlS9nulrp2xTK1o=} + resolution: {integrity: sha512-YDQc4vBn5NFhY6g6HhVshyi3Fy9+SQ5ePnE7JLDJn1DoL+i7ER+vMwtTNOYk9leZkYMnOwpBCWqyLDPw8Aig8g==} deprecated: No longer maintained. Use [lru-cache](http://npm.im/lru-cache) version 7.6 or higher, and provide an asynchronous `fetchMethod` option. dependencies: lru-cache: 4.1.5 @@ -3200,13 +3157,7 @@ packages: dev: false /async-value/1.2.2: - resolution: {integrity: sha1-hFF6Hny2saW14YH6Mb4QQ3t/sSU=} - dev: false - - /async/2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} - dependencies: - lodash: 4.17.21 + resolution: {integrity: sha512-8rwtYe32OAS1W9CTwvknoyts+mc3ta8N7Pi0h7AjkMaKvsFbr39K+gEfZ7Z81aPXQ1sK5M23lgLy1QfZpcpadQ==} dev: false /async/3.2.3: @@ -3214,7 +3165,7 @@ packages: dev: false /asynckit/0.4.0: - resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=} + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} dev: false /atomic-sleep/1.0.0: @@ -3222,7 +3173,7 @@ packages: engines: {node: '>=8.0.0'} dev: false - /autoprefixer/10.4.7_postcss@8.4.13: + /autoprefixer/10.4.7_postcss@8.4.14: resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -3230,11 +3181,11 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.20.3 - caniuse-lite: 1.0.30001335 + caniuse-lite: 1.0.30001346 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.13 + postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: false @@ -3243,26 +3194,18 @@ packages: engines: {node: '>= 0.4'} dev: false - /aws-sign2/0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} - dev: false - - /aws4/1.11.0: - resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==} - dev: false - - /babel-jest/27.5.1_@babel+core@7.17.10: + /babel-jest/27.5.1_@babel+core@7.18.2: resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.2 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1_@babel+core@7.17.10 + babel-preset-jest: 27.5.1_@babel+core@7.18.2 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -3280,7 +3223,7 @@ packages: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.0 @@ -3294,7 +3237,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@babel/template': 7.16.7 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: false @@ -3304,48 +3247,41 @@ packages: engines: {node: '>= 8.0.0'} dependencies: find-babel-config: 1.2.0 - glob: 7.2.0 + glob: 7.2.3 pkg-up: 3.1.0 reselect: 4.1.5 resolve: 1.22.0 dev: false - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.17.10: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.2: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.10 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.10 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.10 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.10 + '@babel/core': 7.18.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.2 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.2 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.2 dev: false - /babel-preset-jest/27.5.1_@babel+core@7.17.10: + /babel-preset-jest/27.5.1_@babel+core@7.18.2: resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.2 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.10 - dev: false - - /babel-runtime/6.26.0: - resolution: {integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=} - dependencies: - core-js: 2.6.12 - regenerator-runtime: 0.11.1 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.2 dev: false /balanced-match/1.0.2: @@ -3353,7 +3289,7 @@ packages: dev: false /base64-js/0.0.8: - resolution: {integrity: sha1-EQHpVE9KdrG8OybUUsqW16NeeXg=} + resolution: {integrity: sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==} engines: {node: '>= 0.4'} dev: false @@ -3372,12 +3308,6 @@ packages: resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=} dev: false - /bcrypt-pbkdf/1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} - dependencies: - tweetnacl: 0.14.5 - dev: false - /big.js/5.2.2: resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} dev: false @@ -3409,8 +3339,8 @@ packages: resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} dev: false - /bn.js/5.2.0: - resolution: {integrity: sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==} + /bn.js/5.2.1: + resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} dev: false /body-parser/1.19.2: @@ -3457,11 +3387,11 @@ packages: array-flatten: 2.1.2 dns-equal: 1.0.0 fast-deep-equal: 3.1.3 - multicast-dns: 7.2.4 + multicast-dns: 7.2.5 dev: false /boolbase/1.0.0: - resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=} + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} dev: false /brace-expansion/1.1.11: @@ -3484,22 +3414,12 @@ packages: object.entries: 1.1.5 dev: false - /brfs/2.0.2: - resolution: {integrity: sha512-IrFjVtwu4eTJZyu8w/V2gxU7iLTtcHih67sgEdzrhjLBMHp2uYefUBfdM4k2UvcuWMgV7PQDZHSLeNWnLFKWVQ==} - hasBin: true - dependencies: - quote-stream: 1.0.2 - resolve: 1.22.0 - static-module: 3.0.4 - through2: 2.0.5 - dev: false - /brorand/1.1.0: resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} dev: false /brotli/1.3.2: - resolution: {integrity: sha1-UlqcrU/LqWR119OI9q7LE+7VL0Y=} + resolution: {integrity: sha512-K0HNa0RRpUpcF8yS4yNSd6vmkrvA+wRd+symIcwhfqGLAi7YgGlKfO4oDYVgiahiLGNviO9uY7Zlb1MCPeTmSA==} dependencies: base64-js: 1.5.1 dev: false @@ -3512,12 +3432,6 @@ packages: resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} dev: false - /browser-resolve/1.11.3: - resolution: {integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==} - dependencies: - resolve: 1.1.7 - dev: false - /browserify-aes/1.2.0: resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} dependencies: @@ -3546,25 +3460,17 @@ packages: safe-buffer: 5.2.1 dev: false - /browserify-optional/1.0.1: - resolution: {integrity: sha1-HhNyLP3g2F8SFnbCpyztUzoBiGk=} - dependencies: - ast-transform: 0.0.0 - ast-types: 0.7.8 - browser-resolve: 1.11.3 - dev: false - /browserify-rsa/4.1.0: resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==} dependencies: - bn.js: 5.2.0 + bn.js: 5.2.1 randombytes: 2.1.0 dev: false /browserify-sign/4.2.1: resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==} dependencies: - bn.js: 5.2.0 + bn.js: 5.2.1 browserify-rsa: 4.1.0 create-hash: 1.2.0 create-hmac: 1.1.7 @@ -3580,10 +3486,10 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001335 - electron-to-chromium: 1.4.132 + caniuse-lite: 1.0.30001346 + electron-to-chromium: 1.4.144 escalade: 3.1.1 - node-releases: 2.0.4 + node-releases: 2.0.5 picocolors: 1.0.0 dev: false @@ -3593,20 +3499,15 @@ packages: node-int64: 0.4.0 dev: false - /bson/4.6.3: - resolution: {integrity: sha512-rAqP5hcUVJhXP2MCSNVsf0oM2OGU1So6A9pVRDYayvJ5+hygXHQApf87wd5NlhPM1J9RJnbqxIG/f8QTzRoQ4A==} + /bson/4.6.4: + resolution: {integrity: sha512-TdQ3FzguAu5HKPPlr0kYQCyrYUYh8tFM+CMTpxjNzVzxeiJY00Rtuj3LXLHSgiGvmaWlZ8PE+4KyM2thqE38pQ==} engines: {node: '>=6.9.0'} dependencies: buffer: 5.7.1 dev: false /buffer-crc32/0.2.13: - resolution: {integrity: sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=} - dev: false - - /buffer-equal/0.0.1: - resolution: {integrity: sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=} - engines: {node: '>=0.4.0'} + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} dev: false /buffer-from/1.1.2: @@ -3624,11 +3525,11 @@ packages: ieee754: 1.2.1 dev: false - /busboy/0.3.1: - resolution: {integrity: sha512-y7tTxhGKXcyBxRKAni+awqx8uqaJKrSFSNFSeRG5CsWNdmy2BIK+6VGWEW7TZnIO/533mtMEA4rOevQV815YJw==} - engines: {node: '>=4.5.0'} + /busboy/1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} dependencies: - dicer: 0.3.0 + streamsearch: 1.1.0 dev: false /bytes/3.0.0: @@ -3696,12 +3597,8 @@ packages: engines: {node: '>=10'} dev: false - /caniuse-lite/1.0.30001335: - resolution: {integrity: sha512-ddP1Tgm7z2iIxu6QTtbZUv6HJxSaV/PZeSrWFZtbY4JZ69tOeNhBCl3HyRQgeNZKE5AOn1kpV7fhljigy0Ty3w==} - dev: false - - /caseless/0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + /caniuse-lite/1.0.30001346: + resolution: {integrity: sha512-q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ==} dev: false /chalk/2.4.2: @@ -3761,8 +3658,8 @@ packages: engines: {node: '>=6.0'} dev: false - /ci-info/3.3.0: - resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==} + /ci-info/3.3.1: + resolution: {integrity: sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==} dev: false /cipher-base/1.0.4: @@ -3798,8 +3695,8 @@ packages: mimic-response: 1.0.1 dev: false - /clone/1.0.4: - resolution: {integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4=} + /clone/2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} engines: {node: '>=0.8'} dev: false @@ -3813,7 +3710,7 @@ packages: dev: false /co/4.6.0: - resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=} + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} dev: false @@ -3835,7 +3732,7 @@ packages: dev: false /color-name/1.1.3: - resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} dev: false /color-name/1.1.4: @@ -3892,7 +3789,7 @@ packages: mime-db: 1.52.0 dev: false - /compression-webpack-plugin/9.0.1_webpack@5.72.0: + /compression-webpack-plugin/9.0.1_webpack@5.73.0: resolution: {integrity: sha512-vqlhZIPSyCpy6eaYWy8iPhteLWpARKotRiN5B/jr7lLowJv1GVc98Snn1Dcxe0+SKbfydLu7qZcnNuP+AyG19Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -3900,7 +3797,7 @@ packages: dependencies: schema-utils: 4.0.0 serialize-javascript: 6.0.0 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false /compression/1.7.4: @@ -3922,16 +3819,6 @@ packages: resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} dev: false - /concat-stream/1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {'0': node >= 0.8} - dependencies: - buffer-from: 1.1.2 - inherits: 2.0.4 - readable-stream: 2.3.7 - typedarray: 0.0.6 - dev: false - /connect-history-api-fallback/1.6.0: resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} engines: {node: '>=0.8'} @@ -3986,17 +3873,7 @@ packages: dev: false /copy-to/2.0.1: - resolution: {integrity: sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU=} - dev: false - - /core-js/2.6.12: - resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} - deprecated: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js. - requiresBuild: true - dev: false - - /core-util-is/1.0.2: - resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=} + resolution: {integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==} dev: false /core-util-is/1.0.3: @@ -4075,10 +3952,6 @@ packages: which: 2.0.2 dev: false - /crossenv/0.0.2-security: - resolution: {integrity: sha512-Zet/ldwzo70I+vUnjM9yHCWo2iqK/RM2s2VnZDNPE/fN062UXYXGqu9Hd7HlhNVhnYGclPcjNoySWhug5lctHw==} - dev: false - /crypto-browserify/3.12.0: resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} dependencies: @@ -4099,23 +3972,23 @@ packages: resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==} dev: false - /css-loader/5.2.7_webpack@5.72.0: + /css-loader/5.2.7_webpack@5.73.0: resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.27.0 || ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.13 + icss-utils: 5.1.0_postcss@8.4.14 loader-utils: 2.0.2 - postcss: 8.4.13 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.13 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.13 - postcss-modules-scope: 3.0.0_postcss@8.4.13 - postcss-modules-values: 4.0.0_postcss@8.4.13 + postcss: 8.4.14 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.14 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.14 + postcss-modules-scope: 3.0.0_postcss@8.4.14 + postcss-modules-values: 4.0.0_postcss@8.4.14 postcss-value-parser: 4.2.0 schema-utils: 3.1.1 semver: 7.3.7 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false /css-select/4.3.0: @@ -4125,7 +3998,7 @@ packages: css-what: 6.1.0 domhandler: 4.3.1 domutils: 2.8.0 - nth-check: 2.0.1 + nth-check: 2.1.1 dev: false /css-tree/1.1.3: @@ -4169,24 +4042,6 @@ packages: cssom: 0.3.8 dev: false - /d/1.0.1: - resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==} - dependencies: - es5-ext: 0.10.61 - type: 1.2.0 - dev: false - - /dash-ast/2.0.1: - resolution: {integrity: sha512-5TXltWJGc+RdnabUGzhRae1TRq6m4gr+3K2wQX0is5/F2yS6MJXJvLyI3ErAnsAXuJoGqvfVD5icRgim07DrxQ==} - dev: false - - /dashdash/1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} - dependencies: - assert-plus: 1.0.0 - dev: false - /data-urls/2.0.0: resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} engines: {node: '>=10'} @@ -4246,7 +4101,7 @@ packages: dev: false /deep-equal/1.0.1: - resolution: {integrity: sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=} + resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} dev: false /deep-equal/2.0.5: @@ -4266,7 +4121,7 @@ packages: side-channel: 1.0.4 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 - which-typed-array: 1.1.7 + which-typed-array: 1.1.8 dev: false /deep-is/0.1.4: @@ -4304,12 +4159,12 @@ packages: dev: false /delayed-stream/1.0.0: - resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=} + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} dev: false /delegates/1.0.0: - resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} dev: false /denque/2.0.1: @@ -4318,7 +4173,7 @@ packages: dev: false /depd/1.1.2: - resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} dev: false @@ -4357,13 +4212,6 @@ packages: resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} dev: false - /dicer/0.3.0: - resolution: {integrity: sha512-MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA==} - engines: {node: '>=4.5.0'} - dependencies: - streamsearch: 0.1.2 - dev: false - /diff-sequences/27.5.1: resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -4390,14 +4238,14 @@ packages: dev: false /dns-equal/1.0.0: - resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=} + resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} dev: false /dns-packet/5.3.1: resolution: {integrity: sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==} engines: {node: '>=6'} dependencies: - '@leichtgewicht/ip-codec': 2.0.3 + '@leichtgewicht/ip-codec': 2.0.4 dev: false /doctrine/2.1.0: @@ -4467,18 +4315,18 @@ packages: dotenv: 8.6.0 dev: false - /dotenv-webpack/7.1.0_webpack@5.72.0: + /dotenv-webpack/7.1.0_webpack@5.73.0: resolution: {integrity: sha512-+aUOe+nqgLerA/n611oyC15fY79BIkGm2fOxJAcHDonMZ7AtDpnzv/Oe591eHAenIE0t6w03UyxDnLs/YUxx5Q==} engines: {node: '>=10'} peerDependencies: webpack: ^4 || ^5 dependencies: dotenv-defaults: 2.0.2 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false - /dotenv/16.0.0: - resolution: {integrity: sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==} + /dotenv/16.0.1: + resolution: {integrity: sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==} engines: {node: '>=12'} dev: false @@ -4491,19 +4339,6 @@ packages: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} dev: false - /duplexer2/0.1.4: - resolution: {integrity: sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=} - dependencies: - readable-stream: 2.3.7 - dev: false - - /ecc-jsbn/0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} - dependencies: - jsbn: 0.1.1 - safer-buffer: 2.1.2 - dev: false - /ee-first/1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} dev: false @@ -4564,8 +4399,8 @@ packages: - supports-color dev: false - /electron-to-chromium/1.4.132: - resolution: {integrity: sha512-JYdZUw/1068NWN+SwXQ7w6Ue0bWYGihvSUNNQwurvcDV/SM7vSiGZ3NuFvFgoEiCs4kB8xs3cX2an3wB7d4TBw==} + /electron-to-chromium/1.4.144: + resolution: {integrity: sha512-R3RV3rU1xWwFJlSClVWDvARaOk6VUO/FubHLodIASDB3Mc2dzuWvNdfOgH9bwHUTqT79u92qw60NWfwUdzAqdg==} dev: false /elliptic/6.5.4: @@ -4595,7 +4430,7 @@ packages: dev: false /encodeurl/1.0.2: - resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=} + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} dev: false @@ -4617,7 +4452,7 @@ packages: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} dependencies: - ansi-colors: 4.1.1 + ansi-colors: 4.1.3 dev: false /entities/2.2.0: @@ -4647,16 +4482,18 @@ packages: stackframe: 1.2.1 dev: false - /es-abstract/1.19.5: - resolution: {integrity: sha512-Aa2G2+Rd3b6kxEUKTF4TaW67czBLyAv3z7VOhYRU50YBx+bbsYZ9xQP4lMNazePuFlybXI0V4MruPos7qUo5fA==} + /es-abstract/1.20.1: + resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 es-to-primitive: 1.2.1 function-bind: 1.1.1 + function.prototype.name: 1.1.5 get-intrinsic: 1.1.1 get-symbol-description: 1.0.0 has: 1.0.3 + has-property-descriptors: 1.0.0 has-symbols: 1.0.3 internal-slot: 1.0.3 is-callable: 1.2.4 @@ -4665,9 +4502,10 @@ packages: is-shared-array-buffer: 1.0.2 is-string: 1.0.7 is-weakref: 1.0.2 - object-inspect: 1.12.0 + object-inspect: 1.12.2 object-keys: 1.1.1 object.assign: 4.1.2 + regexp.prototype.flags: 1.4.3 string.prototype.trimend: 1.0.5 string.prototype.trimstart: 1.0.5 unbox-primitive: 1.0.2 @@ -4705,65 +4543,12 @@ packages: is-symbol: 1.0.4 dev: false - /es5-ext/0.10.61: - resolution: {integrity: sha512-yFhIqQAzu2Ca2I4SE2Au3rxVfmohU9Y7wqGR+s7+H7krk26NXhIRAZDgqd6xqjCEFUomDEA3/Bo/7fKmIkW1kA==} - engines: {node: '>=0.10'} - requiresBuild: true - dependencies: - es6-iterator: 2.0.3 - es6-symbol: 3.1.3 - next-tick: 1.1.0 - dev: false - /es6-error/4.1.1: resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} dev: false - /es6-iterator/2.0.3: - resolution: {integrity: sha1-p96IkUGgWpSwhUQDstCg+/qY87c=} - dependencies: - d: 1.0.1 - es5-ext: 0.10.61 - es6-symbol: 3.1.3 - dev: false - - /es6-map/0.1.5: - resolution: {integrity: sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=} - dependencies: - d: 1.0.1 - es5-ext: 0.10.61 - es6-iterator: 2.0.3 - es6-set: 0.1.5 - es6-symbol: 3.1.3 - event-emitter: 0.3.5 - dev: false - /es6-promise/3.3.1: - resolution: {integrity: sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM=} - dev: false - - /es6-set/0.1.5: - resolution: {integrity: sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=} - dependencies: - d: 1.0.1 - es5-ext: 0.10.61 - es6-iterator: 2.0.3 - es6-symbol: 3.1.1 - event-emitter: 0.3.5 - dev: false - - /es6-symbol/3.1.1: - resolution: {integrity: sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=} - dependencies: - d: 1.0.1 - es5-ext: 0.10.61 - dev: false - - /es6-symbol/3.1.3: - resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==} - dependencies: - d: 1.0.1 - ext: 1.6.0 + resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} dev: false /esbuild/0.12.29: @@ -4778,11 +4563,11 @@ packages: dev: false /escape-html/1.0.3: - resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} dev: false /escape-string-regexp/1.0.5: - resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} dev: false @@ -4796,31 +4581,6 @@ packages: engines: {node: '>=10'} dev: false - /escodegen/1.14.3: - resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==} - engines: {node: '>=4.0'} - hasBin: true - dependencies: - esprima: 4.0.1 - estraverse: 4.3.0 - esutils: 2.0.3 - optionator: 0.8.3 - optionalDependencies: - source-map: 0.6.1 - dev: false - - /escodegen/1.2.0: - resolution: {integrity: sha1-Cd55Z3kcyVi3+Jot220jRRrzJ+E=} - engines: {node: '>=0.4.0'} - hasBin: true - dependencies: - esprima: 1.0.4 - estraverse: 1.5.1 - esutils: 1.0.0 - optionalDependencies: - source-map: 0.1.43 - dev: false - /escodegen/2.0.0: resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} engines: {node: '>=6.0'} @@ -4834,7 +4594,7 @@ packages: source-map: 0.6.1 dev: false - /eslint-config-standard-with-typescript/21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2: + /eslint-config-standard-with-typescript/21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a: resolution: {integrity: sha512-FeiMHljEJ346Y0I/HpAymNKdrgKEpHpcg/D93FvPHWfCzbT4QyUJba/0FwntZeGLXfUiWDSeKmdJD597d9wwiw==} peerDependencies: '@typescript-eslint/eslint-plugin': ^4.0.1 @@ -4844,14 +4604,14 @@ packages: eslint-plugin-promise: ^4.2.1 || ^5.0.0 typescript: ^3.9 || ^4.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 eslint-config-standard: 16.0.3_b34912069e885f2a9370bfe10b54509c - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - supports-color dev: false @@ -4865,7 +4625,7 @@ packages: eslint-plugin-promise: ^4.2.1 || ^5.0.0 dependencies: eslint: 7.32.0 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 dev: false @@ -4879,7 +4639,7 @@ packages: - supports-color dev: false - /eslint-module-utils/2.7.3_b12fba4a6c5578e93f1b97ff1f20ebb4: + /eslint-module-utils/2.7.3_68f8d0f9a213561b217544fc75808fdc: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -4897,7 +4657,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -4916,7 +4676,7 @@ packages: regexpp: 3.2.0 dev: false - /eslint-plugin-import/2.26.0_3ddaf056fddf811f7a567f393e2484b7: + /eslint-plugin-import/2.26.0_c21022bc9feaeb7b200d3d631eeae46c: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -4926,14 +4686,14 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 eslint: 7.32.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_b12fba4a6c5578e93f1b97ff1f20ebb4 + eslint-module-utils: 2.7.3_68f8d0f9a213561b217544fc75808fdc has: 1.0.3 is-core-module: 2.9.0 is-glob: 4.0.3 @@ -4982,6 +4742,16 @@ packages: svelte: 3.48.0 dev: false + /eslint-plugin-svelte3/4.0.0_eslint@7.32.0+svelte@3.48.0: + resolution: {integrity: sha512-OIx9lgaNzD02+MDFNLw0GEUbuovNcglg+wnd/UY0fbZmlQSz7GlQiQ1f+yX0XvC07XPcDOnFcichqI3xCwp71g==} + peerDependencies: + eslint: '>=8.0.0' + svelte: ^3.2.0 + dependencies: + eslint: 7.32.0 + svelte: 3.48.0 + dev: false + /eslint-scope/5.1.1: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} engines: {node: '>=8.0.0'} @@ -5047,7 +4817,7 @@ packages: file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 glob-parent: 5.1.2 - globals: 13.13.0 + globals: 13.15.0 ignore: 4.0.6 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -5080,12 +4850,6 @@ packages: eslint-visitor-keys: 1.3.0 dev: false - /esprima/1.0.4: - resolution: {integrity: sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=} - engines: {node: '>=0.4.0'} - hasBin: true - dev: false - /esprima/4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} @@ -5106,11 +4870,6 @@ packages: estraverse: 5.3.0 dev: false - /estraverse/1.5.1: - resolution: {integrity: sha1-hno+jlip+EYYr7bC3bzZFrfLr3E=} - engines: {node: '>=0.4.0'} - dev: false - /estraverse/4.3.0: resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} engines: {node: '>=4.0'} @@ -5121,32 +4880,16 @@ packages: engines: {node: '>=4.0'} dev: false - /estree-is-function/1.0.0: - resolution: {integrity: sha512-nSCWn1jkSq2QAtkaVLJZY2ezwcFO161HVc174zL1KPW3RJ+O6C3eJb8Nx7OXzvhoEv+nLgSR1g71oWUHUDTrJA==} - dev: false - - /esutils/1.0.0: - resolution: {integrity: sha1-gVHTWOIMisx/t0XnRywAJf5JZXA=} - engines: {node: '>=0.10.0'} - dev: false - /esutils/2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} dev: false /etag/1.8.1: - resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=} + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} dev: false - /event-emitter/0.3.5: - resolution: {integrity: sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=} - dependencies: - d: 1.0.1 - es5-ext: 0.10.61 - dev: false - /eventemitter3/4.0.7: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} dev: false @@ -5205,11 +4948,11 @@ packages: jest-message-util: 27.5.1 dev: false - /express-fileupload/1.3.1: - resolution: {integrity: sha512-LD1yabD3exmWIFujKGDnT1rmxSomaqQSlUvzIsrA1ZgwCJ6ci7lg2YHFGM3Q6DfK+Yk0gAVU7GWLE7qDMwZLkw==} + /express-fileupload/1.4.0: + resolution: {integrity: sha512-RjzLCHxkv3umDeZKeFeMg8w7qe0V09w3B7oGZprr/oO2H/ISCgNzuqzn7gV3HRWb37GjRk429CCpSLS2KNTqMQ==} engines: {node: '>=12.0.0'} dependencies: - busboy: 0.3.1 + busboy: 1.6.0 dev: false /express/4.18.1: @@ -5251,16 +4994,6 @@ packages: - supports-color dev: false - /ext/1.6.0: - resolution: {integrity: sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==} - dependencies: - type: 2.6.0 - dev: false - - /extend/3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - dev: false - /extract-zip/2.0.1: resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} engines: {node: '>= 10.17.0'} @@ -5275,11 +5008,6 @@ packages: - supports-color dev: false - /extsprintf/1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} - dev: false - /faker/5.5.3: resolution: {integrity: sha512-wLTv2a28wjUyWkbnX7u/ABZBkUkIF2fCd73V6P2oFqEGEktDfzWx4UxrSqtPRw0xPRAcjeAOIiJWqZm3pP4u3g==} dev: false @@ -5318,7 +5046,7 @@ packages: dev: false /fast-levenshtein/2.0.6: - resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: false /fast-redact/3.1.1: @@ -5367,7 +5095,7 @@ packages: dev: false /fd-slicer/1.1.0: - resolution: {integrity: sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=} + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} dependencies: pend: 1.2.0 dev: false @@ -5379,7 +5107,7 @@ packages: flat-cache: 3.0.4 dev: false - /file-loader/6.2.0_webpack@5.72.0: + /file-loader/6.2.0_webpack@5.73.0: resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -5387,7 +5115,7 @@ packages: dependencies: loader-utils: 2.0.2 schema-utils: 3.1.1 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false /filesize/8.0.7: @@ -5426,7 +5154,7 @@ packages: dev: false /find-up/2.1.0: - resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=} + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} engines: {node: '>=4'} dependencies: locate-path: 2.0.0 @@ -5463,8 +5191,8 @@ packages: resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} dev: false - /follow-redirects/1.15.0: - resolution: {integrity: sha512-aExlJShTV4qOUOL7yF1U5tvLCB0xQuudbf6toyYA0E/acBNw71mvjFTnLaRp50aQaYocMR0a/RMMBIHeZnGyjQ==} + /follow-redirects/1.15.1: + resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -5473,37 +5201,24 @@ packages: optional: true dev: false - /fontkit/1.8.1: - resolution: {integrity: sha512-BsNCjDoYRxmNWFdAuK1y9bQt+igIxGtTC9u/jSFjR9MKhmI00rP1fwSvERt+5ddE82544l0XH5mzXozQVUy2Tw==} + /fontkit/1.9.0: + resolution: {integrity: sha512-HkW/8Lrk8jl18kzQHvAw9aTHe1cqsyx5sDnxncx652+CIfhawokEPkeM3BoIC+z/Xv7a0yMr0f3pRRwhGH455g==} dependencies: - babel-runtime: 6.26.0 - brfs: 2.0.2 + '@swc/helpers': 0.3.17 brotli: 1.3.2 - browserify-optional: 1.0.1 - clone: 1.0.4 - deep-equal: 1.0.1 + clone: 2.1.2 + deep-equal: 2.0.5 dfa: 1.2.0 - restructure: 0.5.4 + restructure: 2.0.1 tiny-inflate: 1.0.3 unicode-properties: 1.3.1 - unicode-trie: 0.3.1 + unicode-trie: 2.0.0 dev: false - /foreach/2.0.5: - resolution: {integrity: sha1-C+4AUBiusmDQo6865ljdATbsG5k=} - dev: false - - /forever-agent/0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - dev: false - - /form-data/2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} + /for-each/0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 + is-callable: 1.2.4 dev: false /form-data/2.5.1: @@ -5560,7 +5275,7 @@ packages: dev: false /fs.realpath/1.0.0: - resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} dev: false /fsevents/2.1.3: @@ -5584,8 +5299,18 @@ packages: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} dev: false + /function.prototype.name/1.1.5: + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + functions-have-names: 1.2.3 + dev: false + /functional-red-black-tree/1.0.1: - resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} dev: false /functions-have-names/1.2.3: @@ -5597,10 +5322,6 @@ packages: engines: {node: '>=6.9.0'} dev: false - /get-assigned-identifiers/1.2.0: - resolution: {integrity: sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==} - dev: false - /get-intrinsic/1.1.1: resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==} dependencies: @@ -5634,12 +5355,6 @@ packages: get-intrinsic: 1.1.1 dev: false - /getpass/0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} - dependencies: - assert-plus: 1.0.0 - dev: false - /glob-escape/0.0.2: resolution: {integrity: sha512-L/cXYz8x7qer1HAyUQ+mbjcUsJVdpRxpAf7CwqHoNBs9vTpABlGfNN4tzkDxt+u3Z7ZncVyKlCNPtzb0R/7WbA==} engines: {node: '>= 0.10'} @@ -5667,8 +5382,8 @@ packages: path-is-absolute: 1.0.1 dev: false - /glob/7.2.0: - resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} + /glob/7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -5683,8 +5398,8 @@ packages: engines: {node: '>=4'} dev: false - /globals/13.13.0: - resolution: {integrity: sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==} + /globals/13.15.0: + resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -5734,26 +5449,12 @@ packages: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} dev: false - /har-schema/2.0.0: - resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} - engines: {node: '>=4'} - dev: false - - /har-validator/5.1.5: - resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} - engines: {node: '>=6'} - deprecated: this library is no longer supported - dependencies: - ajv: 6.12.6 - har-schema: 2.0.0 - dev: false - /has-bigints/1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: false /has-flag/3.0.0: - resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} dev: false @@ -5821,7 +5522,7 @@ packages: dev: false /hpack.js/2.1.6: - resolution: {integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=} + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} dependencies: inherits: 2.0.4 obuf: 1.1.2 @@ -5859,10 +5560,10 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.13.1 + terser: 5.14.0 dev: false - /html-webpack-plugin/5.5.0_webpack@5.72.0: + /html-webpack-plugin/5.5.0_webpack@5.73.0: resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} engines: {node: '>=10.13.0'} peerDependencies: @@ -5873,7 +5574,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false /htmlparser2/6.1.0: @@ -5898,11 +5599,11 @@ packages: dev: false /http-deceiver/1.2.7: - resolution: {integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=} + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} dev: false /http-errors/1.6.3: - resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=} + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} engines: {node: '>= 0.6'} dependencies: depd: 1.1.2 @@ -5978,21 +5679,12 @@ packages: engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.0 + follow-redirects: 1.15.1 requires-port: 1.0.0 transitivePeerDependencies: - debug dev: false - /http-signature/1.2.0: - resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} - engines: {node: '>=0.8', npm: '>=1.3.7'} - dependencies: - assert-plus: 1.0.0 - jsprim: 1.4.2 - sshpk: 1.17.0 - dev: false - /http2-wrapper/1.0.3: resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} engines: {node: '>=10.19.0'} @@ -6023,13 +5715,13 @@ packages: safer-buffer: 2.1.2 dev: false - /icss-utils/5.1.0_postcss@8.4.13: + /icss-utils/5.1.0_postcss@8.4.14: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.13 + postcss: 8.4.14 dev: false /ieee754/1.2.1: @@ -6046,8 +5738,8 @@ packages: engines: {node: '>= 4'} dev: false - /immutable/4.0.0: - resolution: {integrity: sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==} + /immutable/4.1.0: + resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==} dev: false /import-fresh/3.3.0: @@ -6073,24 +5765,24 @@ packages: dev: false /imurmurhash/0.1.4: - resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} dev: false /inflation/2.0.0: - resolution: {integrity: sha1-i0F+R8KPklpFEz2RTKH9OJEH8w8=} + resolution: {integrity: sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==} engines: {node: '>= 0.8.0'} dev: false /inflight/1.0.6: - resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 dev: false /inherits/2.0.3: - resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=} + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} dev: false /inherits/2.0.4: @@ -6120,8 +5812,8 @@ packages: tslib: 2.4.0 dev: false - /ip/1.1.5: - resolution: {integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=} + /ip/1.1.8: + resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==} dev: false /ipaddr.js/1.9.1: @@ -6143,7 +5835,7 @@ packages: dev: false /is-arrayish/0.2.1: - resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: false /is-bigint/1.0.4: @@ -6192,7 +5884,7 @@ packages: dev: false /is-extglob/2.1.1: - resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} dev: false @@ -6226,7 +5918,7 @@ packages: dev: false /is-integer/1.0.7: - resolution: {integrity: sha1-a96Bqs3feLZZtmKdYpytxRqIbVw=} + resolution: {integrity: sha512-RPQc/s9yBHSvpi+hs9dYiJ2cuFeU6x3TyyIp8O2H6SKEltIvJOzRj9ToyvcStDvPR/pS4rxgr1oBFajQjZ2Szg==} dependencies: is-finite: 1.1.0 dev: false @@ -6236,7 +5928,7 @@ packages: dev: false /is-native/1.0.1: - resolution: {integrity: sha1-zRjMFi6EUNaDtbq+eayZwUVElnU=} + resolution: {integrity: sha512-I4z9hx+4u3/zyvpvGtAR+n7SodJugE+i2jiS8yfq1A9QAZY0KldLQz0SBptLC9ti7kBlpghWUwTKE2BA62eCcw==} dependencies: is-nil: 1.0.1 to-source-code: 1.0.2 @@ -6248,7 +5940,7 @@ packages: dev: false /is-nil/1.0.1: - resolution: {integrity: sha1-LauingtYUGOHXntTnQcfWxWTeWk=} + resolution: {integrity: sha512-m2Rm8PhUFDNNhgvwZJjJG74a9h5CHU0fkA8WT+WGlCjyEbZ2jPwgb+ZxHu4np284EqNVyOsgppReK4qy/TwEwg==} dev: false /is-number-object/1.0.7: @@ -6316,14 +6008,14 @@ packages: has-symbols: 1.0.3 dev: false - /is-typed-array/1.1.8: - resolution: {integrity: sha512-HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA==} + /is-typed-array/1.1.9: + resolution: {integrity: sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 - es-abstract: 1.19.5 - foreach: 2.0.5 + es-abstract: 1.20.1 + for-each: 0.3.3 has-tostringtag: 1.0.0 dev: false @@ -6356,7 +6048,7 @@ packages: dev: false /isarray/1.0.0: - resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} dev: false /isarray/2.0.5: @@ -6364,18 +6056,14 @@ packages: dev: false /isexe/2.0.0: - resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} dev: false /isobject/3.0.1: - resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=} + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} dev: false - /isstream/0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} - dev: false - /istanbul-lib-coverage/3.2.0: resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} engines: {node: '>=8'} @@ -6385,8 +6073,8 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.17.10 - '@babel/parser': 7.17.10 + '@babel/core': 7.18.2 + '@babel/parser': 7.18.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -6438,7 +6126,7 @@ packages: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -6458,7 +6146,7 @@ packages: - supports-color dev: false - /jest-config/27.4.7_ts-node@10.5.0: + /jest-config/27.4.7_ts-node@10.8.0: resolution: {integrity: sha512-xz/o/KJJEedHMrIY9v2ParIoYSrSVY6IVeE4z5Z3i101GoA5XgfbJz+1C8EYPsv7u7f39dS8F9v46BHDhn0vlw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -6467,14 +6155,14 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.2 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.17.10 + babel-jest: 27.5.1_@babel+core@7.18.2 chalk: 4.1.2 - ci-info: 3.3.0 + ci-info: 3.3.1 deepmerge: 4.2.2 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 jest-circus: 27.5.1 jest-environment-jsdom: 27.5.1 @@ -6482,14 +6170,14 @@ packages: jest-get-type: 27.5.1 jest-jasmine2: 27.5.1 jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 + jest-resolve: 27.4.6 jest-runner: 27.5.1 jest-util: 27.5.1 jest-validate: 27.5.1 micromatch: 4.0.5 pretty-format: 27.5.1 slash: 3.0.0 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c transitivePeerDependencies: - bufferutil - canvas @@ -6532,7 +6220,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -6550,7 +6238,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 jest-mock: 27.5.1 jest-util: 27.5.1 dev: false @@ -6566,7 +6254,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.5 - '@types/node': 16.11.33 + '@types/node': 16.11.38 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -6588,7 +6276,7 @@ packages: '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -6653,7 +6341,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 dev: false /jest-pnp-resolver/1.2.2_jest-resolve@27.4.6: @@ -6737,7 +6425,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.10 @@ -6775,7 +6463,7 @@ packages: cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 execa: 5.1.1 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 jest-haste-map: 27.5.1 jest-message-util: 27.5.1 @@ -6794,7 +6482,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': 16.11.33 + '@types/node': 16.11.38 graceful-fs: 4.2.10 dev: false @@ -6802,16 +6490,16 @@ packages: resolution: {integrity: sha512-fafUCDLQfzuNP9IRcEqaFAMzEe7u5BF7mude51wyWv7VRex60WznZIC7DfKTgSIlJa8aFzYmXclmN328aqSDmQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.17.10 - '@babel/generator': 7.17.10 - '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.17.10 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 - '@jest/transform': 27.5.1 + '@babel/core': 7.18.2 + '@babel/generator': 7.18.2 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 + '@jest/transform': 27.4.6 '@jest/types': 27.5.1 '@types/babel__traverse': 7.17.1 - '@types/prettier': 2.6.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.10 + '@types/prettier': 2.6.3 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.2 chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.10 @@ -6832,16 +6520,16 @@ packages: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.17.10 - '@babel/generator': 7.17.10 - '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.17.10 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/core': 7.18.2 + '@babel/generator': 7.18.2 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.17.1 - '@types/prettier': 2.6.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.10 + '@types/prettier': 2.6.3 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.2 chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.10 @@ -6863,9 +6551,9 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 chalk: 4.1.2 - ci-info: 3.3.0 + ci-info: 3.3.1 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: false @@ -6888,7 +6576,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.11.33 + '@types/node': 16.11.38 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -6899,13 +6587,13 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.38 merge-stream: 2.0.0 supports-color: 8.1.1 dev: false /jju/1.4.0: - resolution: {integrity: sha1-o6vicYryQaKykE+EpiWXDzia4yo=} + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} dev: false /jpeg-js/0.4.3: @@ -6924,10 +6612,6 @@ packages: esprima: 4.0.1 dev: false - /jsbn/0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - dev: false - /jsdom/16.7.0: resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} engines: {node: '>=10'} @@ -6962,7 +6646,7 @@ packages: whatwg-encoding: 1.0.5 whatwg-mimetype: 2.3.0 whatwg-url: 8.7.0 - ws: 7.5.7 + ws: 7.5.8 xml-name-validator: 3.0.0 transitivePeerDependencies: - bufferutil @@ -6980,10 +6664,6 @@ packages: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} dev: false - /json-parse-better-errors/1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - dev: false - /json-parse-even-better-errors/2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: false @@ -6996,24 +6676,16 @@ packages: resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} dev: false - /json-schema/0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} - dev: false - /json-stable-stringify-without-jsonify/1.0.1: - resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} dev: false /json-stream/1.0.0: resolution: {integrity: sha512-H/ZGY0nIAg3QcOwE1QN/rK/Fa7gJn7Ii5obwp6zyPO4xiPNwpIMjqy2gwjBEGqzkF/vSWEIBQCBuN19hYiL6Qg==} dev: false - /json-stringify-safe/5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - dev: false - /json5/0.5.1: - resolution: {integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=} + resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} hasBin: true dev: false @@ -7031,7 +6703,7 @@ packages: dev: false /jsonfile/4.0.0: - resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.10 dev: false @@ -7041,16 +6713,6 @@ packages: engines: {node: '>=10.0'} dev: false - /jsprim/1.4.2: - resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} - engines: {node: '>=0.6.0'} - dependencies: - assert-plus: 1.0.0 - extsprintf: 1.3.0 - json-schema: 0.4.0 - verror: 1.10.0 - dev: false - /jwt-simple/0.5.6: resolution: {integrity: sha512-40aUybvhH9t2h71ncA1/1SbtTNCVZHgsTsTgqPUxGWDmUDrXyDf2wMNQKEbdBjbf4AI+fQhbECNTV6lWxQKUzg==} engines: {node: '>= 0.4.0'} @@ -7108,7 +6770,7 @@ packages: http-errors: 1.8.1 koa-compose: 4.1.0 methods: 1.1.2 - path-to-regexp: 6.2.0 + path-to-regexp: 6.2.1 transitivePeerDependencies: - supports-color dev: false @@ -7150,7 +6812,7 @@ packages: dev: false /levn/0.3.0: - resolution: {integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=} + resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 @@ -7174,12 +6836,11 @@ packages: engines: {node: '>=10'} dev: false - /linebreak/1.0.2: - resolution: {integrity: sha512-bJwSRsJeAmaZYnkcwl5sCQNfSDAhBuXxb6L27tb+qkBRtUQSSTUa5bcgCPD6hFEkRNlpWHfK7nFMmcANU7ZP1w==} + /linebreak/1.1.0: + resolution: {integrity: sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==} dependencies: base64-js: 0.0.8 - brfs: 2.0.2 - unicode-trie: 1.0.0 + unicode-trie: 2.0.0 dev: false /lines-and-columns/1.2.4: @@ -7221,7 +6882,7 @@ packages: dev: false /locate-path/2.0.0: - resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=} + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} engines: {node: '>=4'} dependencies: p-locate: 2.0.0 @@ -7244,23 +6905,19 @@ packages: dev: false /lodash.get/4.4.2: - resolution: {integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=} + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} dev: false /lodash.isequal/4.5.0: - resolution: {integrity: sha1-QVxEePK8wwEgwizhDtMib30+GOA=} + resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} dev: false /lodash.merge/4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} dev: false - /lodash.sortby/4.7.0: - resolution: {integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=} - dev: false - /lodash.truncate/4.4.2: - resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=} + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} dev: false /lodash/4.17.21: @@ -7292,12 +6949,6 @@ packages: yallist: 4.0.0 dev: false - /magic-string/0.25.1: - resolution: {integrity: sha512-sCuTz6pYom8Rlt4ISPFn6wuFodbKMIHUMv4Qko9P17dpxb7s52KJTmRuZZqHdGmLCK9AOcDare039nRIcfdkEg==} - dependencies: - sourcemap-codec: 1.4.8 - dev: false - /magic-string/0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} dependencies: @@ -7360,8 +7011,8 @@ packages: engines: {node: '>= 0.6'} dev: false - /memfs/3.4.1: - resolution: {integrity: sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==} + /memfs/3.4.4: + resolution: {integrity: sha512-W4gHNUE++1oSJVn8Y68jPXi+mkx3fXR5ITE/Ubz6EQ3xRpCN5k2CQ4AUR8094Z7211F876TyoBACGsIveqgiGA==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 @@ -7376,12 +7027,6 @@ packages: resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} dev: false - /merge-source-map/1.0.4: - resolution: {integrity: sha1-pd5GU42uhNQRTMXqArR3KmNGcB8=} - dependencies: - source-map: 0.5.7 - dev: false - /merge-stream/2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} dev: false @@ -7392,7 +7037,7 @@ packages: dev: false /methods/1.1.2: - resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=} + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} dev: false @@ -7456,14 +7101,14 @@ packages: engines: {node: '>=4'} dev: false - /mini-css-extract-plugin/2.6.0_webpack@5.72.0: + /mini-css-extract-plugin/2.6.0_webpack@5.73.0: resolution: {integrity: sha512-ndG8nxCEnAemsg4FSgS+yNyHKgkTB4nPKqCOgh65j3/30qqC5RaSQQXMm++Y6sb6E1zRSxPkztj9fqxhS1Eo6w==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false /minimalistic-assert/1.0.1: @@ -7515,7 +7160,7 @@ packages: dev: false /module-details-from-path/1.0.3: - resolution: {integrity: sha1-EUyUlnPiqKNenTV4hSeqN7Z52is=} + resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==} dev: false /mongodb-connection-string-url/2.5.2: @@ -7525,11 +7170,11 @@ packages: whatwg-url: 11.0.0 dev: false - /mongodb/4.5.0: - resolution: {integrity: sha512-A2l8MjEpKojnhbCM0MK3+UOGUSGvTNNSv7AkP1fsT7tkambrkkqN/5F2y+PhzsV0Nbv58u04TETpkaSEdI2zKA==} + /mongodb/4.6.0: + resolution: {integrity: sha512-1gsxVXmjFTPJ+CkMG9olE4bcVsyY8lBJN9m5B5vj+LZ7wkBqq3PO8RVmNX9GwCBOBz1KV0zM00vPviUearSv7A==} engines: {node: '>=12.9.0'} dependencies: - bson: 4.6.3 + bson: 4.6.4 denque: 2.0.1 mongodb-connection-string-url: 2.5.2 socks: 2.6.2 @@ -7552,7 +7197,7 @@ packages: dev: false /ms/2.0.0: - resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} dev: false /ms/2.1.2: @@ -7563,8 +7208,8 @@ packages: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} dev: false - /multicast-dns/7.2.4: - resolution: {integrity: sha512-XkCYOU+rr2Ft3LI6w4ye51M3VK31qJXFIxu0XLw169PtKG0Zx47OrXeVW/GCYOfpC9s1yyyf1S+L8/4LY0J9Zw==} + /multicast-dns/7.2.5: + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true dependencies: dns-packet: 5.3.1 @@ -7578,7 +7223,7 @@ packages: dev: false /natural-compare/1.4.0: - resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: false /negotiator/0.6.3: @@ -7591,11 +7236,7 @@ packages: dev: false /next-line/1.1.0: - resolution: {integrity: sha1-/K5XhTBStqm66CCOQN19PC0wRgM=} - dev: false - - /next-tick/1.1.0: - resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + resolution: {integrity: sha512-+I10J3wKNoKddNxn0CNpoZ3eTZuqxjNM3b1GImVx22+ePI+Y15P8g/j3WsbP0fhzzrFzrtjOAoq5NCCucswXOQ==} dev: false /no-case/3.0.4: @@ -7614,8 +7255,8 @@ packages: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} dev: false - /node-releases/2.0.4: - resolution: {integrity: sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==} + /node-releases/2.0.5: + resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} dev: false /normalize-package-data/2.5.0: @@ -7633,7 +7274,7 @@ packages: dev: false /normalize-range/0.1.2: - resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=} + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} engines: {node: '>=0.10.0'} dev: false @@ -7649,8 +7290,8 @@ packages: path-key: 3.1.1 dev: false - /nth-check/2.0.1: - resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==} + /nth-check/2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} dependencies: boolbase: 1.0.0 dev: false @@ -7659,12 +7300,8 @@ packages: resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==} dev: false - /oauth-sign/0.9.0: - resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} - dev: false - /object-assign/4.1.1: - resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} dev: false @@ -7678,8 +7315,8 @@ packages: object.entries: 1.1.5 dev: false - /object-inspect/1.12.0: - resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} + /object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} dev: false /object-is/1.1.5: @@ -7711,7 +7348,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.19.5 + es-abstract: 1.20.1 dev: false /object.values/1.1.5: @@ -7720,7 +7357,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.19.5 + es-abstract: 1.20.1 dev: false /obuf/1.1.2: @@ -7728,7 +7365,7 @@ packages: dev: false /on-finished/2.3.0: - resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=} + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 @@ -7747,7 +7384,7 @@ packages: dev: false /once/1.4.0: - resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 dev: false @@ -7760,7 +7397,7 @@ packages: dev: false /only/0.0.2: - resolution: {integrity: sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q=} + resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==} dev: false /open/8.4.0: @@ -7805,8 +7442,8 @@ packages: word-wrap: 1.2.3 dev: false - /orderedmap/1.1.5: - resolution: {integrity: sha512-/fzlCGKRmfayGoI9UUXvJfc2nMZlJHW30QqEvwPvlg8tsX7jyiUSomYie6mYqx7Z9bOMGoag0H/q1PS/0PjYkg==} + /orderedmap/1.1.8: + resolution: {integrity: sha512-eWEYOAggZZpZbJ9CTsqAKOTxlbBHdHZ8pzcfEvNTxGrjQ/m+Q25nSWUiMlT9MTbgpB6FOiBDKqsgJ2FlLDVNaw==} dev: false /original-url/1.2.3: @@ -7835,7 +7472,7 @@ packages: dev: false /p-locate/2.0.0: - resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} engines: {node: '>=4'} dependencies: p-limit: 1.3.0 @@ -7864,7 +7501,7 @@ packages: dev: false /p-try/1.0.0: - resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=} + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} engines: {node: '>=4'} dev: false @@ -7874,7 +7511,7 @@ packages: dev: false /pako/0.2.9: - resolution: {integrity: sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=} + resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} dev: false /param-case/3.0.4: @@ -7928,7 +7565,7 @@ packages: dev: false /path-exists/3.0.0: - resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} dev: false @@ -7938,7 +7575,7 @@ packages: dev: false /path-is-absolute/1.0.1: - resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} dev: false @@ -7955,8 +7592,8 @@ packages: resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} dev: false - /path-to-regexp/6.2.0: - resolution: {integrity: sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg==} + /path-to-regexp/6.2.1: + resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==} dev: false /path-type/4.0.0: @@ -7979,17 +7616,13 @@ packages: resolution: {integrity: sha512-AW79eHU5eLd2vgRDS9z3bSoi0FA+gYm+100LLosrQQMLUzOBGVOhG7ABcMFpJu7Bpg+MT74XYHi4k9EuU/9EZw==} dependencies: crypto-js: 4.1.1 - fontkit: 1.8.1 - linebreak: 1.0.2 + fontkit: 1.9.0 + linebreak: 1.1.0 png-js: 1.0.0 dev: false /pend/1.2.0: - resolution: {integrity: sha1-elfrVQpng/kRUzH89GY9XI4AelA=} - dev: false - - /performance-now/2.1.0: - resolution: {integrity: sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=} + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} dev: false /picocolors/1.0.0: @@ -8060,9 +7693,9 @@ packages: proper-lockfile: 4.1.2 proxy-from-env: 1.1.0 rimraf: 3.0.2 - socks-proxy-agent: 6.2.0 + socks-proxy-agent: 6.2.1 stack-utils: 2.0.5 - ws: 7.5.7 + ws: 7.5.8 yauzl: 2.10.0 yazl: 2.5.1 transitivePeerDependencies: @@ -8085,18 +7718,7 @@ packages: engines: {node: '>=12.13.0'} dev: false - /portfinder/1.0.28: - resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==} - engines: {node: '>= 0.12.0'} - dependencies: - async: 2.6.4 - debug: 3.2.7 - mkdirp: 0.5.6 - transitivePeerDependencies: - - supports-color - dev: false - - /postcss-load-config/3.1.4_postcss@8.4.13+ts-node@10.5.0: + /postcss-load-config/3.1.4_postcss@8.4.14+ts-node@10.8.0: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -8109,12 +7731,12 @@ packages: optional: true dependencies: lilconfig: 2.0.5 - postcss: 8.4.13 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 + postcss: 8.4.14 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c yaml: 1.10.2 dev: false - /postcss-loader/6.2.1_postcss@8.4.13+webpack@5.72.0: + /postcss-loader/6.2.1_postcss@8.4.14+webpack@5.73.0: resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -8123,50 +7745,50 @@ packages: dependencies: cosmiconfig: 7.0.1 klona: 2.0.5 - postcss: 8.4.13 + postcss: 8.4.14 semver: 7.3.7 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false - /postcss-modules-extract-imports/3.0.0_postcss@8.4.13: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.14: resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.13 + postcss: 8.4.14 dev: false - /postcss-modules-local-by-default/4.0.0_postcss@8.4.13: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.14: resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.13 - postcss: 8.4.13 + icss-utils: 5.1.0_postcss@8.4.14 + postcss: 8.4.14 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: false - /postcss-modules-scope/3.0.0_postcss@8.4.13: + /postcss-modules-scope/3.0.0_postcss@8.4.14: resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.13 + postcss: 8.4.14 postcss-selector-parser: 6.0.10 dev: false - /postcss-modules-values/4.0.0_postcss@8.4.13: + /postcss-modules-values/4.0.0_postcss@8.4.14: resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.13 - postcss: 8.4.13 + icss-utils: 5.1.0_postcss@8.4.14 + postcss: 8.4.14 dev: false /postcss-selector-parser/6.0.10: @@ -8181,8 +7803,8 @@ packages: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} dev: false - /postcss/8.4.13: - resolution: {integrity: sha512-jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA==} + /postcss/8.4.14: + resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 @@ -8191,7 +7813,7 @@ packages: dev: false /prelude-ls/1.1.2: - resolution: {integrity: sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=} + resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} dev: false @@ -8259,78 +7881,79 @@ packages: signal-exit: 3.0.7 dev: false - /prosemirror-commands/1.2.2: - resolution: {integrity: sha512-TX+KpWudMon06frryfpO/u7hsQv2hu8L4VSVbCpi3/7wXHBgl+35mV85qfa3RpT8xD2f3MdeoTqH0vy5JdbXPg==} + /prosemirror-commands/1.3.0: + resolution: {integrity: sha512-BwBbZ5OAScPcm0x7H8SPbqjuEJnCU2RJT9LDyOiiIl/3NbL1nJZI4SFNHwU2e/tRr2Xe7JsptpzseqvZvToLBQ==} dependencies: prosemirror-model: 1.16.1 - prosemirror-state: 1.3.4 - prosemirror-transform: 1.4.2 + prosemirror-state: 1.4.0 + prosemirror-transform: 1.6.0 dev: false - /prosemirror-dropcursor/1.4.0: - resolution: {integrity: sha512-6+YwTjmqDwlA/Dm+5wK67ezgqgjA/MhSDgaNxKUzH97SmeuWFXyLeDRxxOPZeSo7yTxcDGUCWTEjmQZsVBuMrQ==} + /prosemirror-dropcursor/1.5.0: + resolution: {integrity: sha512-vy7i77ddKyXlu8kKBB3nlxLBnsWyKUmQIPB5x8RkYNh01QNp/qqGmdd5yZefJs0s3rtv5r7Izfu2qbtr+tYAMQ==} dependencies: - prosemirror-state: 1.3.4 - prosemirror-transform: 1.4.2 - prosemirror-view: 1.23.13 + prosemirror-state: 1.4.0 + prosemirror-transform: 1.6.0 + prosemirror-view: 1.25.0 dev: false - /prosemirror-gapcursor/1.2.2: - resolution: {integrity: sha512-7YzuRBbu9W7HGQde84kCHfIjaRLNcAdeijbgqrm/R9dsdTWkV+rrdcmic/sCc+bptiNpvjCEE+R6hrbT8zFQeQ==} + /prosemirror-gapcursor/1.3.0: + resolution: {integrity: sha512-9Tdx83xB2W4Oqchm12FtCkSizbqvi64cjs1I9TRPblqdA5TUWoVZ4ZI+t71Jh6HSEh4cDMPzx3UwfryJtKlb/w==} dependencies: - prosemirror-keymap: 1.1.5 + prosemirror-keymap: 1.2.0 prosemirror-model: 1.16.1 - prosemirror-state: 1.3.4 - prosemirror-view: 1.23.13 + prosemirror-state: 1.4.0 + prosemirror-view: 1.25.0 dev: false - /prosemirror-history/1.2.0: - resolution: {integrity: sha512-B9v9xtf4fYbKxQwIr+3wtTDNLDZcmMMmGiI3TAPShnUzvo+Rmv1GiUrsQChY1meetHl7rhML2cppF3FTs7f7UQ==} + /prosemirror-history/1.3.0: + resolution: {integrity: sha512-qo/9Wn4B/Bq89/YD+eNWFbAytu6dmIM85EhID+fz9Jcl9+DfGEo8TTSrRhP15+fFEoaPqpHSxlvSzSEbmlxlUA==} dependencies: - prosemirror-state: 1.3.4 - prosemirror-transform: 1.4.2 - rope-sequence: 1.3.2 + prosemirror-state: 1.4.0 + prosemirror-transform: 1.6.0 + rope-sequence: 1.3.3 dev: false - /prosemirror-keymap/1.1.5: - resolution: {integrity: sha512-8SZgPH3K+GLsHL2wKuwBD9rxhsbnVBTwpHCO4VUO5GmqUQlxd/2GtBVWTsyLq4Dp3N9nGgPd3+lZFKUDuVp+Vw==} + /prosemirror-keymap/1.2.0: + resolution: {integrity: sha512-TdSfu+YyLDd54ufN/ZeD1VtBRYpgZnTPnnbY+4R08DDgs84KrIPEPbJL8t1Lm2dkljFx6xeBE26YWH3aIzkPKg==} dependencies: - prosemirror-state: 1.3.4 + prosemirror-state: 1.4.0 w3c-keyname: 2.2.4 dev: false /prosemirror-model/1.16.1: resolution: {integrity: sha512-r1/w0HDU40TtkXp0DyKBnFPYwd8FSlUSJmGCGFv4DeynfeSlyQF2FD0RQbVEMOe6P3PpUSXM6LZBV7W/YNZ4mA==} dependencies: - orderedmap: 1.1.5 + orderedmap: 1.1.8 dev: false - /prosemirror-schema-list/1.1.6: - resolution: {integrity: sha512-aFGEdaCWmJzouZ8DwedmvSsL50JpRkqhQ6tcpThwJONVVmCgI36LJHtoQ4VGZbusMavaBhXXr33zyD2IVsTlkw==} + /prosemirror-schema-list/1.2.0: + resolution: {integrity: sha512-8PT/9xOx1HHdC7fDNNfhQ50Z8Mzu7nKyA1KCDltSpcZVZIbB0k7KtsHrnXyuIhbLlScoymBiLZ00c5MH6wdFsA==} dependencies: prosemirror-model: 1.16.1 - prosemirror-transform: 1.4.2 + prosemirror-state: 1.4.0 + prosemirror-transform: 1.6.0 dev: false - /prosemirror-state/1.3.4: - resolution: {integrity: sha512-Xkkrpd1y/TQ6HKzN3agsQIGRcLckUMA9u3j207L04mt8ToRgpGeyhbVv0HI7omDORIBHjR29b7AwlATFFf2GLA==} + /prosemirror-state/1.4.0: + resolution: {integrity: sha512-mVDZdjNX/YT5FvypiwbphJe9psA5h+j9apsSszVRFc6oKFoIInvzdujh8QW9f9lwHtSYajLxNiM1hPhd0Sl1XA==} dependencies: prosemirror-model: 1.16.1 - prosemirror-transform: 1.4.2 + prosemirror-transform: 1.6.0 dev: false - /prosemirror-transform/1.4.2: - resolution: {integrity: sha512-bcIsf3uRZhfab0xRfyyxOEh6eqSszq/hJbDbmUumFnbHBoWhB/uXbpz6vvUxfk0XiEvrZDJ+5pXRrNDc1Hu3vQ==} + /prosemirror-transform/1.6.0: + resolution: {integrity: sha512-MAp7AjsjEGEqQY0sSMufNIUuEyB1ZR9Fqlm8dTwwWwpEJRv/plsKjWXBbx52q3Ml8MtaMcd7ic14zAHVB3WaMw==} dependencies: prosemirror-model: 1.16.1 dev: false - /prosemirror-view/1.23.13: - resolution: {integrity: sha512-X/NcwZv8pgcEWfs3n++Wz4nDgqDIeDvJ9kfCk6DCoC9XUlDekqJLFt9wCcCUBXedb8hs/dmd+JmcaLgbr67XZw==} + /prosemirror-view/1.25.0: + resolution: {integrity: sha512-9eJ7VYOqUl/l2P3Q126PoUhfrWAGF0GU4zHXZssbVnhqLZBKpHTcTYx1W9DMg1PCuS69sHLMJdm3UFHmD5SGdw==} dependencies: prosemirror-model: 1.16.1 - prosemirror-state: 1.3.4 - prosemirror-transform: 1.4.2 + prosemirror-state: 1.4.0 + prosemirror-transform: 1.6.0 dev: false /proxy-addr/2.0.7: @@ -8346,7 +7969,7 @@ packages: dev: false /pseudomap/1.0.2: - resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=} + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} dev: false /psl/1.8.0: @@ -8383,11 +8006,6 @@ packages: side-channel: 1.0.4 dev: false - /qs/6.5.3: - resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} - engines: {node: '>=0.6'} - dev: false - /qs/6.9.7: resolution: {integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==} engines: {node: '>=0.6'} @@ -8412,15 +8030,6 @@ packages: engines: {node: '>=10'} dev: false - /quote-stream/1.0.2: - resolution: {integrity: sha1-hJY/jJwmuULhU/7rU6rnRlK34LI=} - hasBin: true - dependencies: - buffer-equal: 0.0.1 - minimist: 1.2.6 - through2: 2.0.5 - dev: false - /random-poly-fill/1.0.1: resolution: {integrity: sha512-bMOL0hLfrNs52+EHtIPIXxn2PxYwXb0qjnKruTjXiM/sKfYqj506aB2plFwWW1HN+ri724bAVVGparh4AtlJKw==} dev: false @@ -8528,10 +8137,6 @@ packages: resolve: 1.22.0 dev: false - /regenerator-runtime/0.11.1: - resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} - dev: false - /regexp.prototype.flags/1.4.3: resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} engines: {node: '>= 0.4'} @@ -8565,33 +8170,6 @@ packages: strip-ansi: 6.0.1 dev: false - /request/2.88.2: - resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} - engines: {node: '>= 6'} - deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 - dependencies: - aws-sign2: 0.7.0 - aws4: 1.11.0 - caseless: 0.12.0 - combined-stream: 1.0.8 - extend: 3.0.2 - forever-agent: 0.6.1 - form-data: 2.3.3 - har-validator: 5.1.5 - http-signature: 1.2.0 - is-typedarray: 1.0.0 - isstream: 0.1.2 - json-stringify-safe: 5.0.1 - mime-types: 2.1.35 - oauth-sign: 0.9.0 - performance-now: 2.1.0 - qs: 6.5.3 - safe-buffer: 5.2.1 - tough-cookie: 2.5.0 - tunnel-agent: 0.6.0 - uuid: 3.4.0 - dev: false - /require-from-string/2.0.2: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} @@ -8641,10 +8219,6 @@ packages: engines: {node: '>=10'} dev: false - /resolve/1.1.7: - resolution: {integrity: sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=} - dev: false - /resolve/1.17.0: resolution: {integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==} dependencies: @@ -8673,10 +8247,8 @@ packages: lowercase-keys: 2.0.0 dev: false - /restructure/0.5.4: - resolution: {integrity: sha1-9U591WNZD7NP1r9Vh2EJrsyyjeg=} - dependencies: - browserify-optional: 1.0.1 + /restructure/2.0.1: + resolution: {integrity: sha512-e0dOpjm5DseomnXx2M5lpdZ5zoHqF1+bqdMJUohoYVVQa7cBdnk7fdmeI6byNWP/kiME72EeTiSypTCVnpLiDg==} dev: false /retry/0.12.0: @@ -8702,14 +8274,14 @@ packages: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true dependencies: - glob: 7.2.0 + glob: 7.2.3 dev: false /rimraf/3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: - glob: 7.2.0 + glob: 7.2.3 dev: false /ripemd160/2.0.2: @@ -8719,8 +8291,8 @@ packages: inherits: 2.0.4 dev: false - /rope-sequence/1.3.2: - resolution: {integrity: sha512-ku6MFrwEVSVmXLvy3dYph3LAMNS0890K7fabn+0YIRQ2T96T9F4gkFf0vf0WW0JUraNWwGRtInEpH7yO4tbQZg==} + /rope-sequence/1.3.3: + resolution: {integrity: sha512-85aZYCxweiD5J8yTEbw+E6A27zSnLPNDL0WfPdw3YYodq7WjnTKo0q4dtyQ2gz23iPT8Q9CUyJtAaUNcTxRf5Q==} dev: false /run-parallel/1.2.0: @@ -8766,7 +8338,7 @@ packages: dev: false optional: true - /sass-loader/12.6.0_sass@1.51.0+webpack@5.72.0: + /sass-loader/12.6.0_sass@1.52.2+webpack@5.73.0: resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -8787,17 +8359,17 @@ packages: dependencies: klona: 2.0.5 neo-async: 2.6.2 - sass: 1.51.0 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + sass: 1.52.2 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false - /sass/1.51.0: - resolution: {integrity: sha512-haGdpTgywJTvHC2b91GSq+clTKGbtkkZmVAb82jZQN/wTy6qs8DdFm2lhEQbEwrY0QDRgSQ3xDurqM977C3noA==} + /sass/1.52.2: + resolution: {integrity: sha512-mfHB2VSeFS7sZlPv9YohB9GB7yWIgQNTGniQwfQ04EoQN0wsQEv7SwpCwy/x48Af+Z3vDeFXz+iuXM3HK/phZQ==} engines: {node: '>=12.0.0'} hasBin: true dependencies: chokidar: 3.5.3 - immutable: 4.0.0 + immutable: 4.1.0 source-map-js: 1.0.2 dev: false @@ -8831,18 +8403,6 @@ packages: ajv-keywords: 5.1.0_ajv@8.11.0 dev: false - /scope-analyzer/2.1.2: - resolution: {integrity: sha512-5cfCmsTYV/wPaRIItNxatw02ua/MThdIUNnUOCYp+3LSEJvnG804ANw2VLaavNILIfWXF1D1G2KNANkBBvInwQ==} - dependencies: - array-from: 2.1.1 - dash-ast: 2.0.1 - es6-map: 0.1.5 - es6-set: 0.1.5 - es6-symbol: 3.1.3 - estree-is-function: 1.0.0 - get-assigned-identifiers: 1.2.0 - dev: false - /secure-json-parse/2.4.0: resolution: {integrity: sha512-Q5Z/97nbON5t/L/sH6mY2EacfjVGwrCcSi5D3btRO2GZ8pf1K1UN7Z9H5J57hjVU2Qzxr1xO+FmBhOvEkzCMmg==} dev: false @@ -8961,10 +8521,6 @@ packages: kind-of: 6.0.3 dev: false - /shallow-copy/0.0.1: - resolution: {integrity: sha1-QV9CcC1z2BAzApLMXuhurhoRoXA=} - dev: false - /shebang-command/2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} @@ -8982,19 +8538,19 @@ packages: dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.1 - object-inspect: 1.12.0 + object-inspect: 1.12.2 dev: false /signal-exit/3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} dev: false - /simplytyped/3.3.0_typescript@4.6.4: + /simplytyped/3.3.0_typescript@4.7.2: resolution: {integrity: sha512-mz4RaNdKTZiaKXgi6P1k/cdsxV3gz+y1Wh2NXHWD40dExktLh4Xx/h6MFakmQWODZHj/2rKe59acacpL74ZhQA==} peerDependencies: typescript: '>=2.8.0' dependencies: - typescript: 4.6.4 + typescript: 4.7.2 dev: false /sirv/1.0.19: @@ -9037,8 +8593,8 @@ packages: websocket-driver: 0.7.4 dev: false - /socks-proxy-agent/6.2.0: - resolution: {integrity: sha512-wWqJhjb32Q6GsrUqzuFkukxb/zzide5quXYcMVpIjxalDBBYy2nqKCFQ/9+Ie4dvOYSQdOk3hUlZSdzZOd3zMQ==} + /socks-proxy-agent/6.2.1: + resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 @@ -9052,7 +8608,7 @@ packages: resolution: {integrity: sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==} engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} dependencies: - ip: 1.1.5 + ip: 1.1.8 smart-buffer: 4.2.0 dev: false @@ -9091,15 +8647,6 @@ packages: source-map: 0.6.1 dev: false - /source-map/0.1.43: - resolution: {integrity: sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=} - engines: {node: '>=0.8.0'} - requiresBuild: true - dependencies: - amdefine: 1.0.1 - dev: false - optional: true - /source-map/0.5.7: resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=} engines: {node: '>=0.10.0'} @@ -9115,13 +8662,6 @@ packages: engines: {node: '>= 8'} dev: false - /source-map/0.8.0-beta.0: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: '>= 8'} - dependencies: - whatwg-url: 7.1.0 - dev: false - /sourcemap-codec/1.4.8: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} dev: false @@ -9189,22 +8729,6 @@ packages: resolution: {integrity: sha512-IpCr2tpnNkP3Jera4ncexsZUp0enJBLr+pHCyTweMUBrbJsTgQeLWx1FXLhoBj/MvcnUQpkgOn2EY8FKOkUzww==} dev: false - /sshpk/1.17.0: - resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==} - engines: {node: '>=0.10.0'} - hasBin: true - dependencies: - asn1: 0.2.6 - assert-plus: 1.0.0 - bcrypt-pbkdf: 1.0.2 - dashdash: 1.14.1 - ecc-jsbn: 0.1.2 - getpass: 0.1.7 - jsbn: 0.1.1 - safer-buffer: 2.1.2 - tweetnacl: 0.14.5 - dev: false - /stable/0.1.8: resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} dev: false @@ -9220,31 +8744,6 @@ packages: resolution: {integrity: sha512-h88QkzREN/hy8eRdyNhhsO7RSJ5oyTqxxmmn0dzBIMUclZsjpfmrsg81vp8mjjAs2vAZ72nyWxRUwSwmh0e4xg==} dev: false - /static-eval/2.1.0: - resolution: {integrity: sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==} - dependencies: - escodegen: 1.14.3 - dev: false - - /static-module/3.0.4: - resolution: {integrity: sha512-gb0v0rrgpBkifXCa3yZXxqVmXDVE+ETXj6YlC/jt5VzOnGXR2C15+++eXuMDUYsePnbhf+lwW0pE1UXyOLtGCw==} - dependencies: - acorn-node: 1.8.2 - concat-stream: 1.6.2 - convert-source-map: 1.8.0 - duplexer2: 0.1.4 - escodegen: 1.14.3 - has: 1.0.3 - magic-string: 0.25.1 - merge-source-map: 1.0.4 - object-inspect: 1.12.0 - readable-stream: 2.3.7 - scope-analyzer: 2.1.2 - shallow-copy: 0.0.1 - static-eval: 2.1.0 - through2: 2.0.5 - dev: false - /statuses/1.5.0: resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} engines: {node: '>= 0.6'} @@ -9261,9 +8760,9 @@ packages: readable-stream: 3.6.0 dev: false - /streamsearch/0.1.2: - resolution: {integrity: sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=} - engines: {node: '>=0.8.0'} + /streamsearch/1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} dev: false /string-argv/0.3.1: @@ -9297,7 +8796,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.19.5 + es-abstract: 1.20.1 dev: false /string.prototype.trimstart/1.0.5: @@ -9305,7 +8804,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.19.5 + es-abstract: 1.20.1 dev: false /string_decoder/1.1.1: @@ -9358,13 +8857,13 @@ packages: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} dev: false - /style-loader/3.3.1_webpack@5.72.0: + /style-loader/3.3.1_webpack@5.73.0: resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false /supports-color/5.5.0: @@ -9401,21 +8900,21 @@ packages: engines: {node: '>= 0.4'} dev: false - /svelte-check/2.7.0_bffe1cde49a25e50e21f81a4f51503ea: - resolution: {integrity: sha512-GrvG24j0+i8AOm0k0KyJ6Dqc+TAR2yzB7rtS4nljHStunVxCTr/1KYlv4EsOeoqtHLzeWMOd5D2O6nDdP/yw4A==} + /svelte-check/2.7.2_c1788f0bf13b393830d6c30602bd01af: + resolution: {integrity: sha512-TuVX4YtXHbRM8sVuK5Jk+mKWdm3f0d6hvAC6qCTp8yUszGZewpEBCo2V5fRWZCiz+0J4OCiDHOS+DFMxv39rJA==} hasBin: true peerDependencies: svelte: ^3.24.0 dependencies: + '@jridgewell/trace-mapping': 0.3.13 chokidar: 3.5.3 fast-glob: 3.2.11 import-fresh: 3.3.0 picocolors: 1.0.0 sade: 1.8.1 - source-map: 0.7.3 svelte: 3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -9433,8 +8932,8 @@ packages: resolution: {integrity: sha1-fRh9tcbNu9ZNdaMvkbiZi94yc8M=} dev: false - /svelte-hmr/0.14.11_svelte@3.48.0: - resolution: {integrity: sha512-R9CVfX6DXxW1Kn45Jtmx+yUe+sPhrbYSUp7TkzbW0jI5fVPn6lsNG9NEs5dFg5qRhFNAoVdRw5qQDLALNKhwbQ==} + /svelte-hmr/0.14.12_svelte@3.48.0: + resolution: {integrity: sha512-4QSW/VvXuqVcFZ+RhxiR8/newmwOCTlbYIezvkeN6302YFRE8cXy0naamHcjz8Y9Ce3ITTZtrHrIL0AGfyo61w==} engines: {node: ^12.20 || ^14.13.1 || >= 16} peerDependencies: svelte: '>=3.19.0' @@ -9442,18 +8941,18 @@ packages: svelte: 3.48.0 dev: false - /svelte-loader/3.1.2_svelte@3.48.0: - resolution: {integrity: sha512-RhVIvitb+mtIwKNyvNQoDQ0EhXg2KH8LhQiiqeJh8u6vqJyGWoMoFcYCar69TT+1iaK5IYe0wPNYJ6TILcsurw==} + /svelte-loader/3.1.3_svelte@3.48.0: + resolution: {integrity: sha512-B7HsKRrWaGB9RFef1t7JXbQ1npG/6J/Tka/ehv6pkxJx+QU9Dd8Sdi415IfhogpWEmH95VgsaWNrNU2GeBJ1VQ==} peerDependencies: svelte: '>3.0.0' dependencies: loader-utils: 2.0.2 svelte: 3.48.0 svelte-dev-helper: 1.1.9 - svelte-hmr: 0.14.11_svelte@3.48.0 + svelte-hmr: 0.14.12_svelte@3.48.0 dev: false - /svelte-preprocess/4.10.6_6851c101606d18b3be336719f14f900a: + /svelte-preprocess/4.10.6_0757fe126296bf9639251bcd13609b29: resolution: {integrity: sha512-I2SV1w/AveMvgIQlUF/ZOO3PYVnhxfcpNyGt8pxpUVhPfyfL/CZBkkw/KPfuFix5FJ9TnnNYMhACK3DtSaYVVQ==} engines: {node: '>= 9.11.2'} requiresBuild: true @@ -9498,13 +8997,13 @@ packages: '@types/sass': 1.43.1 detect-indent: 6.1.0 magic-string: 0.25.9 - postcss: 8.4.13 - postcss-load-config: 3.1.4_postcss@8.4.13+ts-node@10.5.0 - sass: 1.51.0 + postcss: 8.4.14 + postcss-load-config: 3.1.4_postcss@8.4.14+ts-node@10.8.0 + sass: 1.52.2 sorcery: 0.10.0 strip-indent: 3.0.0 svelte: 3.48.0 - typescript: 4.6.4 + typescript: 4.7.2 dev: false /svelte/3.48.0: @@ -9577,8 +9076,8 @@ packages: supports-hyperlinks: 2.2.0 dev: false - /terser-webpack-plugin/5.3.1_esbuild@0.12.29+webpack@5.72.0: - resolution: {integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==} + /terser-webpack-plugin/5.3.3_esbuild@0.12.29+webpack@5.73.0: + resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==} engines: {node: '>= 10.13.0'} peerDependencies: '@swc/core': '*' @@ -9593,23 +9092,23 @@ packages: uglify-js: optional: true dependencies: + '@jridgewell/trace-mapping': 0.3.13 esbuild: 0.12.29 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - source-map: 0.6.1 - terser: 5.13.1 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + terser: 5.14.0 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false - /terser/5.13.1: - resolution: {integrity: sha512-hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA==} + /terser/5.14.0: + resolution: {integrity: sha512-JC6qfIEkPBd9j1SMO3Pfn+A6w2kQV54tv+ABQLgZr7dA3k/DL/OBoYSWxzVpZev3J+bUHXfr55L8Mox7AaNo6g==} engines: {node: '>=10'} hasBin: true dependencies: + '@jridgewell/source-map': 0.3.2 acorn: 8.7.1 commander: 2.20.3 - source-map: 0.8.0-beta.0 source-map-support: 0.5.21 dev: false @@ -9618,7 +9117,7 @@ packages: engines: {node: '>=8'} dependencies: '@istanbuljs/schema': 0.1.3 - glob: 7.2.0 + glob: 7.2.3 minimatch: 3.1.2 dev: false @@ -9630,17 +9129,6 @@ packages: resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==} dev: false - /through/2.3.8: - resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} - dev: false - - /through2/2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} - dependencies: - readable-stream: 2.3.7 - xtend: 4.0.2 - dev: false - /through2/3.0.2: resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==} dependencies: @@ -9696,14 +9184,6 @@ packages: engines: {node: '>=6'} dev: false - /tough-cookie/2.5.0: - resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} - engines: {node: '>=0.8'} - dependencies: - psl: 1.8.0 - punycode: 2.1.1 - dev: false - /tough-cookie/4.0.0: resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==} engines: {node: '>=6'} @@ -9713,12 +9193,6 @@ packages: universalify: 0.1.2 dev: false - /tr46/1.0.1: - resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=} - dependencies: - punycode: 2.1.1 - dev: false - /tr46/2.1.0: resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} engines: {node: '>=8'} @@ -9747,7 +9221,7 @@ packages: resolution: {integrity: sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==} dev: false - /ts-loader/9.3.0_typescript@4.6.4+webpack@5.72.0: + /ts-loader/9.3.0_typescript@4.7.2+webpack@5.73.0: resolution: {integrity: sha512-2kLLAdAD+FCKijvGKi9sS0OzoqxLCF3CxHpok7rVgCZ5UldRzH0TkbwG9XECKjBzHsAewntC5oDaI/FwKzEUog==} engines: {node: '>=12.0.0'} peerDependencies: @@ -9758,12 +9232,12 @@ packages: enhanced-resolve: 5.9.3 micromatch: 4.0.5 semver: 7.3.7 - typescript: 4.6.4 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + typescript: 4.7.2 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false - /ts-node/10.5.0_fd4b5ff48b408bf425abfec4a641da13: - resolution: {integrity: sha512-6kEJKwVxAJ35W4akuiysfKwKmjkbYxwQMTBaAxo9KKAx/Yd26mPUyhGz3ji+EsJoAgrLqVsYHNuuYwQe22lbtw==} + /ts-node/10.8.0_08e84cade539e9a9016ef48bfdf07f6c: + resolution: {integrity: sha512-/fNd5Qh+zTt8Vt1KbYZjRHCE9sI5i7nqfD/dzBBRDeVXZXS6kToW6R7tTU6Nd4XavFs0mAVCg29Q//ML7WsZYA==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -9776,19 +9250,19 @@ packages: '@swc/wasm': optional: true dependencies: - '@cspotcode/source-map-support': 0.7.0 + '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.8 '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 16.11.33 + '@types/node': 16.11.38 acorn: 8.7.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.6.4 + typescript: 4.7.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: false @@ -9815,24 +9289,14 @@ packages: engines: {node: '>=0.6.x'} dev: false - /tsutils/3.21.0_typescript@4.6.4: + /tsutils/3.21.0_typescript@4.7.2: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.6.4 - dev: false - - /tunnel-agent/0.6.0: - resolution: {integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=} - dependencies: - safe-buffer: 5.2.1 - dev: false - - /tweetnacl/0.14.5: - resolution: {integrity: sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=} + typescript: 4.7.2 dev: false /type-check/0.3.2: @@ -9882,30 +9346,24 @@ packages: mime-types: 2.1.35 dev: false - /type/1.2.0: - resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==} - dev: false - - /type/2.6.0: - resolution: {integrity: sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==} - dev: false - /typedarray-to-buffer/3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: is-typedarray: 1.0.0 dev: false - /typedarray/0.0.6: - resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=} - dev: false - /typescript/4.6.4: resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==} engines: {node: '>=4.2.0'} hasBin: true dev: false + /typescript/4.7.2: + resolution: {integrity: sha512-Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: false + /unbox-primitive/1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: @@ -9933,20 +9391,6 @@ packages: resolution: {integrity: sha1-YSDOPDkDhdvND2DDK5BlxBgdSzY=} dev: false - /unicode-trie/0.3.1: - resolution: {integrity: sha1-1nHd3YkQGgi6w3tqUWEBBgIFIIU=} - dependencies: - pako: 0.2.9 - tiny-inflate: 1.0.3 - dev: false - - /unicode-trie/1.0.0: - resolution: {integrity: sha512-v5raLKsobbFbWLMoX9+bChts/VhPPj3XpkNr/HbqkirXR1DPk8eo9IYKyvk0MQZFkaoRsFj2Rmaqgi2rfAZYtA==} - dependencies: - pako: 0.2.9 - tiny-inflate: 1.0.3 - dev: false - /unicode-trie/2.0.0: resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} dependencies: @@ -9980,9 +9424,9 @@ packages: inherits: 2.0.4 is-arguments: 1.1.1 is-generator-function: 1.0.10 - is-typed-array: 1.1.8 + is-typed-array: 1.1.9 safe-buffer: 5.2.1 - which-typed-array: 1.1.7 + which-typed-array: 1.1.8 dev: false /utila/0.4.0: @@ -9994,12 +9438,6 @@ packages: engines: {node: '>= 0.4.0'} dev: false - /uuid/3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - dev: false - /uuid/8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true @@ -10039,15 +9477,6 @@ packages: engines: {node: '>= 0.8'} dev: false - /verror/1.10.0: - resolution: {integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=} - engines: {'0': node >=0.6.0} - dependencies: - assert-plus: 1.0.0 - core-util-is: 1.0.2 - extsprintf: 1.3.0 - dev: false - /w3c-hr-time/1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} dependencies: @@ -10071,8 +9500,8 @@ packages: makeerror: 1.0.12 dev: false - /watchpack/2.3.1: - resolution: {integrity: sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==} + /watchpack/2.4.0: + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 @@ -10093,10 +9522,6 @@ packages: '@zxing/text-encoding': 0.9.0 dev: false - /webidl-conversions/4.0.2: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} - dev: false - /webidl-conversions/5.0.0: resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} engines: {node: '>=8'} @@ -10125,13 +9550,13 @@ packages: lodash: 4.17.21 opener: 1.5.2 sirv: 1.0.19 - ws: 7.5.7 + ws: 7.5.8 transitivePeerDependencies: - bufferutil - utf-8-validate dev: false - /webpack-cli/4.9.2_a0d31263581cf2badb6e37c16bc9b287: + /webpack-cli/4.9.2_2bff2f48c762780731ffbdff7d75fc65: resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -10152,9 +9577,9 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.1.1_webpack-cli@4.9.2+webpack@5.72.0 + '@webpack-cli/configtest': 1.1.1_webpack-cli@4.9.2+webpack@5.73.0 '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2 - '@webpack-cli/serve': 1.6.1_8b27d5839a2bdf89ba2338e4c89fea10 + '@webpack-cli/serve': 1.6.1_b461ff3bae581dd5015735efcda10b9d colorette: 2.0.16 commander: 7.2.0 execa: 5.1.1 @@ -10162,28 +9587,28 @@ packages: import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 webpack-bundle-analyzer: 4.5.0 - webpack-dev-server: 4.8.1_webpack-cli@4.9.2+webpack@5.72.0 + webpack-dev-server: 4.9.1_webpack-cli@4.9.2+webpack@5.73.0 webpack-merge: 5.8.0 dev: false - /webpack-dev-middleware/5.3.1_webpack@5.72.0: - resolution: {integrity: sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==} + /webpack-dev-middleware/5.3.3_webpack@5.73.0: + resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: colorette: 2.0.16 - memfs: 3.4.1 + memfs: 3.4.4 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 dev: false - /webpack-dev-server/4.8.1_webpack-cli@4.9.2+webpack@5.72.0: - resolution: {integrity: sha512-dwld70gkgNJa33czmcj/PlKY/nOy/BimbrgZRaR9vDATBQAYgLzggR0nxDtPLJiLrMgZwbE6RRfJ5vnBBasTyg==} + /webpack-dev-server/4.9.1_webpack-cli@4.9.2+webpack@5.73.0: + resolution: {integrity: sha512-CTMfu2UMdR/4OOZVHRpdy84pNopOuigVIsRbGX3LVDMWNP8EUgC5mUBMErbwBlHTEX99ejZJpVqrir6EXAEajA==} engines: {node: '>= 12.13.0'} hasBin: true peerDependencies: @@ -10213,17 +9638,16 @@ packages: ipaddr.js: 2.0.1 open: 8.4.0 p-retry: 4.6.2 - portfinder: 1.0.28 rimraf: 3.0.2 schema-utils: 4.0.0 selfsigned: 2.0.1 serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 - webpack-cli: 4.9.2_a0d31263581cf2badb6e37c16bc9b287 - webpack-dev-middleware: 5.3.1_webpack@5.72.0 - ws: 8.6.0 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 + webpack-cli: 4.9.2_2bff2f48c762780731ffbdff7d75fc65 + webpack-dev-middleware: 5.3.3_webpack@5.73.0 + ws: 8.7.0 transitivePeerDependencies: - bufferutil - debug @@ -10244,8 +9668,8 @@ packages: engines: {node: '>=10.13.0'} dev: false - /webpack/5.72.0_7c84ffaa370635508ab32134092fd9e6: - resolution: {integrity: sha512-qmSmbspI0Qo5ld49htys8GY9XhS9CGqFoHTsOVAnjBdg0Zn79y135R+k4IR4rKK6+eKaabMhJwiVB7xw0SJu5w==} + /webpack/5.73.0_7c84ffaa370635508ab32134092fd9e6: + resolution: {integrity: sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -10269,15 +9693,15 @@ packages: events: 3.3.0 glob-to-regexp: 0.4.1 graceful-fs: 4.2.10 - json-parse-better-errors: 1.0.2 + json-parse-even-better-errors: 2.3.1 loader-runner: 4.3.0 mime-types: 2.1.35 neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.1_esbuild@0.12.29+webpack@5.72.0 - watchpack: 2.3.1 - webpack-cli: 4.9.2_a0d31263581cf2badb6e37c16bc9b287 + terser-webpack-plugin: 5.3.3_esbuild@0.12.29+webpack@5.73.0 + watchpack: 2.4.0 + webpack-cli: 4.9.2_2bff2f48c762780731ffbdff7d75fc65 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -10317,14 +9741,6 @@ packages: webidl-conversions: 7.0.0 dev: false - /whatwg-url/7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} - dependencies: - lodash.sortby: 4.7.0 - tr46: 1.0.1 - webidl-conversions: 4.0.2 - dev: false - /whatwg-url/8.7.0: resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} engines: {node: '>=10'} @@ -10353,16 +9769,16 @@ packages: is-weakset: 2.0.2 dev: false - /which-typed-array/1.1.7: - resolution: {integrity: sha512-vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw==} + /which-typed-array/1.1.8: + resolution: {integrity: sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 - es-abstract: 1.19.5 - foreach: 2.0.5 + es-abstract: 1.20.1 + for-each: 0.3.3 has-tostringtag: 1.0.0 - is-typed-array: 1.1.8 + is-typed-array: 1.1.9 dev: false /which/2.0.2: @@ -10395,8 +9811,8 @@ packages: typedarray-to-buffer: 3.1.5 dev: false - /ws/7.5.7: - resolution: {integrity: sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==} + /ws/7.5.8: + resolution: {integrity: sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 @@ -10408,8 +9824,8 @@ packages: optional: true dev: false - /ws/8.6.0: - resolution: {integrity: sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==} + /ws/8.7.0: + resolution: {integrity: sha512-c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -10446,11 +9862,6 @@ packages: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} dev: false - /xtend/4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - dev: false - /yallist/2.1.2: resolution: {integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=} dev: false @@ -10508,18 +9919,18 @@ packages: '@types/heft-jest': 1.0.2 '@types/minio': 7.0.13 '@types/ws': 8.5.3 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 minio: 7.0.28 - mongodb: 4.5.0 + mongodb: 4.6.0 prettier: 2.6.2 - typescript: 4.6.4 - ws: 8.6.0 + typescript: 4.7.2 + ws: 8.7.0 transitivePeerDependencies: - bufferutil - eslint-import-resolver-typescript @@ -10535,44 +9946,44 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/activity-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-Pt5j/Yn0aFiHU0vGNbxHFtReqUH99VBmkCilUByqpPL5uhk2WzNy/HFTJh1xW88PCwQXn+J6UR8C4qwoCeK83w==, tarball: file:projects/activity-resources.tgz} + file:projects/activity-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-3qOFOo1wgN0U2L66jIpfdizhweVg+Bt+CblBFjdpQD8anPqMX5Bpm4LbCqQfACtY+XSl92anmiCEYfvQbTL0rw==, tarball: file:projects/activity-resources.tgz} id: file:projects/activity-resources.tgz name: '@rush-temp/activity-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -10595,22 +10006,22 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/attachment-assets.tgz_typescript@4.6.4: + file:projects/attachment-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-s9PKjY1/XZMB4N45FtwTZ3UowF9BFP4rReA+y9k7cSeXfhZJ24i5mKUNUD+Ib8Z4ttOA4v1QCoJvSipisdaTfA==, tarball: file:projects/attachment-assets.tgz} id: file:projects/attachment-assets.tgz name: '@rush-temp/attachment-assets' @@ -10618,12 +10029,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -10634,29 +10045,29 @@ packages: - typescript dev: false - file:projects/attachment-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-7LnFbfVU2qD7usGdNW9vjS+GzGg61Pgw6gsYX/MKNcHstr4/QcxlwvGflgu7WyseaQuejkRYZVXWtJaHvPTXOQ==, tarball: file:projects/attachment-resources.tgz} + file:projects/attachment-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-vRkofhKMTx0BET2H8QFKCBc+r4M0bToiVzUU6Sm+DPO55mk7Oeqjj7haOY1UViRDXEIWO4jPWFs4j/sNtJrBMw==, tarball: file:projects/attachment-resources.tgz} id: file:projects/attachment-resources.tgz name: '@rush-temp/attachment-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 filesize: 8.0.7 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -10679,22 +10090,22 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/board-assets.tgz_typescript@4.6.4: + file:projects/board-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-cnaqyRiwKUSLi9RgFQpYqIN4PyW85s77OzOovNq1cT0cJqHycMJN1CaXIDIBrlTrFS0TCOeTpUyMamq0b0rBOQ==, tarball: file:projects/board-assets.tgz} id: file:projects/board-assets.tgz name: '@rush-temp/board-assets' @@ -10702,12 +10113,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -10718,28 +10129,28 @@ packages: - typescript dev: false - file:projects/board-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-2F+TLiTWGKuAzq/Ormj5tG3WRx18o4tfqC1CmIQ41lieT+JPGOnjXCfXDM7VXrvcz/YFOmXQUwYbEcPj3+y5CA==, tarball: file:projects/board-resources.tgz} + file:projects/board-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-w+kRFUu+Sq2MMJETg3o4w1OT8DtwidTB3g3g87DJrVFIHFrk3Fa++wWPzka/RN8vTThWEyLO/P6gE5HLZT8G+w==, tarball: file:projects/board-resources.tgz} id: file:projects/board-resources.tgz name: '@rush-temp/board-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -10762,22 +10173,22 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/calendar-assets.tgz_typescript@4.6.4: + file:projects/calendar-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-dTJIrX++BX3W5+fsyvz9wjiYQqoZvXUX/bQU7lyVTOLlC5XH7si8HER+wHoVhc2DYO+G8RteptIAuliCT51Zbg==, tarball: file:projects/calendar-assets.tgz} id: file:projects/calendar-assets.tgz name: '@rush-temp/calendar-assets' @@ -10785,12 +10196,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -10801,28 +10212,28 @@ packages: - typescript dev: false - file:projects/calendar-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-u8jsUr4itApMacJAbKwnoT7ekVZb8J8ygf0ic++KK20/4aIlYMy0hOUNtp2hNc/sXi5N6H5+pzkO+Cuol+EaBw==, tarball: file:projects/calendar-resources.tgz} + file:projects/calendar-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-+GEcOVdBHWflQlunqzvqqjvoZHYJjtdc3AtFKATGn+jDtFvM18XTsc/fRVKJ4AQqfHEYd1S/+OcFtUYsEM9ZIw==, tarball: file:projects/calendar-resources.tgz} id: file:projects/calendar-resources.tgz name: '@rush-temp/calendar-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -10845,22 +10256,22 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/chunter-assets.tgz_typescript@4.6.4: + file:projects/chunter-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-0fG9nDQIa9jvT7aUfvsYYqyYO3pZuSQtAN9fqA1ZIFKCk9IeKFwX0NWw9dtfUohEBT2iIMBppSkJqLS+9I8Hvw==, tarball: file:projects/chunter-assets.tgz} id: file:projects/chunter-assets.tgz name: '@rush-temp/chunter-assets' @@ -10868,12 +10279,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -10884,29 +10295,29 @@ packages: - typescript dev: false - file:projects/chunter-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-0Ky+HnrxF3cQe/YSrZycxJwW9dJmn+0+bJx4tb4Hlcf14/agLl/ayNtqP8EVHhRK2W1dax0sQzYWPFiV5KNTBQ==, tarball: file:projects/chunter-resources.tgz} + file:projects/chunter-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-hGY42Nm8WN8xitrfk9Z56o/r8a09cytzluQ8o4ifrZ63vDHfU4Jy6EP2fGUrdwMRr8jx1R9PFpAsjp8H5IUWzw==, tarball: file:projects/chunter-resources.tgz} id: file:projects/chunter-resources.tgz name: '@rush-temp/chunter-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 fast-equals: 2.0.4 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -10929,22 +10340,22 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/client-resources.tgz_bffe1cde49a25e50e21f81a4f51503ea: + file:projects/client-resources.tgz_c1788f0bf13b393830d6c30602bd01af: resolution: {integrity: sha512-xc2G4fDld5Kfgo6onrCfKwZjj3CVe7m8Ybuw1pTpZK9U55f4vZAmopCmZpS/z6uf1CjFXUZQrAKrCbAziu5iUg==, tarball: file:projects/client-resources.tgz} id: file:projects/client-resources.tgz name: '@rush-temp/client-resources' @@ -10952,16 +10363,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -10986,22 +10397,22 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/contact-assets.tgz_typescript@4.6.4: + file:projects/contact-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-vs6AvgGBIqADKg41lDiSacsS52PkbtfHYuRPzcPqLhtjIwUFRH3976CN8pQLcUrKAkDXWTxXtGDSFL29P+7gEQ==, tarball: file:projects/contact-assets.tgz} id: file:projects/contact-assets.tgz name: '@rush-temp/contact-assets' @@ -11009,12 +10420,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -11025,28 +10436,28 @@ packages: - typescript dev: false - file:projects/contact-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-H6XB+kVEQcf7rlA6VfbYbuUs4BfVkM9DiTLWCzcseEW0QlNzgbF/OkzBsow3KwIe+nxFlnvfmkJ98Y5dISw/1g==, tarball: file:projects/contact-resources.tgz} + file:projects/contact-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-emAawKeZ3rkJfH0KM59uoKyBBjXhxQkDlOuZhAHgpyCwK/6aJysXuVNTtg5IpqKo6ug3GQWhp1QUWWyIpr7SPQ==, tarball: file:projects/contact-resources.tgz} id: file:projects/contact-resources.tgz name: '@rush-temp/contact-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -11069,15 +10480,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -11091,18 +10502,18 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/ws': 8.5.3 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 - ws: 8.6.0 + typescript: 4.7.2 + ws: 8.7.0 transitivePeerDependencies: - bufferutil - eslint-import-resolver-typescript @@ -11118,16 +10529,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - simplytyped: 3.3.0_typescript@4.6.4 - typescript: 4.6.4 + simplytyped: 3.3.0_typescript@4.7.2 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -11141,16 +10552,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - simplytyped: 3.3.0_typescript@4.6.4 - typescript: 4.6.4 + simplytyped: 3.3.0_typescript@4.7.2 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -11164,40 +10575,40 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/dev-server.tgz_@types+node@16.11.33: - resolution: {integrity: sha512-bPk1p0rk7GTgq3ug4VsXa1L5V1slf8ceI8nVXtI1LcZL8XNGDdn6Bt5wV6mIOmSl2eHAB1IyMY9K+TJWGqsNCQ==, tarball: file:projects/dev-server.tgz} + file:projects/dev-server.tgz_@types+node@16.11.38: + resolution: {integrity: sha512-BMjoIPlK/yE1WlLvueZwomyd8YJkAUT/Yz/+EiUupNzCVt9xDsf1cZFAz3dAsXJEvbXQEtyQ2PnTJ9OAdoKDDg==, tarball: file:projects/dev-server.tgz} id: file:projects/dev-server.tgz name: '@rush-temp/dev-server' version: 0.0.0 dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 jwt-simple: 0.5.6 prettier: 2.6.2 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c + typescript: 4.7.2 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -11214,42 +10625,42 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/devmodel-resources.tgz_8aa3038c4a34f0944bc8ec8757e97eb6: - resolution: {integrity: sha512-pXy0uOK/yaIMEepIwpIEM4Ly62ex8Wzmmr7QzPsKmmohTMyt5j7NMFx8Xw2XUhvQb9x7GIWDgQ/GSrNhbBWVMA==, tarball: file:projects/devmodel-resources.tgz} + file:projects/devmodel-resources.tgz_98a0b9c9098a3549e1ac525033e9d1f6: + resolution: {integrity: sha512-s8Jm0EvmQ07SzCxde4rzxfw9r4bZ0bNj7eUnZPwmEa87PIigRoR84vdjItPuQKokybVhDG3yJjJiIsGiv6ivvw==, tarball: file:projects/devmodel-resources.tgz} id: file:projects/devmodel-resources.tgz name: '@rush-temp/devmodel-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -11266,7 +10677,7 @@ packages: - typescript dev: false - file:projects/devmodel.tgz_typescript@4.6.4: + file:projects/devmodel.tgz_typescript@4.7.2: resolution: {integrity: sha512-OsJOqUxzdMDW+a/AqDj1BI4i1DaLzBH1N3wIJsRwtpejNuLp3S5HY7QlY/8iBON2L4qlXmzqG1jkxSOJnf21XA==, tarball: file:projects/devmodel.tgz} id: file:projects/devmodel.tgz name: '@rush-temp/devmodel' @@ -11274,11 +10685,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -11289,8 +10700,8 @@ packages: - typescript dev: false - file:projects/elastic.tgz_@types+node@16.11.33: - resolution: {integrity: sha512-4sr9MSp5biIU5RR+b9BKfkdptbbSjkTLrlTVHQ5nhU8MsTCYTJtzgttcP/h7PsMDe2w1wj0bsEsjSsw+rRslGg==, tarball: file:projects/elastic.tgz} + file:projects/elastic.tgz_@types+node@16.11.38: + resolution: {integrity: sha512-1MGrMQ+8DFeF/EoCA9z79vQrX/CCAJxYG0B+YYtbvMx5FM9EZ4mqz5FO1Wdl9MSlhBPdSQpUoxJYZRe+AXOI4g==, tarball: file:projects/elastic.tgz} id: file:projects/elastic.tgz name: '@rush-temp/elastic' version: 0.0.0 @@ -11298,16 +10709,16 @@ packages: '@elastic/elasticsearch': 7.17.0 '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c + typescript: 4.7.2 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -11318,7 +10729,7 @@ packages: dev: false file:projects/front.tgz: - resolution: {integrity: sha512-3N8Djur3K/7pJLBlZMfXROc/wJ/xTM+c9YQTpEsmJT/x5RLFcHGHJNzddOd9NaqQW/2c1dlafB3Yn5FltHejRw==, tarball: file:projects/front.tgz} + resolution: {integrity: sha512-/9Lgnz2uymkFXEOrFj1sT1fvaMUhbQs9gtC7tdBUqd0xr16RBzf9+Oi7bcQY6QIQfFpMkLbk1pcsjl+IThWtvQ==, tarball: file:projects/front.tgz} name: '@rush-temp/front' version: 0.0.0 dependencies: @@ -11330,26 +10741,26 @@ packages: '@types/express-fileupload': 1.2.2 '@types/heft-jest': 1.0.2 '@types/minio': 7.0.13 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/uuid': 8.3.4 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 body-parser: 1.19.2 compression: 1.7.4 cors: 2.8.5 cross-env: 7.0.3 esbuild: 0.12.29 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 express: 4.18.1 - express-fileupload: 1.3.1 + express-fileupload: 1.4.0 minio: 7.0.28 prettier: 2.6.2 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c + typescript: 4.7.2 uuid: 8.3.2 transitivePeerDependencies: - '@swc/core' @@ -11360,7 +10771,7 @@ packages: dev: false file:projects/generator.tgz: - resolution: {integrity: sha512-9pmHwXFdFqUNPY1pCBCHvVHYZjAo0TThvnshm+qOvFlSHdzuOAhg/HiXjVbNIbKzZ7S27cqHh0p0fOAZz4+9Tg==, tarball: file:projects/generator.tgz} + resolution: {integrity: sha512-B9Z7km0dpyu+0HUEuGJ3TOPnxIbBLaK4WVWvh/kGS7Q9fohT6uxObXEU5cBo5NdHhoauw2cFHgEQ67dwsqQXwg==, tarball: file:projects/generator.tgz} name: '@rush-temp/generator' version: 0.0.0 dependencies: @@ -11368,16 +10779,16 @@ packages: '@types/faker': 5.5.9 '@types/heft-jest': 1.0.2 '@types/minio': 7.0.13 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/pdfkit': 0.12.6 '@types/ws': 8.5.3 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 commander: 8.3.0 esbuild: 0.12.29 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 faker: 5.5.3 @@ -11385,9 +10796,9 @@ packages: minio: 7.0.28 pdfkit: 0.13.0 prettier: 2.6.2 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - ws: 8.6.0 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c + typescript: 4.7.2 + ws: 8.7.0 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -11405,44 +10816,44 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/gmail-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-cQDIVC9L/ogQcBbhcfWcNI4O+Bj42+y4QWzjXM1j7w08xM4XieXK7NaZniIOqEpzp4Q95L0SjvsFHuN6d27fjg==, tarball: file:projects/gmail-resources.tgz} + file:projects/gmail-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-EBvYyyxzAKJR10eXGS6GHpAVBEPLVge/cSYqPhUjZCgIWGyNpghdS+N9oZIjrhly/GHYxTx57xc8I29/t0XxaQ==, tarball: file:projects/gmail-resources.tgz} id: file:projects/gmail-resources.tgz name: '@rush-temp/gmail-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -11465,45 +10876,45 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/image-cropper-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-SCLlXPN4D6piqrI1mOfl0+75XGhSW/USqPCJMJTv70wZJZYa1pql+HAuSR4Dc4gQrdwtk8c4uEJX8BKb+hnnHA==, tarball: file:projects/image-cropper-resources.tgz} + file:projects/image-cropper-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-8whE1ZAsPDruwYl6MT6HEWi5zFPGLg3fsYmvdDL2cx1KmDH421bm+M5kkq+Ok5HUV8jYoQRK00zvX8Awz4e+lQ==, tarball: file:projects/image-cropper-resources.tgz} id: file:projects/image-cropper-resources.tgz name: '@rush-temp/image-cropper-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 cropperjs: 1.5.12 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 smartcrop: 2.0.5 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -11526,15 +10937,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -11548,44 +10959,44 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/inventory-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-k+Zgh6OwI3UewI5nDbts+gQZkf3JbGuTjYrLM4jS0OJGmbhNwjtSSXF91KsiKbdrXLxDamFxpNwboWrs6u03VQ==, tarball: file:projects/inventory-resources.tgz} + file:projects/inventory-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-3YUDxPBzxblFyyuHhLQFzGXEp1sQKP3AbvglEUkHVD5CgUZRcYkGSv+vkZdjNu3hfxeMCSobkK7FnI5L2M9ADg==, tarball: file:projects/inventory-resources.tgz} id: file:projects/inventory-resources.tgz name: '@rush-temp/inventory-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -11608,44 +11019,44 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/kanban.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-Han5vFtVajtxzRkPOzz/de4x3IUR9u+AJ51iDZg6PZw+y5FRgVFQO8SsDw8ueOI3bcqM+FWiFMliDUB+9BKNHw==, tarball: file:projects/kanban.tgz} + file:projects/kanban.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-kCzGLgyDN/QDuh64Dn6VrWNsGU6VJc0cmxZ3nrqPt4BLpGhmA0SstyTLLNwwb9hbaio3LuSOL7nLC7x9gcUhhw==, tarball: file:projects/kanban.tgz} id: file:projects/kanban.tgz name: '@rush-temp/kanban' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 lexorank: 1.0.4 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -11661,7 +11072,7 @@ packages: - supports-color dev: false - file:projects/lead-assets.tgz_typescript@4.6.4: + file:projects/lead-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-2WNheXZVlbWeFX1I+yK/e1B7ZmMco2RROsPQ/zLmVPSVV7Sf6hpLdy4kInwFUYIRrjfhl3LwIyp4Wxn9f8hooQ==, tarball: file:projects/lead-assets.tgz} id: file:projects/lead-assets.tgz name: '@rush-temp/lead-assets' @@ -11669,12 +11080,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -11685,28 +11096,28 @@ packages: - typescript dev: false - file:projects/lead-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-5M9TPnl9Wl//MlBtIqp8diRMslpjOO0pdoq++OxgKqxG5+MUXq+TRQ6hmllrwWrEaC4olqeWng8QwoL/3InoUw==, tarball: file:projects/lead-resources.tgz} + file:projects/lead-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-xCJGn2Ga443gFR2MKQzxaKq+S4kbbpd1VdtNJbKQj8BuJ2kb0QJnfOV0aa5wLO8ATf50Y7JtI7WWiUXWJTSmxg==, tarball: file:projects/lead-resources.tgz} id: file:projects/lead-resources.tgz name: '@rush-temp/lead-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -11729,22 +11140,22 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/login-assets.tgz_typescript@4.6.4: + file:projects/login-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-XtNl7Dbl8Yqh6Hch/rkoYEUpyX8ddQyhy1Q43d0tCdgAB6xFEn9S/DR9KBh/8UHg/dEqGcZz4Bkhd7Zw2aqR5Q==, tarball: file:projects/login-assets.tgz} id: file:projects/login-assets.tgz name: '@rush-temp/login-assets' @@ -11752,12 +11163,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -11768,28 +11179,28 @@ packages: - typescript dev: false - file:projects/login-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-NM5ASZ51LO6nG/+f24JOQlwQbaEsiCuXcFqz7/Wl9wJUg3JS+NapdgzqQKrB8Zj8woXKwpQRdMMCWtm/ia+G+w==, tarball: file:projects/login-resources.tgz} + file:projects/login-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-z/UZS/JzqzigMk6IlK5Bqj/85K9Rto2HujvHzvID+jYKQ23YnuWjNbHm+8s8R4DXh42vpjeSTwi6RxtS+VWzZQ==, tarball: file:projects/login-resources.tgz} id: file:projects/login-resources.tgz name: '@rush-temp/login-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -11812,15 +11223,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -11834,22 +11245,22 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/model-activity.tgz_typescript@4.6.4: + file:projects/model-activity.tgz_typescript@4.7.2: resolution: {integrity: sha512-B2Sy5Y2DrH82TBCQ12muyF9TQ62u7PEzvg6smW0LlNFy2I2F0ggilbCE7cRSCbgupdCC604/kdaS4ZSxhZoT7w==, tarball: file:projects/model-activity.tgz} id: file:projects/model-activity.tgz name: '@rush-temp/model-activity' @@ -11857,11 +11268,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -11872,24 +11283,24 @@ packages: - typescript dev: false - file:projects/model-all.tgz_typescript@4.6.4: - resolution: {integrity: sha512-4GIwBd7qx2Xxfopo/KCNFL7DsdcjpqGIDVOacP4l6GmjphKpuaoIMgmdzz2QF+Pr55VvIB4R7LHYCLjedtmilw==, tarball: file:projects/model-all.tgz} + file:projects/model-all.tgz_typescript@4.7.2: + resolution: {integrity: sha512-Ard+150yL0Y2NaemClMs5TuSMqKu2oFyYI7oy2WfnHtMzow+H4WEk68FHB/zC2D6KNWi51H6RZ1dIc2+9gcGUg==, tarball: file:projects/model-all.tgz} id: file:projects/model-all.tgz name: '@rush-temp/model-all' version: 0.0.0 dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -11899,7 +11310,7 @@ packages: - typescript dev: false - file:projects/model-attachment.tgz_typescript@4.6.4: + file:projects/model-attachment.tgz_typescript@4.7.2: resolution: {integrity: sha512-iQ8b+vcnlBllxsMOMHGjLgoumCouLfj8WuTn4Sn9CzHUuQp4l6KpYhed4nL7NRWtAKDiCTOLThjef2uBtOTBnw==, tarball: file:projects/model-attachment.tgz} id: file:projects/model-attachment.tgz name: '@rush-temp/model-attachment' @@ -11907,11 +11318,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -11922,7 +11333,7 @@ packages: - typescript dev: false - file:projects/model-board.tgz_typescript@4.6.4: + file:projects/model-board.tgz_typescript@4.7.2: resolution: {integrity: sha512-BDGUx3OP3/eowFfmRWMZnFcAj9Oa6orfKBNrYh6F2lqKhBeDwBGvdSYurtm2n4/ISaK0bZaSgM0reRKn63oDsA==, tarball: file:projects/model-board.tgz} id: file:projects/model-board.tgz name: '@rush-temp/model-board' @@ -11930,11 +11341,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -11945,7 +11356,7 @@ packages: - typescript dev: false - file:projects/model-calendar.tgz_typescript@4.6.4: + file:projects/model-calendar.tgz_typescript@4.7.2: resolution: {integrity: sha512-jlZQwiw1L5REzrPCk2LtOvZaxj8wgv9Y46ZSfTl97grlNTP57L0Q5Docll4khkBK1tPjdfcE7xBWMn+oiFUfNg==, tarball: file:projects/model-calendar.tgz} id: file:projects/model-calendar.tgz name: '@rush-temp/model-calendar' @@ -11953,11 +11364,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -11968,7 +11379,7 @@ packages: - typescript dev: false - file:projects/model-chunter.tgz_typescript@4.6.4: + file:projects/model-chunter.tgz_typescript@4.7.2: resolution: {integrity: sha512-Bdx7vuflisO+vKteaUWsqJ6oqAtyJvX2zHcJrVc14GWV4RiSfy99/nDnVWN1+fyAm4jrNCTNFiWOQaT/9ipDlQ==, tarball: file:projects/model-chunter.tgz} id: file:projects/model-chunter.tgz name: '@rush-temp/model-chunter' @@ -11976,11 +11387,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -11991,7 +11402,7 @@ packages: - typescript dev: false - file:projects/model-contact.tgz_typescript@4.6.4: + file:projects/model-contact.tgz_typescript@4.7.2: resolution: {integrity: sha512-YcuQBjpqHjvTwBbcYHoBgM+b1VwMPsd3Wei4GLhHL2uOF6TKUG1bbz3z/p3kv/SwMrDVszOxUD1LkNHb+x5oNA==, tarball: file:projects/model-contact.tgz} id: file:projects/model-contact.tgz name: '@rush-temp/model-contact' @@ -11999,11 +11410,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12014,7 +11425,7 @@ packages: - typescript dev: false - file:projects/model-core.tgz_typescript@4.6.4: + file:projects/model-core.tgz_typescript@4.7.2: resolution: {integrity: sha512-SKLstDOmOhxHsOlT925AsH6xXmBj4ypK8OMbPFyvavrIAy00fLt4KtJcBoCAlPWIWHZ4T7E8neL23QNPluBfuw==, tarball: file:projects/model-core.tgz} id: file:projects/model-core.tgz name: '@rush-temp/model-core' @@ -12022,11 +11433,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12037,7 +11448,7 @@ packages: - typescript dev: false - file:projects/model-demo.tgz_typescript@4.6.4: + file:projects/model-demo.tgz_typescript@4.7.2: resolution: {integrity: sha512-mK8YIeazsGlbeMtP4TGf8VVv43HK6ttxzLXOfkdpyMOAno5CvU2+jXSMAs1BoaTWM+8odWlYzSmZyj2E2S8xIQ==, tarball: file:projects/model-demo.tgz} id: file:projects/model-demo.tgz name: '@rush-temp/model-demo' @@ -12045,11 +11456,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12060,7 +11471,7 @@ packages: - typescript dev: false - file:projects/model-gmail.tgz_typescript@4.6.4: + file:projects/model-gmail.tgz_typescript@4.7.2: resolution: {integrity: sha512-0oYfCXBalMBmoSc4vcy3gwv4wpHmuUP3n14d4Lil9pHF4Z34xMogbi41pz7CIIfntR0/NwIuiJwXxiqeNJL5Tw==, tarball: file:projects/model-gmail.tgz} id: file:projects/model-gmail.tgz name: '@rush-temp/model-gmail' @@ -12068,11 +11479,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12083,7 +11494,7 @@ packages: - typescript dev: false - file:projects/model-inventory.tgz_typescript@4.6.4: + file:projects/model-inventory.tgz_typescript@4.7.2: resolution: {integrity: sha512-PCAUuH2imVPnkolq5MCYxYnjoWvba3ctRhi6kDepGqgywCnyixHL5h7dYKf79X1fFoyTS3f0PZve5JSBPvIrYw==, tarball: file:projects/model-inventory.tgz} id: file:projects/model-inventory.tgz name: '@rush-temp/model-inventory' @@ -12091,11 +11502,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12106,7 +11517,7 @@ packages: - typescript dev: false - file:projects/model-lead.tgz_typescript@4.6.4: + file:projects/model-lead.tgz_typescript@4.7.2: resolution: {integrity: sha512-Jip7hu4SFYOGRlaMlx9mbiWKxogy+RGC5UCg28FDNkk1Vaim3cCjcrnewtf5fxkGAQyHChvNBkcbyLK2aieCqA==, tarball: file:projects/model-lead.tgz} id: file:projects/model-lead.tgz name: '@rush-temp/model-lead' @@ -12114,11 +11525,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12129,7 +11540,7 @@ packages: - typescript dev: false - file:projects/model-notification.tgz_typescript@4.6.4: + file:projects/model-notification.tgz_typescript@4.7.2: resolution: {integrity: sha512-IROq8IemzUOPWqUqdpuvzIBnyeuqByYk5Dkxs4ndihYhkrNBQpugRTum2I7Bqc4atSFiqRTwAkb/ho+qZKJ3RA==, tarball: file:projects/model-notification.tgz} id: file:projects/model-notification.tgz name: '@rush-temp/model-notification' @@ -12137,11 +11548,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12152,7 +11563,7 @@ packages: - typescript dev: false - file:projects/model-preference.tgz_typescript@4.6.4: + file:projects/model-preference.tgz_typescript@4.7.2: resolution: {integrity: sha512-eztnPitdg/opKi0M5bX4H54B9oHiHCsktkSugbBdG0LMtJqiT2YODMr/w0W0luj2R7ZD9qE7plwAaclHrav2yQ==, tarball: file:projects/model-preference.tgz} id: file:projects/model-preference.tgz name: '@rush-temp/model-preference' @@ -12160,11 +11571,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12175,7 +11586,7 @@ packages: - typescript dev: false - file:projects/model-presentation.tgz_typescript@4.6.4: + file:projects/model-presentation.tgz_typescript@4.7.2: resolution: {integrity: sha512-jv54e+et+wW98SiyWpPzO4Q1FZSxaLLBUWRZAna7G+QRnr3G2a8aFQG3h573K93PqT+GvYnxR0iSQ4Hv04tf3A==, tarball: file:projects/model-presentation.tgz} id: file:projects/model-presentation.tgz name: '@rush-temp/model-presentation' @@ -12183,11 +11594,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12198,7 +11609,7 @@ packages: - typescript dev: false - file:projects/model-recruit.tgz_typescript@4.6.4: + file:projects/model-recruit.tgz_typescript@4.7.2: resolution: {integrity: sha512-O2EeD0hLLNxYZpMVD2BKBLdvr6ge1JFzo8BRwSG82l54fgGeV9Z2PMk5L58mbin/KJBy2Qmp7AGIEOal7u2zEw==, tarball: file:projects/model-recruit.tgz} id: file:projects/model-recruit.tgz name: '@rush-temp/model-recruit' @@ -12207,11 +11618,11 @@ packages: '@anticrm/skillset': 0.6.0 '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12222,16 +11633,16 @@ packages: - typescript dev: false - file:projects/model-rig.tgz_a7bf1e25e106178892e782f13bd35565: + file:projects/model-rig.tgz_01063456e7929442b476df3d9fe00497: resolution: {integrity: sha512-XQDkER3SImVbqVHPTA3qIs0Vv72i29Nfo0SvziDBSUouwaoJJ+kgimRWNDN1ROzX2859dhCzzdH9AkEQDSZfDw==, tarball: file:projects/model-rig.tgz} id: file:projects/model-rig.tgz name: '@rush-temp/model-rig' version: 0.0.0 dependencies: '@rushstack/heft': 0.45.5 - '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.6.4 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - typescript: 4.6.4 + '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.7.2 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + typescript: 4.7.2 transitivePeerDependencies: - '@typescript-eslint/eslint-plugin' - eslint @@ -12241,7 +11652,7 @@ packages: - supports-color dev: false - file:projects/model-server-attachment.tgz_typescript@4.6.4: + file:projects/model-server-attachment.tgz_typescript@4.7.2: resolution: {integrity: sha512-agvgR/B4P5gb7iFC5+CN/Ez6BnVXnNNtwmB47UymQkA4ODKxmPcfK6yqfgsJNXl0JwY9d2/lTlAMxTdjeji2iA==, tarball: file:projects/model-server-attachment.tgz} id: file:projects/model-server-attachment.tgz name: '@rush-temp/model-server-attachment' @@ -12249,11 +11660,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12264,7 +11675,7 @@ packages: - typescript dev: false - file:projects/model-server-board.tgz_typescript@4.6.4: + file:projects/model-server-board.tgz_typescript@4.7.2: resolution: {integrity: sha512-/GHg5HzneHyQpF3c0MmSQFgjFYZSI+cRnG6YuHnJdS6lbxx5rq1VEgqVfxXiJ37uxU9rsM00PGkW5+bw7W1oiA==, tarball: file:projects/model-server-board.tgz} id: file:projects/model-server-board.tgz name: '@rush-temp/model-server-board' @@ -12272,11 +11683,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12287,7 +11698,7 @@ packages: - typescript dev: false - file:projects/model-server-calendar.tgz_typescript@4.6.4: + file:projects/model-server-calendar.tgz_typescript@4.7.2: resolution: {integrity: sha512-NLt69rkdABkWReLYq43YEqdN/CF+XNTSbpFIN4gVlF/tSVIYlUAjJae9mX5/kGrzcGz7ael5Sdbg0ChdSMctuA==, tarball: file:projects/model-server-calendar.tgz} id: file:projects/model-server-calendar.tgz name: '@rush-temp/model-server-calendar' @@ -12295,11 +11706,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12310,7 +11721,7 @@ packages: - typescript dev: false - file:projects/model-server-chunter.tgz_typescript@4.6.4: + file:projects/model-server-chunter.tgz_typescript@4.7.2: resolution: {integrity: sha512-OWlwX2eyS2jrn28jgfWVI3hgvLEfSzSqs4eOq6kVYQPcmX4l49mkhIl9UfQxi70VV9ucmyCzLvB4FExYqpl1cQ==, tarball: file:projects/model-server-chunter.tgz} id: file:projects/model-server-chunter.tgz name: '@rush-temp/model-server-chunter' @@ -12318,11 +11729,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12333,7 +11744,7 @@ packages: - typescript dev: false - file:projects/model-server-contact.tgz_typescript@4.6.4: + file:projects/model-server-contact.tgz_typescript@4.7.2: resolution: {integrity: sha512-1UdpVy5Bf0QI1PUGBRgD1r083LDkryZYRhMRyTqRyk3ZtoMdxA3dLNRJZx3q5tIwifDSTHjI035nj9OcJFzoZw==, tarball: file:projects/model-server-contact.tgz} id: file:projects/model-server-contact.tgz name: '@rush-temp/model-server-contact' @@ -12341,11 +11752,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12356,7 +11767,7 @@ packages: - typescript dev: false - file:projects/model-server-core.tgz_typescript@4.6.4: + file:projects/model-server-core.tgz_typescript@4.7.2: resolution: {integrity: sha512-QtklGDO7IudsS6BTuf9VUPxPxnIrpWjc1cotlOYRy8Tq/0kZtwlnaWcL+5vtW7EjfnnaHw3gGf9pDftYEhMNOA==, tarball: file:projects/model-server-core.tgz} id: file:projects/model-server-core.tgz name: '@rush-temp/model-server-core' @@ -12364,11 +11775,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12379,7 +11790,7 @@ packages: - typescript dev: false - file:projects/model-server-gmail.tgz_typescript@4.6.4: + file:projects/model-server-gmail.tgz_typescript@4.7.2: resolution: {integrity: sha512-yX6YKoUxlTfi4xZfId/C+/0QeE+Oq0LDJbjLiMJYa1w+PAZtRK0IAuyljlG+cLq5+5zcea81E3jbn0PZ5TWUeA==, tarball: file:projects/model-server-gmail.tgz} id: file:projects/model-server-gmail.tgz name: '@rush-temp/model-server-gmail' @@ -12387,11 +11798,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12402,7 +11813,7 @@ packages: - typescript dev: false - file:projects/model-server-inventory.tgz_typescript@4.6.4: + file:projects/model-server-inventory.tgz_typescript@4.7.2: resolution: {integrity: sha512-fEZjpHFjw7k95RXySO8e9RpoaicF9jI2fVN9SSDEFUSmBsUKz3yR1wa1JrALrsH0YjcKzL1dWQK6AIJj4PuMCA==, tarball: file:projects/model-server-inventory.tgz} id: file:projects/model-server-inventory.tgz name: '@rush-temp/model-server-inventory' @@ -12410,11 +11821,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12425,7 +11836,7 @@ packages: - typescript dev: false - file:projects/model-server-lead.tgz_typescript@4.6.4: + file:projects/model-server-lead.tgz_typescript@4.7.2: resolution: {integrity: sha512-w/MI6PlxazO/7TMWiIwQjnHHECduKp5y9xutVlrYJu44jLSGvbrZkWQuS0GQqRjHUn3jN5ooJxmj6yoW9CsL6g==, tarball: file:projects/model-server-lead.tgz} id: file:projects/model-server-lead.tgz name: '@rush-temp/model-server-lead' @@ -12433,11 +11844,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12448,7 +11859,7 @@ packages: - typescript dev: false - file:projects/model-server-notification.tgz_typescript@4.6.4: + file:projects/model-server-notification.tgz_typescript@4.7.2: resolution: {integrity: sha512-Y58WHV28mazwTsNIa8/ThD7Hlh1jsqWVVvbsYt2CJWe9iYmbkF35xQlPyMrT3ZbWHWYb1TisD4vTvztbEgc+5Q==, tarball: file:projects/model-server-notification.tgz} id: file:projects/model-server-notification.tgz name: '@rush-temp/model-server-notification' @@ -12456,11 +11867,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12471,7 +11882,7 @@ packages: - typescript dev: false - file:projects/model-server-recruit.tgz_typescript@4.6.4: + file:projects/model-server-recruit.tgz_typescript@4.7.2: resolution: {integrity: sha512-M600taicOxEQEkSQpWeU4S2w6TWubmbToK3eg8Ha39VLLNSoKvSym+T0hN8v7IJL9iqp6D36WNzfq8EFjz0fbQ==, tarball: file:projects/model-server-recruit.tgz} id: file:projects/model-server-recruit.tgz name: '@rush-temp/model-server-recruit' @@ -12479,11 +11890,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12494,7 +11905,7 @@ packages: - typescript dev: false - file:projects/model-server-setting.tgz_typescript@4.6.4: + file:projects/model-server-setting.tgz_typescript@4.7.2: resolution: {integrity: sha512-F5gc4Ak54pZ9p3PETpu1fX9W8+cA9rxxwOEkDwuRU5xLftO6jqBEG6yDBeNfkx1OL7LlrWYtXKJlFhymLvPCag==, tarball: file:projects/model-server-setting.tgz} id: file:projects/model-server-setting.tgz name: '@rush-temp/model-server-setting' @@ -12502,11 +11913,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12517,7 +11928,7 @@ packages: - typescript dev: false - file:projects/model-server-tags.tgz_typescript@4.6.4: + file:projects/model-server-tags.tgz_typescript@4.7.2: resolution: {integrity: sha512-1ZO7EqnyBpkL/O4rWgSqO/34EQJAZBpj+a4CwmLe0cfpAVFIf2LfInvZfgeppRuhwKvjPrNIsnQzM7B6SxmCMA==, tarball: file:projects/model-server-tags.tgz} id: file:projects/model-server-tags.tgz name: '@rush-temp/model-server-tags' @@ -12525,11 +11936,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12540,7 +11951,7 @@ packages: - typescript dev: false - file:projects/model-server-task.tgz_typescript@4.6.4: + file:projects/model-server-task.tgz_typescript@4.7.2: resolution: {integrity: sha512-I5CFQUXJOh4gcei5DJxeFbCm3O6axm7NnCTOjpIHtiwcP+xPTxSEhrU7YPLUA0q05NqV/91fUWqThXuXcpgm7w==, tarball: file:projects/model-server-task.tgz} id: file:projects/model-server-task.tgz name: '@rush-temp/model-server-task' @@ -12548,11 +11959,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12563,7 +11974,7 @@ packages: - typescript dev: false - file:projects/model-server-telegram.tgz_typescript@4.6.4: + file:projects/model-server-telegram.tgz_typescript@4.7.2: resolution: {integrity: sha512-Mk7Zpt4o1U6IyEVkRKvzNXjQaL5XNFWQmeZ7ldU3noeVInQHYIgzOrTUA68yqY8bR9V9sJxhh26l8sEpZNzTIg==, tarball: file:projects/model-server-telegram.tgz} id: file:projects/model-server-telegram.tgz name: '@rush-temp/model-server-telegram' @@ -12571,11 +11982,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12586,7 +11997,7 @@ packages: - typescript dev: false - file:projects/model-setting.tgz_typescript@4.6.4: + file:projects/model-setting.tgz_typescript@4.7.2: resolution: {integrity: sha512-BcxU6vVAXEmrjraS3jewut5+oeAEQuzU/k4aSNrdWi4oaOWJm5p5v1O2gzVZXbjI39eThGIbTtzDLBCEX95n1Q==, tarball: file:projects/model-setting.tgz} id: file:projects/model-setting.tgz name: '@rush-temp/model-setting' @@ -12594,11 +12005,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12609,7 +12020,7 @@ packages: - typescript dev: false - file:projects/model-tags.tgz_typescript@4.6.4: + file:projects/model-tags.tgz_typescript@4.7.2: resolution: {integrity: sha512-GqDd2wBGXXzJlWiXxn/I2YB6qbwyFLt8o8OR7xdpaDEAF6YNbym+7u+Ptq0O9kW9msT3hLvmS/vk5HUq0HMnsg==, tarball: file:projects/model-tags.tgz} id: file:projects/model-tags.tgz name: '@rush-temp/model-tags' @@ -12617,11 +12028,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12632,7 +12043,7 @@ packages: - typescript dev: false - file:projects/model-task.tgz_typescript@4.6.4: + file:projects/model-task.tgz_typescript@4.7.2: resolution: {integrity: sha512-fGY5a9pnS61IS1HaBJsxOnVBc/K+6A8S2YVvFp1zkU0Tqji7SoR34sLKFKz0IDQ4uYzaadkAs9cZmqs7NvfnDQ==, tarball: file:projects/model-task.tgz} id: file:projects/model-task.tgz name: '@rush-temp/model-task' @@ -12640,11 +12051,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12655,7 +12066,7 @@ packages: - typescript dev: false - file:projects/model-telegram.tgz_typescript@4.6.4: + file:projects/model-telegram.tgz_typescript@4.7.2: resolution: {integrity: sha512-6TWRFdKkgb1xbvrLWeaBRn0E7SyM9MOU6dQ82D7ScyWaCwx7Jt1pQhdykdsnh5zX3iRY4KeYtioMhI/SCZIhdQ==, tarball: file:projects/model-telegram.tgz} id: file:projects/model-telegram.tgz name: '@rush-temp/model-telegram' @@ -12663,11 +12074,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12678,7 +12089,7 @@ packages: - typescript dev: false - file:projects/model-templates.tgz_typescript@4.6.4: + file:projects/model-templates.tgz_typescript@4.7.2: resolution: {integrity: sha512-FXHJrV4c1KatEG3nkwd/64c8eUd9ry+0mK9NSaEQL9HxV+bi283eqjeCfu7wenm5G6sVNdbl8y42mSd/RiHIZA==, tarball: file:projects/model-templates.tgz} id: file:projects/model-templates.tgz name: '@rush-temp/model-templates' @@ -12686,11 +12097,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12701,7 +12112,7 @@ packages: - typescript dev: false - file:projects/model-text-editor.tgz_typescript@4.6.4: + file:projects/model-text-editor.tgz_typescript@4.7.2: resolution: {integrity: sha512-hkMWINw0K09dwgUKVHZ6HEeh9gc3ZcBbxsSXSsHomcNyanSP8h94IJvrIddGZl8FFSiQKK/b10Py3k2Aqoqfmw==, tarball: file:projects/model-text-editor.tgz} id: file:projects/model-text-editor.tgz name: '@rush-temp/model-text-editor' @@ -12709,11 +12120,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12724,7 +12135,7 @@ packages: - typescript dev: false - file:projects/model-tracker.tgz_typescript@4.6.4: + file:projects/model-tracker.tgz_typescript@4.7.2: resolution: {integrity: sha512-MrEr3RwNVjkxXv3qaVSJu80bxkfUo7h+Q3BryQngr+CmPQeqnunU2qPOykoZvAVbmXKRO3w9qYz4DNsZmMBy2A==, tarball: file:projects/model-tracker.tgz} id: file:projects/model-tracker.tgz name: '@rush-temp/model-tracker' @@ -12732,11 +12143,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12747,7 +12158,7 @@ packages: - typescript dev: false - file:projects/model-view.tgz_typescript@4.6.4: + file:projects/model-view.tgz_typescript@4.7.2: resolution: {integrity: sha512-GBxfIpSvKRraydPFp6inOKoh3Una0x2XjGKu4c7JER/ct77yqBqhySR2Ux6rZ8ZaMzuuDNdLXwBBFL9gGhr+KA==, tarball: file:projects/model-view.tgz} id: file:projects/model-view.tgz name: '@rush-temp/model-view' @@ -12755,11 +12166,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12770,7 +12181,7 @@ packages: - typescript dev: false - file:projects/model-workbench.tgz_typescript@4.6.4: + file:projects/model-workbench.tgz_typescript@4.7.2: resolution: {integrity: sha512-9Sqih1BkSKJUaImO7K33bjImHEFvu+RyII75hGtKeLedo66UkreIOLDNqyICia+4tUtl9GDAZOe0k+LS6Ow0hg==, tarball: file:projects/model-workbench.tgz} id: file:projects/model-workbench.tgz name: '@rush-temp/model-workbench' @@ -12778,11 +12189,11 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12801,17 +12212,17 @@ packages: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 '@types/toposort': 2.0.3 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 fast-equals: 2.0.4 prettier: 2.6.2 toposort: 2.0.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -12825,23 +12236,23 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - mongodb: 4.5.0 + mongodb: 4.6.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/notification-assets.tgz_typescript@4.6.4: + file:projects/notification-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-qSlzfpwXxhnC9zTAec4itehAtMZRyJI4Ks2T6qnX4ThCzmDEWUoey1AGLnt7sRPLTfTTy+JJ2xJZLVz+cNndwQ==, tarball: file:projects/notification-assets.tgz} id: file:projects/notification-assets.tgz name: '@rush-temp/notification-assets' @@ -12849,12 +12260,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -12865,28 +12276,28 @@ packages: - typescript dev: false - file:projects/notification-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-n9VLil1BJSuny8N+9cbhGefKVFdgveEWh7UFtdb4it6fFLyPB1h9slwAojJX67Z7VggQurJW1U4waXUOHhKofw==, tarball: file:projects/notification-resources.tgz} + file:projects/notification-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-vraXZeX3TWibHhiOb+XlYhF00D9xksk4667bf6mDSqpqZ3eJEeJC5fOjYDOM5rYR7P4Wxqb/RX/baPeD6eR3TA==, tarball: file:projects/notification-resources.tgz} id: file:projects/notification-resources.tgz name: '@rush-temp/notification-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -12909,43 +12320,43 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/panel.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-cxcqW3U0tdnw3nxT2E9ORmHoDCt/YlW5Uecpt8vhdFZOEFyskTbVxv3EyD8CP7JvrbtIfSt04eLxntbO2WDFxQ==, tarball: file:projects/panel.tgz} + file:projects/panel.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-WsaFakRJsbMQ4IoMUAvS581Dku4OxWHwKEAA4zYhUwZFt+HnrAt+uBm/na6jy8Tw2ihaSAGyPCzcQeIGgyhJSQ==, tarball: file:projects/panel.tgz} id: file:projects/panel.tgz name: '@rush-temp/panel' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -12961,18 +12372,18 @@ packages: - supports-color dev: false - file:projects/platform-rig.tgz_6fa5d152813644f44d2852d983dc9002: + file:projects/platform-rig.tgz_29ca2220195d4cc51ab83d7e753528c2: resolution: {integrity: sha512-yrzvA13/mkEu/CaX1N5dqKVLFk5qIToL7KogdTS2+uwxhOy7K/C/e+E826rl1mNP8qPSGHW23lMjhRLDTmO6DQ==, tarball: file:projects/platform-rig.tgz} id: file:projects/platform-rig.tgz name: '@rush-temp/platform-rig' version: 0.0.0 dependencies: - '@microsoft/api-extractor': 7.23.0 + '@microsoft/api-extractor': 7.24.2 '@rushstack/heft': 0.45.5 - '@rushstack/heft-jest-plugin': 0.3.5_9ca49deabaa00b4a98851018e661ecb9 - '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.6.4 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - typescript: 4.6.4 + '@rushstack/heft-jest-plugin': 0.3.5_04f3c65f6de4a5e5529a6fededa44e1d + '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.7.2 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + typescript: 4.7.2 transitivePeerDependencies: - '@typescript-eslint/eslint-plugin' - bufferutil @@ -12994,16 +12405,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 intl-messageformat: 9.13.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13011,7 +12422,7 @@ packages: dev: false file:projects/pod-account.tgz: - resolution: {integrity: sha512-oMkqLeqkTzomB8drrq3ZC/rQmDoE8Mq6NKHSUIov7aVgv+62XahgJlE32++jpkKsttg6FyFRg/RJKQri7E79Qg==, tarball: file:projects/pod-account.tgz} + resolution: {integrity: sha512-cRCPk7Z5dYPNAsL/FcYklMe0cqm/p32LhxfTuQeMxs+civpbFJTtoLv92Pw+saiEsF7m/f17E1Mi1INKb4iZXw==, tarball: file:projects/pod-account.tgz} name: '@rush-temp/pod-account' version: 0.0.0 dependencies: @@ -13022,23 +12433,23 @@ packages: '@types/koa__cors': 3.3.0 '@types/koa-bodyparser': 4.3.7 '@types/koa-router': 7.4.4 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 cross-env: 7.0.3 esbuild: 0.12.29 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 koa: 2.13.4 koa-bodyparser: 4.3.0 koa-router: 10.1.1 - mongodb: 4.5.0 + mongodb: 4.6.0 prettier: 2.6.2 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c + typescript: 4.7.2 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -13048,30 +12459,30 @@ packages: dev: false file:projects/pod-backup.tgz: - resolution: {integrity: sha512-tZBIH9jqRWSWvzdlYoITGljNhQy2ALYeoyD9uxHQDcnMM7pwPatBm2Tx/h9m1TSk3vv6t0f3psrVp1O1ljC1rw==, tarball: file:projects/pod-backup.tgz} + resolution: {integrity: sha512-omyPFrkIS8OFMyHujqsPWOcSsDBcntEFC21Khi+N3Py3jnfrsRvysSQBgYyygSg1uaNnwzhzQoB3tELVQAGyaA==, tarball: file:projects/pod-backup.tgz} name: '@rush-temp/pod-backup' version: 0.0.0 dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 '@types/minio': 7.0.13 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 cross-env: 7.0.3 - dotenv: 16.0.0 + dotenv: 16.0.1 esbuild: 0.12.29 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 got: 11.8.5 minio: 7.0.28 - mongodb: 4.5.0 + mongodb: 4.6.0 prettier: 2.6.2 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c + typescript: 4.7.2 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -13087,16 +12498,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13110,44 +12521,44 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/presentation.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-psHNI1+ln+6JO/MYeW8zVNv4SCoehxFW1jf7t6ortcGzXmtVdnNrWJf4Nq7so5gb2Z0laLnHisAKxvkL34z6vQ==, tarball: file:projects/presentation.tgz} + file:projects/presentation.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-ySQKVGfIwsA10kdbiwZgIrTrJbQuBhbIll3CItnxfz//z7wnp4w8jHzDGLbeFmrgRRI32ViQZ3GrPLx6DH//tw==, tarball: file:projects/presentation.tgz} id: file:projects/presentation.tgz name: '@rush-temp/presentation' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 fast-equals: 2.0.4 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -13163,34 +12574,34 @@ packages: - supports-color dev: false - file:projects/prod-tracker.tgz_de7e4eae5aef826b485231087765ce17: + file:projects/prod-tracker.tgz_d1c3762ecb2c185353d3f02936f6ec22: resolution: {integrity: sha512-0eyrMP8f/hVYH+hCzocX+7NQV1qV63Y01jOMV8HkimM51dtCFCz3Qo2Tki5jEw4gjX1Dv3XhvhMAoLDSvDI1Ig==, tarball: file:projects/prod-tracker.tgz} id: file:projects/prod-tracker.tgz name: '@rush-temp/prod-tracker' version: 0.0.0 dependencies: - '@types/node': 16.11.33 - autoprefixer: 10.4.7_postcss@8.4.13 - compression-webpack-plugin: 9.0.1_webpack@5.72.0 + '@types/node': 16.11.38 + autoprefixer: 10.4.7_postcss@8.4.14 + compression-webpack-plugin: 9.0.1_webpack@5.73.0 cross-env: 7.0.3 - css-loader: 5.2.7_webpack@5.72.0 - dotenv-webpack: 7.1.0_webpack@5.72.0 - file-loader: 6.2.0_webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - mini-css-extract-plugin: 2.6.0_webpack@5.72.0 - postcss: 8.4.13 - postcss-load-config: 3.1.4_postcss@8.4.13+ts-node@10.5.0 - postcss-loader: 6.2.1_postcss@8.4.13+webpack@5.72.0 - sass-loader: 12.6.0_sass@1.51.0+webpack@5.72.0 - style-loader: 3.3.1_webpack@5.72.0 + css-loader: 5.2.7_webpack@5.73.0 + dotenv-webpack: 7.1.0_webpack@5.73.0 + file-loader: 6.2.0_webpack@5.73.0 + html-webpack-plugin: 5.5.0_webpack@5.73.0 + mini-css-extract-plugin: 2.6.0_webpack@5.73.0 + postcss: 8.4.14 + postcss-load-config: 3.1.4_postcss@8.4.14+ts-node@10.8.0 + postcss-loader: 6.2.1_postcss@8.4.14+webpack@5.73.0 + sass-loader: 12.6.0_sass@1.52.2+webpack@5.73.0 + style-loader: 3.3.1_webpack@5.73.0 svelte: 3.48.0 - svelte-loader: 3.1.2_svelte@3.48.0 + svelte-loader: 3.1.3_svelte@3.48.0 svgo-loader: 3.0.0 - ts-loader: 9.3.0_typescript@4.6.4+webpack@5.72.0 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + ts-loader: 9.3.0_typescript@4.7.2+webpack@5.73.0 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 webpack-bundle-analyzer: 4.5.0 - webpack-cli: 4.9.2_a0d31263581cf2badb6e37c16bc9b287 - webpack-dev-server: 4.8.1_webpack-cli@4.9.2+webpack@5.72.0 + webpack-cli: 4.9.2_2bff2f48c762780731ffbdff7d75fc65 + webpack-dev-server: 4.9.1_webpack-cli@4.9.2+webpack@5.73.0 transitivePeerDependencies: - '@swc/core' - '@webpack-cli/generators' @@ -13209,34 +12620,34 @@ packages: - utf-8-validate dev: false - file:projects/prod.tgz_de7e4eae5aef826b485231087765ce17: + file:projects/prod.tgz_d1c3762ecb2c185353d3f02936f6ec22: resolution: {integrity: sha512-QATm8tinHt8huisQGumkIxn/Ew4j8Bez88PjoKLuXhybtp5uhZh67ooqqvbN9V+RPaR/827nktjzSzS1vZ6ZQQ==, tarball: file:projects/prod.tgz} id: file:projects/prod.tgz name: '@rush-temp/prod' version: 0.0.0 dependencies: - '@types/node': 16.11.33 - autoprefixer: 10.4.7_postcss@8.4.13 - compression-webpack-plugin: 9.0.1_webpack@5.72.0 + '@types/node': 16.11.38 + autoprefixer: 10.4.7_postcss@8.4.14 + compression-webpack-plugin: 9.0.1_webpack@5.73.0 cross-env: 7.0.3 - css-loader: 5.2.7_webpack@5.72.0 - dotenv-webpack: 7.1.0_webpack@5.72.0 - file-loader: 6.2.0_webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - mini-css-extract-plugin: 2.6.0_webpack@5.72.0 - postcss: 8.4.13 - postcss-load-config: 3.1.4_postcss@8.4.13+ts-node@10.5.0 - postcss-loader: 6.2.1_postcss@8.4.13+webpack@5.72.0 - sass-loader: 12.6.0_sass@1.51.0+webpack@5.72.0 - style-loader: 3.3.1_webpack@5.72.0 + css-loader: 5.2.7_webpack@5.73.0 + dotenv-webpack: 7.1.0_webpack@5.73.0 + file-loader: 6.2.0_webpack@5.73.0 + html-webpack-plugin: 5.5.0_webpack@5.73.0 + mini-css-extract-plugin: 2.6.0_webpack@5.73.0 + postcss: 8.4.14 + postcss-load-config: 3.1.4_postcss@8.4.14+ts-node@10.8.0 + postcss-loader: 6.2.1_postcss@8.4.14+webpack@5.73.0 + sass-loader: 12.6.0_sass@1.52.2+webpack@5.73.0 + style-loader: 3.3.1_webpack@5.73.0 svelte: 3.48.0 - svelte-loader: 3.1.2_svelte@3.48.0 + svelte-loader: 3.1.3_svelte@3.48.0 svgo-loader: 3.0.0 - ts-loader: 9.3.0_typescript@4.6.4+webpack@5.72.0 - webpack: 5.72.0_7c84ffaa370635508ab32134092fd9e6 + ts-loader: 9.3.0_typescript@4.7.2+webpack@5.73.0 + webpack: 5.73.0_7c84ffaa370635508ab32134092fd9e6 webpack-bundle-analyzer: 4.5.0 - webpack-cli: 4.9.2_a0d31263581cf2badb6e37c16bc9b287 - webpack-dev-server: 4.8.1_webpack-cli@4.9.2+webpack@5.72.0 + webpack-cli: 4.9.2_2bff2f48c762780731ffbdff7d75fc65 + webpack-dev-server: 4.9.1_webpack-cli@4.9.2+webpack@5.73.0 transitivePeerDependencies: - '@swc/core' - '@webpack-cli/generators' @@ -13262,23 +12673,23 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - simplytyped: 3.3.0_typescript@4.6.4 - typescript: 4.6.4 + simplytyped: 3.3.0_typescript@4.7.2 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/recruit-assets.tgz_typescript@4.6.4: + file:projects/recruit-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-hMWF09C2A2DRPDEvnSIB5Y1tg2Af+1JOHTRtEuaU1OhSuPNGLtV6Bh8eltw8oTyk3QqI1xNNl7ltrep5D5GpyA==, tarball: file:projects/recruit-assets.tgz} id: file:projects/recruit-assets.tgz name: '@rush-temp/recruit-assets' @@ -13286,12 +12697,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -13302,30 +12713,30 @@ packages: - typescript dev: false - file:projects/recruit-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-OxF1ziRrkx3riQOXPd/WddVOsuCIYIfnDQu3MkK3WdddvaqiQKx0H5X9FKJ9NsNGjiibzCUll/CxaY8fKJSbCw==, tarball: file:projects/recruit-resources.tgz} + file:projects/recruit-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-91/69Y1O6x6JxiZviLEFMiFDm0FppLwTB+fxUQGyfft6/Mx+a6zg4eMPb3ns68DhuvixUDb3b0WOfPfHz/BGoA==, tarball: file:projects/recruit-resources.tgz} id: file:projects/recruit-resources.tgz name: '@rush-temp/recruit-resources' version: 0.0.0 dependencies: '@types/deep-equal': 1.0.1 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 deep-equal: 2.0.5 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -13348,15 +12759,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13371,17 +12782,17 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13396,15 +12807,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13418,16 +12829,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13442,19 +12853,19 @@ packages: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 '@types/minio': 7.0.13 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/tar-stream': 2.2.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 minio: 7.0.28 prettier: 2.6.2 tar-stream: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13468,15 +12879,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13490,16 +12901,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13513,15 +12924,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13535,16 +12946,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13558,15 +12969,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13580,16 +12991,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13603,15 +13014,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13625,16 +13036,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13649,17 +13060,17 @@ packages: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 '@types/minio': 7.0.13 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 minio: 7.0.28 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13673,15 +13084,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13695,16 +13106,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13718,15 +13129,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13740,16 +13151,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13763,15 +13174,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13785,16 +13196,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13808,15 +13219,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13830,16 +13241,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13853,16 +13264,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13876,15 +13287,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13898,16 +13309,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13921,15 +13332,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13943,16 +13354,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13966,15 +13377,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -13988,16 +13399,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14011,15 +13422,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14033,16 +13444,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14056,15 +13467,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14078,16 +13489,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14102,18 +13513,18 @@ packages: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 '@types/minio': 7.0.13 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 jwt-simple: 0.5.6 minio: 7.0.28 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14129,18 +13540,18 @@ packages: '@types/heft-jest': 1.0.2 '@types/minio': 7.0.13 '@types/ws': 8.5.3 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 minio: 7.0.28 - mongodb: 4.5.0 + mongodb: 4.6.0 prettier: 2.6.2 - typescript: 4.6.4 - ws: 8.6.0 + typescript: 4.7.2 + ws: 8.7.0 transitivePeerDependencies: - bufferutil - eslint-import-resolver-typescript @@ -14156,18 +13567,18 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/ws': 8.5.3 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 - ws: 8.6.0 + typescript: 4.7.2 + ws: 8.7.0 transitivePeerDependencies: - bufferutil - eslint-import-resolver-typescript @@ -14177,29 +13588,29 @@ packages: dev: false file:projects/server.tgz: - resolution: {integrity: sha512-RkUpH5nAHamZBK1v97atiFcmFl4oXfXgQIUcB+5C/Tz4lOipcVQagL7XAlKipXbRXMqnsEpGse9fwbMH6F9u4g==, tarball: file:projects/server.tgz} + resolution: {integrity: sha512-DixjIA8WXXltcm2FxRmE1hQMwF3p/5eqoHsMCtEEj1g5Pr8a1XGGfwGcsulDCM3rsekYZ9i+6Rf9baMg47eL8A==, tarball: file:projects/server.tgz} name: '@rush-temp/server' version: 0.0.0 dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 '@types/minio': 7.0.13 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/ws': 8.5.3 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 cross-env: 7.0.3 elastic-apm-node: 3.26.0 esbuild: 0.12.29 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 minio: 7.0.28 prettier: 2.6.2 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c + typescript: 4.7.2 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -14208,7 +13619,7 @@ packages: - supports-color dev: false - file:projects/setting-assets.tgz_typescript@4.6.4: + file:projects/setting-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-WSqcSjg1CDJSNYKZMnQ4+osjkKE/XDvYyIKVnmvFNdNWsjppgUie39YY++FGrGHsHvF5z58QZW6QKCAkCkj/tQ==, tarball: file:projects/setting-assets.tgz} id: file:projects/setting-assets.tgz name: '@rush-temp/setting-assets' @@ -14216,12 +13627,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -14232,28 +13643,28 @@ packages: - typescript dev: false - file:projects/setting-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-9dxWMCJHajLbFjKG/EZU5BnrzpS9/hasBOQT/VgYXYN7C/lbKOBgO6L9HXNojuH1nxtDdQlI/ivdgZ+lNKx/1Q==, tarball: file:projects/setting-resources.tgz} + file:projects/setting-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-uNXm2Xkj3ESN4XB+1wDI3HLyMP4P+COHhtCsjc3MdEghOa7+fDTAAhXTYvVw4QdLQfh9Uw/kh+UbBjiqUGiGXA==, tarball: file:projects/setting-resources.tgz} id: file:projects/setting-resources.tgz name: '@rush-temp/setting-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14276,15 +13687,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14298,44 +13709,44 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/tags-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-t1nqlFMZUlbH4tUAjav/sgCr1Bftqu1dRsXIPJ5eMiyqmmt2AlnUkDLU5Nc/4NQBecrjpaSdhmE35TDqfAj01g==, tarball: file:projects/tags-resources.tgz} + file:projects/tags-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-q8osEBqTpZAt0syI6EmCzXOgythZmNvI172FzJZQkL0OUo+FHWwidkqN3pI2Wr+A/MGw3LsRcGs6GIGQn8MP7g==, tarball: file:projects/tags-resources.tgz} id: file:projects/tags-resources.tgz name: '@rush-temp/tags-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14358,23 +13769,23 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 svelte: 3.48.0 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/task-assets.tgz_typescript@4.6.4: + file:projects/task-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-j7/muobOVk8EKCH3d/6s3PgBykzRsa0eqsqKjxs+R042oAno8ghj/A55QZ4OBIp+LnqeuLjh5cmchPS9QVszxw==, tarball: file:projects/task-assets.tgz} id: file:projects/task-assets.tgz name: '@rush-temp/task-assets' @@ -14382,12 +13793,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -14398,27 +13809,27 @@ packages: - typescript dev: false - file:projects/task-resources.tgz_8aa3038c4a34f0944bc8ec8757e97eb6: - resolution: {integrity: sha512-gMHNRt5fk0W1lbysFRezfyS9gnvspaqSpTUHouTjzhK1+xEXGo1awhwS77ABQarzbB75ahuv7Ue74qxi3SZ51Q==, tarball: file:projects/task-resources.tgz} + file:projects/task-resources.tgz_98a0b9c9098a3549e1ac525033e9d1f6: + resolution: {integrity: sha512-fzna1ts6YjQZxgo9yzJxUTRZqqAC6ZWa+LT5XqmZ7c6wn6I8+TAA11OAIg1T8vGSwY9Y7Y+qcsGRfO7cgHkEHQ==, tarball: file:projects/task-resources.tgz} id: file:projects/task-resources.tgz name: '@rush-temp/task-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14442,16 +13853,16 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 lexorank: 1.0.4 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14465,44 +13876,44 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/telegram-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-eGZmF4lxoVHJpKqGc9h4uNj7i3GwGDRMclcZrKrl6F7EKyCXxi2e7aKPJ2ze93bkfE+5WAynYuqc8WaY1KQcpA==, tarball: file:projects/telegram-resources.tgz} + file:projects/telegram-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-W4/EBfXi4MjXcHHCzJvX/T1HHc6Om+amuBzRVf7cF3Wbi4BD6cCjnyo42fL68Zy20hyHchuBIXbKsXivWG550g==, tarball: file:projects/telegram-resources.tgz} id: file:projects/telegram-resources.tgz name: '@rush-temp/telegram-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14525,15 +13936,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14547,44 +13958,44 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/templates-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-D3uSsLDE56iHGCrDSoZe3WbbayiWjiJle/6DKmvse82GUFofcg5afHSxC80o68TH+l72fUe51PUIx/MLLghlVA==, tarball: file:projects/templates-resources.tgz} + file:projects/templates-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-6NEh28+FS4IQSAed9urMbSotfTJWw7QhkaAEVroEI78JKoGy0X9tKJiDIvmfBTtTX7H0BEDAfqVQC4dEZqolFg==, tarball: file:projects/templates-resources.tgz} id: file:projects/templates-resources.tgz name: '@rush-temp/templates-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14607,15 +14018,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14623,25 +14034,24 @@ packages: dev: false file:projects/tests-sanity.tgz: - resolution: {integrity: sha512-r+nwe5kymwtXB8TylNdjVZ2NSxDyEHqMj/HQbYz/+AmCEAQ/KnWZCdO8HiIkL4/E75gGCwmMo6b8N7GsoIs69A==, tarball: file:projects/tests-sanity.tgz} + resolution: {integrity: sha512-lQu3ubYdVbEzD0HisXZrpqjl+I9qjeD/2RJjBsecNRagIINVjK2BZ/kjjHv6wH2pXDfIk3kZAY6sL9zOYvTcRA==, tarball: file:projects/tests-sanity.tgz} name: '@rush-temp/tests-sanity' version: 0.0.0 dependencies: '@playwright/test': 1.18.1 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 cross-env: 7.0.3 - crossenv: 0.0.2-security - dotenv: 16.0.0 + dotenv: 16.0.1 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - bufferutil - eslint-import-resolver-typescript @@ -14650,38 +14060,38 @@ packages: - utf-8-validate dev: false - file:projects/text-editor.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-LmIaFZ6EdlNaiTUENHbAV1j6/xQNBh2XUG5tWTvMW3akTRJLVVOttk4YzFvEu1uh7qBGHsxZLn6HEeTjNDcF5A==, tarball: file:projects/text-editor.tgz} + file:projects/text-editor.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-eyxq4liZ8eOwIrC0sYALoh+pfJrwEmIbkpK2AZ5E09Oe9U1U7r9F7YdZ6oXcblIRT17Zbi2KsRAPIhnsHbaLyg==, tarball: file:projects/text-editor.tgz} id: file:projects/text-editor.tgz name: '@rush-temp/text-editor' version: 0.0.0 dependencies: - '@tiptap/core': 2.0.0-beta.175 - '@tiptap/extension-highlight': 2.0.0-beta.33_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-link': 2.0.0-beta.37_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-mention': 2.0.0-beta.96_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-placeholder': 2.0.0-beta.48_@tiptap+core@2.0.0-beta.175 - '@tiptap/extension-typography': 2.0.0-beta.20_@tiptap+core@2.0.0-beta.175 - '@tiptap/starter-kit': 2.0.0-beta.184 - '@tiptap/suggestion': 2.0.0-beta.91_@tiptap+core@2.0.0-beta.175 + '@tiptap/core': 2.0.0-beta.176 + '@tiptap/extension-highlight': 2.0.0-beta.33_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-link': 2.0.0-beta.38_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-mention': 2.0.0-beta.97_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-placeholder': 2.0.0-beta.48_@tiptap+core@2.0.0-beta.176 + '@tiptap/extension-typography': 2.0.0-beta.20_@tiptap+core@2.0.0-beta.176 + '@tiptap/starter-kit': 2.0.0-beta.185 + '@tiptap/suggestion': 2.0.0-beta.92_@tiptap+core@2.0.0-beta.176 '@types/prosemirror-model': 1.16.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 prosemirror-model: 1.16.1 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14697,28 +14107,28 @@ packages: - supports-color dev: false - file:projects/theme.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-0r6Jc6N5xqkKX4MJe/TShQdgglmQdrxG/EL+LNOKU+nnav+P9/J0cF7cLVmqxSAR4h60UeDhgpxdMvsR4vTsAg==, tarball: file:projects/theme.tgz} + file:projects/theme.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-n86qZUMNzpP+zxHWF5XGx+hEGKVJMhfmhx4NbaxuHh7mrG3VGbzTD2Q/Cxnnvrzw4AQg4A3Cd06zs8Rb2AEuag==, tarball: file:projects/theme.tgz} id: file:projects/theme.tgz name: '@rush-temp/theme' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14735,7 +14145,7 @@ packages: dev: false file:projects/tool.tgz: - resolution: {integrity: sha512-9il9pxbPAtb7ewKXhCs4aVNB8ZwS3GOE36WY3lg4KTAWlbrQCBWw3f77V/n8xZDya1rKCH/prkxcPOg+nGypVg==, tarball: file:projects/tool.tgz} + resolution: {integrity: sha512-5wm5S9YigxgUWQofHRnls3wij0i4pohO/j/teRYNlR+VbEw1P82GIpZoSmOU1wL1VS+Kd2y29N8Gg8KwGsOA6w==, tarball: file:projects/tool.tgz} name: '@rush-temp/tool' version: 0.0.0 dependencies: @@ -14744,32 +14154,29 @@ packages: '@types/heft-jest': 1.0.2 '@types/mime-types': 2.1.1 '@types/minio': 7.0.13 - '@types/node': 16.11.33 + '@types/node': 16.11.38 '@types/request': 2.48.8 - '@types/tar-stream': 2.2.2 '@types/ws': 8.5.3 '@types/xml2js': 0.4.11 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 commander: 8.3.0 cross-env: 7.0.3 esbuild: 0.12.29 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 fast-equals: 2.0.4 got: 11.8.5 mime-types: 2.1.35 minio: 7.0.28 - mongodb: 4.5.0 + mongodb: 4.6.0 prettier: 2.6.2 - request: 2.88.2 - tar-stream: 2.2.0 - ts-node: 10.5.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - ws: 8.6.0 + ts-node: 10.8.0_08e84cade539e9a9016ef48bfdf07f6c + typescript: 4.7.2 + ws: 8.7.0 xml2js: 0.4.23 transitivePeerDependencies: - '@swc/core' @@ -14781,7 +14188,7 @@ packages: - utf-8-validate dev: false - file:projects/tracker-assets.tgz_typescript@4.6.4: + file:projects/tracker-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-/oQLJGOpfopTRf4JGSskenC6F8U45R67EMoheQsbND0unTdml1ws9mH2HVGCg9B06BVbo6NPrJuVwU+ZVkj/Ug==, tarball: file:projects/tracker-assets.tgz} id: file:projects/tracker-assets.tgz name: '@rush-temp/tracker-assets' @@ -14789,12 +14196,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -14805,28 +14212,28 @@ packages: - typescript dev: false - file:projects/tracker-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-rmgG7PdVMOQB2GtA1cN+ppLMmJ7tRcju8tdHSGzxTX65FRuejH0zW2SU789JnGncjt1A1TT9bIZXSNwOV3V/yw==, tarball: file:projects/tracker-resources.tgz} + file:projects/tracker-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-z3TfQ4BzAQK48+svzVwLJMfJP8kF7Skk6XgUYiW6NGYmWTsauxTAO43pbnH0+zrx112vGahLduOnBsYNURRLXQ==, tarball: file:projects/tracker-resources.tgz} id: file:projects/tracker-resources.tgz name: '@rush-temp/tracker-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14849,44 +14256,45 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 lexorank: 1.0.4 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/ui.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-+PRzLwduI7Gx+VXHeukwScfKMVnlF/Gc0l2IlblWFUpgQWG4wUggUS1nCG7iRd+nImeUdZi/YduDwjSVDSs96w==, tarball: file:projects/ui.tgz} + file:projects/ui.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-L1FvP0G2n5AhRZwmhrQugrCC78E8mRBWEgN66fYayhgODZ32DywylfKRsUTB1jUD4R8sLyaMBlfMotQYiPQJxQ==, tarball: file:projects/ui.tgz} id: file:projects/ui.tgz name: '@rush-temp/ui' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/jest': 28.1.0 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14902,7 +14310,7 @@ packages: - supports-color dev: false - file:projects/view-assets.tgz_typescript@4.6.4: + file:projects/view-assets.tgz_typescript@4.7.2: resolution: {integrity: sha512-yAFPy/KrLZgDxZtzWmQ+f4kFwZ8pnP1pvmQGQmwVU0EMh6hKKUMMpOWxCXXOLFd7D0KAyfvpMq1HNV0ogNnMIQ==, tarball: file:projects/view-assets.tgz} id: file:projects/view-assets.tgz name: '@rush-temp/view-assets' @@ -14910,12 +14318,12 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 @@ -14926,29 +14334,29 @@ packages: - typescript dev: false - file:projects/view-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-Tl17zUpJyWh9QgAoy6vWEGkqorWR7nLlFQGvkWRo565DUHR96rL3vNdYWt1oxKPoF2PgViqXdio/5+Q1tpeH/g==, tarball: file:projects/view-resources.tgz} + file:projects/view-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-tfohfstNASxSlxV6tUqWNlm1LlSXez6PjNIo/od70GwsrTLmH7v9uERXDq+xluGZfhRrcUMfaxFDnz5Y3P2Ylw==, tarball: file:projects/view-resources.tgz} id: file:projects/view-resources.tgz name: '@rush-temp/view-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 fast-equals: 2.0.4 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -14971,15 +14379,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14993,44 +14401,44 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@types/node': 16.11.38 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: false - file:projects/workbench-resources.tgz_3b42a51b6c974062237d417c554d9dd7: - resolution: {integrity: sha512-woXQLySFktoQBaH2Fz0m0FbNADL7ZGvj8Oeu3NM9VGY3FVEyEIiyCwk9aomH3mKFVDKqUvTdqy3unCEXF+5Y7Q==, tarball: file:projects/workbench-resources.tgz} + file:projects/workbench-resources.tgz_1e3963ebf0ceeb25b2fa6a1cc87e253c: + resolution: {integrity: sha512-ZBVzcrqRiOuvn4Fk4GyYnCdMEcg21e52JWc9KCI7jrcg5WAoVL1WQCm8vvqrj7ejSGTIF8X/Kg+mqGJd8te3Zw==, tarball: file:projects/workbench-resources.tgz} id: file:projects/workbench-resources.tgz name: '@rush-temp/workbench-resources' version: 0.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 - eslint-plugin-svelte3: 3.4.1_eslint@7.32.0+svelte@3.48.0 + eslint-plugin-svelte3: 4.0.0_eslint@7.32.0+svelte@3.48.0 prettier: 2.6.2 prettier-plugin-svelte: 2.7.0_prettier@2.6.2+svelte@3.48.0 - sass: 1.51.0 + sass: 1.52.2 svelte: 3.48.0 - svelte-check: 2.7.0_bffe1cde49a25e50e21f81a4f51503ea - svelte-loader: 3.1.2_svelte@3.48.0 - svelte-preprocess: 4.10.6_6851c101606d18b3be336719f14f900a - typescript: 4.6.4 + svelte-check: 2.7.2_c1788f0bf13b393830d6c30602bd01af + svelte-loader: 3.1.3_svelte@3.48.0 + svelte-preprocess: 4.10.6_0757fe126296bf9639251bcd13609b29 + typescript: 4.7.2 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -15053,15 +14461,15 @@ packages: dependencies: '@rushstack/heft': 0.45.5 '@types/heft-jest': 1.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_27efc1da00e78084f5aa1809ff6483a1 - '@typescript-eslint/parser': 5.22.0_eslint@7.32.0+typescript@4.6.4 + '@typescript-eslint/eslint-plugin': 5.27.0_738fa17fa57f8a69ace69c90e5cfa1d5 + '@typescript-eslint/parser': 5.27.0_eslint@7.32.0+typescript@4.7.2 eslint: 7.32.0 - eslint-config-standard-with-typescript: 21.0.1_d91f81f4c73639e41ff8a6e8953d9ef2 - eslint-plugin-import: 2.26.0_3ddaf056fddf811f7a567f393e2484b7 + eslint-config-standard-with-typescript: 21.0.1_99a5fe2f2ae1dc64d6b59974c931eb2a + eslint-plugin-import: 2.26.0_c21022bc9feaeb7b200d3d631eeae46c eslint-plugin-node: 11.1.0_eslint@7.32.0 eslint-plugin-promise: 5.2.0_eslint@7.32.0 prettier: 2.6.2 - typescript: 4.6.4 + typescript: 4.7.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack diff --git a/dev/generator/package.json b/dev/generator/package.json index 5ee96ebec6..7ed1b0472e 100644 --- a/dev/generator/package.json +++ b/dev/generator/package.json @@ -22,7 +22,7 @@ "eslint-plugin-promise": "^5.1.1", "eslint-plugin-node": "^11.1.0", "eslint": "^7.32.0", - "ts-node": "~10.5.0", + "ts-node": "^10.8.0", "esbuild": "^0.12.26", "@types/node": "~16.11.12", "@typescript-eslint/parser": "^5.4.0", diff --git a/dev/prod/webpack.config.js b/dev/prod/webpack.config.js index 472c49067c..5c326f1bbe 100644 --- a/dev/prod/webpack.config.js +++ b/dev/prod/webpack.config.js @@ -37,7 +37,8 @@ module.exports = { resolve: { symlinks: true, alias: { - svelte: path.resolve('./node_modules', 'svelte') + svelte: path.resolve('./node_modules', 'svelte'), + '@anticrm/platform-rig/profiles/ui/svelte': path.resolve('./node_modules', 'svelte') }, extensions: ['.mjs', '.js', '.svelte', '.ts'], mainFields: ['svelte', 'browser', 'module', 'main'] diff --git a/dev/server/package.json b/dev/server/package.json index e36ea5255a..4eabf2b5d8 100644 --- a/dev/server/package.json +++ b/dev/server/package.json @@ -20,7 +20,7 @@ "eslint-plugin-promise": "^5.1.1", "eslint-plugin-node": "^11.1.0", "eslint": "^7.32.0", - "ts-node": "~10.5.0", + "ts-node": "^10.8.0", "@typescript-eslint/parser": "^5.4.0", "eslint-config-standard-with-typescript": "^21.0.1", "prettier": "^2.4.1", diff --git a/dev/tool/package.json b/dev/tool/package.json index 67d34c4e21..8fcec5813d 100644 --- a/dev/tool/package.json +++ b/dev/tool/package.json @@ -27,7 +27,7 @@ "eslint-plugin-promise": "^5.1.1", "eslint-plugin-node": "^11.1.0", "eslint": "^7.32.0", - "ts-node": "~10.5.0", + "ts-node": "^10.8.0", "esbuild": "^0.12.26", "@types/minio": "~7.0.11", "@types/node": "~16.11.12", @@ -39,7 +39,7 @@ "@types/ws": "^8.2.1", "@types/xml2js": "~0.4.9", "@types/mime-types": "~2.1.1", - "@types/request": "~2.48.8" + "@types/request": "~2.48.8" }, "dependencies": { "mongodb": "^4.1.1", diff --git a/models/all/package.json b/models/all/package.json index ea68357ecb..ab5abb4d26 100644 --- a/models/all/package.json +++ b/models/all/package.json @@ -22,7 +22,7 @@ "eslint-plugin-node": "^11.1.0", "eslint": "^7.32.0", "@types/node": "~16.11.12", - "ts-node": "~10.5.0", + "ts-node": "^10.8.0", "@types/heft-jest": "^1.0.2", "@typescript-eslint/parser": "^5.4.0", "eslint-config-standard-with-typescript": "^21.0.1", diff --git a/packages/core/src/tx.ts b/packages/core/src/tx.ts index 65ac518b0d..57605acc14 100644 --- a/packages/core/src/tx.ts +++ b/packages/core/src/tx.ts @@ -159,9 +159,9 @@ export type OmitNever = Omit> * @public */ export interface PushOptions { - $push?: Partial>> - $pull?: Partial>> - $move?: Partial>> + $push?: Partial>>> + $pull?: Partial>>> + $move?: Partial>>> } /** diff --git a/packages/kanban/config/rig.json b/packages/kanban/config/rig.json new file mode 100644 index 0000000000..e12b462b19 --- /dev/null +++ b/packages/kanban/config/rig.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", + "rigPackageName": "@anticrm/platform-rig", + "rigProfile": "ui" +} diff --git a/packages/kanban/package.json b/packages/kanban/package.json index d34201b02c..670e89f3bd 100644 --- a/packages/kanban/package.json +++ b/packages/kanban/package.json @@ -5,7 +5,7 @@ "author": "Anticrm Platform Contributors", "license": "EPL-2.0", "scripts": { - "build": "echo 'no build for ui'", + "build": "tsc", "build:docs": "api-extractor run --local", "lint": "svelte-check && eslint", "lint:fix": "eslint --fix src", @@ -24,7 +24,7 @@ "eslint-plugin-import": "^2.25.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", - "eslint-plugin-svelte3": "~3.4.1", + "eslint-plugin-svelte3": "^4.0.0", "prettier-plugin-svelte": "^2.7.0", "eslint": "^7.32.0", "prettier": "^2.4.1", diff --git a/packages/kanban/src/index.ts b/packages/kanban/src/index.ts index bab537dc0c..ab0e78a68e 100644 --- a/packages/kanban/src/index.ts +++ b/packages/kanban/src/index.ts @@ -13,6 +13,7 @@ // limitations under the License. // +import '@anticrm/platform-rig/profiles/ui/svelte' export * from './types' export { default as Kanban } from './components/Kanban.svelte' diff --git a/packages/kanban/tsconfig.json b/packages/kanban/tsconfig.json index a961af7d26..0980a1b8b4 100644 --- a/packages/kanban/tsconfig.json +++ b/packages/kanban/tsconfig.json @@ -1,5 +1,4 @@ { - "extends": "./node_modules/@anticrm/platform-rig/profiles/ui/tsconfig.json", "compilerOptions": { "moduleResolution": "node", "target": "esnext", diff --git a/packages/panel/package.json b/packages/panel/package.json index 2b372a332c..1a2705f484 100644 --- a/packages/panel/package.json +++ b/packages/panel/package.json @@ -5,7 +5,7 @@ "author": "Anticrm Platform Contributors", "license": "EPL-2.0", "scripts": { - "build": "echo 'no build for ui'", + "build": "tsc", "build:docs": "api-extractor run --local", "lint": "svelte-check && eslint", "lint:fix": "eslint --fix src", @@ -24,7 +24,7 @@ "eslint-plugin-import": "^2.25.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", - "eslint-plugin-svelte3": "~3.4.1", + "eslint-plugin-svelte3": "^4.0.0", "prettier-plugin-svelte": "^2.7.0", "eslint": "^7.32.0", "prettier": "^2.4.1", diff --git a/packages/panel/src/index.ts b/packages/panel/src/index.ts index ba69df62ec..19096a61f2 100644 --- a/packages/panel/src/index.ts +++ b/packages/panel/src/index.ts @@ -14,4 +14,5 @@ // limitations under the License. // +import '@anticrm/platform-rig/profiles/ui/svelte' export { default as Panel } from './components/Panel.svelte' diff --git a/packages/platform-rig/profiles/assets/config/rush-project.json b/packages/platform-rig/profiles/assets/config/rush-project.json new file mode 100644 index 0000000000..1bd09c71f6 --- /dev/null +++ b/packages/platform-rig/profiles/assets/config/rush-project.json @@ -0,0 +1,11 @@ +{ + "incrementalBuildIgnoredGlobs": ["temp/**"], + "disableBuildCacheForProject": false, + + "operationSettings": [ + { + "operationName": "build", + "outputFolderNames": ["lib", "dist"] + } + ] + } \ No newline at end of file diff --git a/packages/platform-rig/profiles/default/config/api-extractor.json b/packages/platform-rig/profiles/default/config/api-extractor.json index 04b2adb043..dfeb94cd8e 100644 --- a/packages/platform-rig/profiles/default/config/api-extractor.json +++ b/packages/platform-rig/profiles/default/config/api-extractor.json @@ -99,7 +99,7 @@ * * DEFAULT VALUE: false */ - // "skipLibCheck": true, + "skipLibCheck": true }, /** @@ -330,6 +330,9 @@ "default": { "logLevel": "warning" // "addToApiReportFile": false + }, + "ae-wrong-input-file-type": { + "logLevel": "none" } // "ae-extra-release-tag": { diff --git a/packages/platform-rig/profiles/ui/config/rush-project.json b/packages/platform-rig/profiles/ui/config/rush-project.json index 1bd09c71f6..ddc2bd8fd8 100644 --- a/packages/platform-rig/profiles/ui/config/rush-project.json +++ b/packages/platform-rig/profiles/ui/config/rush-project.json @@ -1,11 +1,4 @@ { "incrementalBuildIgnoredGlobs": ["temp/**"], - "disableBuildCacheForProject": false, - - "operationSettings": [ - { - "operationName": "build", - "outputFolderNames": ["lib", "dist"] - } - ] + "disableBuildCacheForProject": true } \ No newline at end of file diff --git a/packages/platform-rig/profiles/ui/svelte/index.d.ts b/packages/platform-rig/profiles/ui/svelte/index.d.ts new file mode 100644 index 0000000000..0cab9b4c05 --- /dev/null +++ b/packages/platform-rig/profiles/ui/svelte/index.d.ts @@ -0,0 +1,4 @@ +declare module "*.svelte" { + const value: any; + export default value; +} \ No newline at end of file diff --git a/packages/presentation/config/rig.json b/packages/presentation/config/rig.json new file mode 100644 index 0000000000..e12b462b19 --- /dev/null +++ b/packages/presentation/config/rig.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", + "rigPackageName": "@anticrm/platform-rig", + "rigProfile": "ui" +} diff --git a/packages/presentation/package.json b/packages/presentation/package.json index 036c4fd984..171929ba7d 100644 --- a/packages/presentation/package.json +++ b/packages/presentation/package.json @@ -5,7 +5,7 @@ "author": "Anticrm Platform Contributors", "license": "EPL-2.0", "scripts": { - "build": "echo 'no build for ui'", + "build": "tsc", "build:docs": "api-extractor run --local", "lint": "svelte-check && eslint", "lint:fix": "eslint --fix src", @@ -23,7 +23,7 @@ "eslint-plugin-import": "^2.25.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", - "eslint-plugin-svelte3": "~3.4.1", + "eslint-plugin-svelte3": "^4.0.0", "prettier-plugin-svelte": "^2.7.0", "eslint": "^7.32.0", "prettier": "^2.4.1", diff --git a/packages/presentation/src/components/Card.svelte b/packages/presentation/src/components/Card.svelte index aaf39e26d1..43ab3f8034 100644 --- a/packages/presentation/src/components/Card.svelte +++ b/packages/presentation/src/components/Card.svelte @@ -46,7 +46,7 @@
diff --git a/plugins/lead-resources/config/rig.json b/plugins/lead-resources/config/rig.json new file mode 100644 index 0000000000..e12b462b19 --- /dev/null +++ b/plugins/lead-resources/config/rig.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", + "rigPackageName": "@anticrm/platform-rig", + "rigProfile": "ui" +} diff --git a/plugins/lead-resources/package.json b/plugins/lead-resources/package.json index bbbac92d3d..0fafbce3c3 100644 --- a/plugins/lead-resources/package.json +++ b/plugins/lead-resources/package.json @@ -5,7 +5,7 @@ "author": "Anticrm Platform Contributors", "license": "EPL-2.0", "scripts": { - "build": "echo 'no build for ui'", + "build": "tsc", "build:docs": "api-extractor run --local", "lint": "svelte-check && eslint", "lint:fix": "eslint --fix src", @@ -22,7 +22,7 @@ "eslint-plugin-import": "^2.25.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", - "eslint-plugin-svelte3": "~3.4.1", + "eslint-plugin-svelte3": "^4.0.0", "prettier-plugin-svelte": "^2.7.0", "eslint": "^7.32.0", "prettier": "^2.4.1", diff --git a/plugins/login-resources/config/rig.json b/plugins/login-resources/config/rig.json new file mode 100644 index 0000000000..e12b462b19 --- /dev/null +++ b/plugins/login-resources/config/rig.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", + "rigPackageName": "@anticrm/platform-rig", + "rigProfile": "ui" +} diff --git a/plugins/login-resources/package.json b/plugins/login-resources/package.json index e352e4b872..92aa682528 100644 --- a/plugins/login-resources/package.json +++ b/plugins/login-resources/package.json @@ -5,7 +5,7 @@ "author": "Anticrm Platform Contributors", "license": "EPL-2.0", "scripts": { - "build": "echo 'no build for ui'", + "build": "tsc", "build:docs": "api-extractor run --local", "lint": "svelte-check && eslint", "lint:fix": "eslint --fix src", @@ -22,7 +22,7 @@ "eslint-plugin-import": "^2.25.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", - "eslint-plugin-svelte3": "~3.4.1", + "eslint-plugin-svelte3": "^4.0.0", "prettier-plugin-svelte": "^2.7.0", "eslint": "^7.32.0", "prettier": "^2.4.1", diff --git a/plugins/notification-resources/config copy/rig.json b/plugins/notification-resources/config copy/rig.json new file mode 100644 index 0000000000..e12b462b19 --- /dev/null +++ b/plugins/notification-resources/config copy/rig.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", + "rigPackageName": "@anticrm/platform-rig", + "rigProfile": "ui" +} diff --git a/plugins/notification-resources/package.json b/plugins/notification-resources/package.json index 31f80d18f4..42b5982a83 100644 --- a/plugins/notification-resources/package.json +++ b/plugins/notification-resources/package.json @@ -5,7 +5,7 @@ "author": "Anticrm Platform Contributors", "license": "EPL-2.0", "scripts": { - "build": "echo 'no build for ui'", + "build": "tsc", "build:docs": "api-extractor run --local", "lint": "svelte-check && eslint", "lint:fix": "eslint --fix src", @@ -24,7 +24,7 @@ "eslint": "^7.32.0", "@typescript-eslint/parser": "^5.4.0", "eslint-config-standard-with-typescript": "^21.0.1", - "eslint-plugin-svelte3": "~3.4.1", + "eslint-plugin-svelte3": "^4.0.0", "prettier-plugin-svelte": "^2.7.0", "prettier": "^2.4.1", "svelte-check": "^2.7.0", diff --git a/plugins/notification-resources/src/components/NotificationSettings.svelte b/plugins/notification-resources/src/components/NotificationSettings.svelte index 2957e5816b..bbaf3c693e 100644 --- a/plugins/notification-resources/src/components/NotificationSettings.svelte +++ b/plugins/notification-resources/src/components/NotificationSettings.svelte @@ -123,6 +123,9 @@ if (prov === undefined) return false return prov.default } + const createHandler = (type: Ref, provider: Ref): ((evt: any) => void) => { + return (evt: any) => change(type, provider, evt.detail) + }
@@ -140,7 +143,7 @@ change(type._id, provider._id, e.detail)} + on:change={createHandler(type._id, provider._id)} /> {/each} {/each} diff --git a/plugins/recruit-resources/config/rig.json b/plugins/recruit-resources/config/rig.json new file mode 100644 index 0000000000..e12b462b19 --- /dev/null +++ b/plugins/recruit-resources/config/rig.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", + "rigPackageName": "@anticrm/platform-rig", + "rigProfile": "ui" +} diff --git a/plugins/recruit-resources/package.json b/plugins/recruit-resources/package.json index 076338ed63..c3ccf3bca5 100644 --- a/plugins/recruit-resources/package.json +++ b/plugins/recruit-resources/package.json @@ -5,7 +5,7 @@ "author": "Anticrm Platform Contributors", "license": "EPL-2.0", "scripts": { - "build": "echo 'no build for ui'", + "build": "tsc", "build:docs": "api-extractor run --local", "lint": "svelte-check && eslint", "lint:fix": "eslint --fix src", @@ -22,7 +22,7 @@ "eslint-plugin-import": "^2.25.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", - "eslint-plugin-svelte3": "~3.4.1", + "eslint-plugin-svelte3": "^4.0.0", "prettier-plugin-svelte": "^2.7.0", "eslint": "^7.32.0", "prettier": "^2.4.1", diff --git a/plugins/setting-resources/config/rig.json b/plugins/setting-resources/config/rig.json new file mode 100644 index 0000000000..e12b462b19 --- /dev/null +++ b/plugins/setting-resources/config/rig.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", + "rigPackageName": "@anticrm/platform-rig", + "rigProfile": "ui" +} diff --git a/plugins/setting-resources/package.json b/plugins/setting-resources/package.json index 97d17e4d70..9eec6df3a1 100644 --- a/plugins/setting-resources/package.json +++ b/plugins/setting-resources/package.json @@ -5,7 +5,7 @@ "author": "Anticrm Platform Contributors", "license": "EPL-2.0", "scripts": { - "build": "echo 'no build for ui'", + "build": "tsc", "build:docs": "api-extractor run --local", "lint": "svelte-check && eslint", "lint:fix": "eslint --fix src", @@ -23,7 +23,7 @@ "eslint-plugin-import": "^2.25.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", - "eslint-plugin-svelte3": "~3.4.1", + "eslint-plugin-svelte3": "^4.0.0", "prettier-plugin-svelte": "^2.7.0", "eslint": "^7.32.0", "prettier": "^2.4.1", diff --git a/plugins/setting-resources/src/components/CreateAttribute.svelte b/plugins/setting-resources/src/components/CreateAttribute.svelte index 408a5a4ce6..825a127e52 100644 --- a/plugins/setting-resources/src/components/CreateAttribute.svelte +++ b/plugins/setting-resources/src/components/CreateAttribute.svelte @@ -75,6 +75,11 @@ is = editor.editor } } + const handleSelection = (e: { detail: Ref>> }) => selectType(e.detail) + const handleChange = (e: any) => { + type = e.detail?.type + index = e.detail?.index + } selectType(e.detail)} + on:selected={handleSelection} />
{#if is}
- { - type = e.detail?.type - index = e.detail?.index - }} - /> +
{/if} diff --git a/plugins/setting-resources/src/components/EditAttribute.svelte b/plugins/setting-resources/src/components/EditAttribute.svelte index f1d6c52b95..4ba8e3646c 100644 --- a/plugins/setting-resources/src/components/EditAttribute.svelte +++ b/plugins/setting-resources/src/components/EditAttribute.svelte @@ -79,6 +79,11 @@ is = editor.editor } } + const handleSelect = (e: any) => selectType(e.detail) + const handleChange = (e: any) => { + type = e.detail?.type + index = e.detail?.index + } selectType(e.detail)} + on:selected={handleSelect} /> {/if} @@ -116,10 +121,7 @@ type, editable: !exist }} - on:change={(e) => { - type = e.detail?.type - index = e.detail?.index - }} + on:change={handleChange} /> {/if} diff --git a/plugins/setting-resources/src/components/EnumValues.svelte b/plugins/setting-resources/src/components/EnumValues.svelte index 7ba9fb069d..ebf2b9e4fd 100644 --- a/plugins/setting-resources/src/components/EnumValues.svelte +++ b/plugins/setting-resources/src/components/EnumValues.svelte @@ -37,17 +37,18 @@ $pull: { enumValues: target } }) } + const handleKeydown = (evt: KeyboardEvent) => { + if (evt.key === 'Enter') { + add() + } + }
{ - if (evt.key === 'Enter') { - add() - } - }} + on:keydown={handleKeydown} kind="large-style" bind:value={newValue} maxWidth="18rem" diff --git a/plugins/setting-resources/src/components/PluginCard.svelte b/plugins/setting-resources/src/components/PluginCard.svelte index d108823ad6..7a95561e48 100644 --- a/plugins/setting-resources/src/components/PluginCard.svelte +++ b/plugins/setting-resources/src/components/PluginCard.svelte @@ -58,6 +58,14 @@ )() } } + const handleAdd = (e: any) => { + showPopup(integrationType.createComponent, {}, eventToHTMLElement(e), close) + } + const handleReconnect = (e: any) => { + if (integrationType.reconnectComponent) { + showPopup(integrationType.reconnectComponent, {}, eventToHTMLElement(e), reconnect) + } + }
@@ -74,26 +82,12 @@ diff --git a/plugins/setting-resources/src/components/activity/TxIntegrationDisableReconnect.svelte b/plugins/setting-resources/src/components/activity/TxIntegrationDisableReconnect.svelte index bbd8756540..a6fc415a16 100644 --- a/plugins/setting-resources/src/components/activity/TxIntegrationDisableReconnect.svelte +++ b/plugins/setting-resources/src/components/activity/TxIntegrationDisableReconnect.svelte @@ -42,16 +42,13 @@ }) } } + const handleReconnect = (e: MouseEvent) => { + if (type?.reconnectComponent) { + showPopup(type.reconnectComponent, {}, eventToHTMLElement(e), reconnect) + } + }
-
diff --git a/plugins/setting-resources/src/components/statuses/ManageStatuses.svelte b/plugins/setting-resources/src/components/statuses/ManageStatuses.svelte index 9b505d7d64..e9a68deb85 100644 --- a/plugins/setting-resources/src/components/statuses/ManageStatuses.svelte +++ b/plugins/setting-resources/src/components/statuses/ManageStatuses.svelte @@ -56,6 +56,7 @@ } ) } + const onDeleteState = (e: any) => deleteState(e.detail)
@@ -74,11 +75,7 @@
{#if template !== undefined} - deleteState(e.detail)} - /> + {/if}
diff --git a/plugins/setting-resources/src/components/typeEditors/EnumSelect.svelte b/plugins/setting-resources/src/components/typeEditors/EnumSelect.svelte index e4620e2f07..ec805cdae5 100644 --- a/plugins/setting-resources/src/components/typeEditors/EnumSelect.svelte +++ b/plugins/setting-resources/src/components/typeEditors/EnumSelect.svelte @@ -45,36 +45,31 @@ const query: DocumentQuery = {} const mgr = getFocusManager() + + const handleClick = (ev: any) => { + showPopup( + EnumPopup, + { + _class, + label, + options: { sort: { modifiedOn: -1 } }, + selected: value?._id, + spaceQuery: query, + create + }, + eventToHTMLElement(ev), + (result) => { + if (result) { + value = result + mgr?.setFocusPos(focusIndex) + } + } + ) + } -
{object.name}
diff --git a/plugins/task-resources/src/components/StatusTableView.svelte b/plugins/task-resources/src/components/StatusTableView.svelte index 0b8603f5b4..ed264fd769 100644 --- a/plugins/task-resources/src/components/StatusTableView.svelte +++ b/plugins/task-resources/src/components/StatusTableView.svelte @@ -118,6 +118,30 @@ } $: updateQuery(search, selectedDoneStates) + const handleSelect = (result: any) => { + if (result.type === 'select') { + const res = result.detail + if (res.id === 'AllStates') { + doneStatusesView = false + state = undefined + withoutDone = false + selectedDoneStates.clear() + updateQuery(search, selectedDoneStates) + } else if (res.id === 'DoneStates') { + doneStatusesView = true + state = undefined + selectedDoneStates.clear() + updateQuery(search, selectedDoneStates) + } + } + } + const handleDoneSelect = (result: any) => { + if (result.type === 'select') { + const res = result.detail + if (res.id === 'NoDoneState') noDoneClick() + else doneStateClick(res.id) + } + }
@@ -127,37 +151,10 @@ { id: 'DoneStates', labelIntl: task.string.DoneStates } ]} multiselect={false} - on:select={(result) => { - if (result.type === 'select') { - const res = result.detail - if (res.id === 'AllStates') { - doneStatusesView = false - state = undefined - withoutDone = false - selectedDoneStates.clear() - updateQuery(search, selectedDoneStates) - } else if (res.id === 'DoneStates') { - doneStatusesView = true - state = undefined - selectedDoneStates.clear() - updateQuery(search, selectedDoneStates) - } - } - }} + on:select={handleSelect} /> {#if doneStatusesView} - { - if (result.type === 'select') { - const res = result.detail - if (res.id === 'NoDoneState') noDoneClick() - else doneStateClick(res.id) - } - }} - /> + {:else} updateQuery(search, selectedDoneStates)} /> {/if} diff --git a/plugins/task-resources/src/components/kanban/KanbanView.svelte b/plugins/task-resources/src/components/kanban/KanbanView.svelte index 5b9c8fdc9a..51abdf3b1b 100644 --- a/plugins/task-resources/src/components/kanban/KanbanView.svelte +++ b/plugins/task-resources/src/components/kanban/KanbanView.svelte @@ -92,6 +92,16 @@ } ) } + const onContent = (evt: any) => { + listProvider.update(evt.detail) + } + const onObjFocus = (evt: any) => { + listProvider.updateFocus(evt.detail) + } + const handleCheck = (evt: any) => { + listProvider.updateSelection(evt.detail.docs, evt.detail.value) + } + const onContextMenu = (evt: any) => showMenu(evt.detail.evt, evt.detail.objects) {#await cardPresenter then presenter} @@ -111,17 +121,11 @@ {states} fieldName={'state'} rankFieldName={'rank'} - on:content={(evt) => { - listProvider.update(evt.detail) - }} - on:obj-focus={(evt) => { - listProvider.updateFocus(evt.detail) - }} + on:content={onContent} + on:obj-focus={onObjFocus} checked={$selectionStore ?? []} - on:check={(evt) => { - listProvider.updateSelection(evt.detail.docs, evt.detail.value) - }} - on:contextmenu={(evt) => showMenu(evt.detail.evt, evt.detail.objects)} + on:check={handleCheck} + on:contextmenu={onContextMenu} selection={listProvider.current($focusStore)} > diff --git a/plugins/task-resources/src/components/state/StateEditor.svelte b/plugins/task-resources/src/components/state/StateEditor.svelte index 7bd73813d1..4d1c53cee8 100644 --- a/plugins/task-resources/src/components/state/StateEditor.svelte +++ b/plugins/task-resources/src/components/state/StateEditor.svelte @@ -42,14 +42,7 @@ }, { limit: 1 } ) - - -