all repos — caroster @ 6d2659c5a5d3df7aeeaad568e6543fcbb943bf45

[Octree] Group carpool to your event https://caroster.io

feat: ⬆️ Migration to Strapi v4
Tim Izzo tim@octree.ch
Wed, 24 Aug 2022 06:27:34 +0000
commit

6d2659c5a5d3df7aeeaad568e6543fcbb943bf45

parent

95876236a197ac3c43205c69fd4e70f3a300105c

189 files changed, 8576 insertions(+), 12799 deletions(-)

jump to
M .gitlab-ci.yml.gitlab-ci.yml

@@ -1,3 +1,26 @@

include: - project: o/infra/templates file: /gitlab-ci/includes/StrapiBuildDeploy.yaml + + +Test E2E: + stage: test + image: node:16-alpine + rules: + - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_PIPELINE_SOURCE == "merge_request_event" + changes: + - backend/**/* + - e2e/**/* + exists: + - backend/tests + cache: + key: node_modules + paths: + - backend/node_modules + - e2e/node_modules + script: + - cd backend/ + - yarn + - cd ../e2e/ + - yarn + - yarn test
M backend/.env.examplebackend/.env.example

@@ -1,4 +1,7 @@

-STRAPI_URL= -SENDGRID_API_KEY= -SENDGRID_DEFAULT_FROM=caroster@caroster.io -SENDGRID_DEFAULT_REPLYTO=hello@caroster.io +HOST=0.0.0.0 +PORT=1337 +APP_KEYS="toBeModified1,toBeModified2" +API_TOKEN_SALT=tobemodified +ADMIN_JWT_SECRET=tobemodified +JWT_SECRET=tobemodified +SENTRY_DSN=
D backend/.eslintignore

@@ -1,3 +0,0 @@

-.cache -build -**/node_modules/**
D backend/.eslintrc

@@ -1,29 +0,0 @@

-{ - "parser": "babel-eslint", - "extends": "eslint:recommended", - "env": { - "commonjs": true, - "es6": true, - "node": true, - "browser": false, - "jest": true - }, - "parserOptions": { - "ecmaFeatures": { - "experimentalObjectRestSpread": true, - "jsx": false - }, - "sourceType": "module" - }, - "globals": { - "strapi": true, - "getContext": true - }, - "rules": { - "indent": ["error", 2, { "SwitchCase": 1 }], - "linebreak-style": ["error", "unix"], - "no-console": 0, - "quotes": ["error", "single"], - "semi": ["error", "always"] - } -}
M backend/.gitignorebackend/.gitignore

@@ -82,7 +82,6 @@ .idea

nbproject public/uploads/* !public/uploads/.gitkeep -.vscode ############################ # Node.js

@@ -96,7 +95,6 @@ results

node_modules .node_history - ############################ # Tests ############################

@@ -108,12 +106,11 @@ ############################

# Strapi ############################ -# .env +.env +license.txt exports -.cache +*.cache build -.env -.env.bckp .strapi-updater.json restart.test dist/
D backend/.nvmrc

@@ -1,1 +0,0 @@

-v14.18
D backend/.prettierrc

@@ -1,5 +0,0 @@

-semi: true -singleQuote: true -bracketSpacing: false -trailingComma: es5 -arrowParens: avoid
M backend/.strapi-updater.jsonbackend/.strapi-updater.json

@@ -1,5 +1,4 @@

{ - "latest": "3.6.10", - "lastUpdateCheck": 1659691934507, - "lastNotification": 1659691934502 + "latest": "4.3.4", + "lastUpdateCheck": 1661162674634 }
D backend/Dockerfile

@@ -1,35 +0,0 @@

-# Build stage -FROM strapi/base:12-alpine - -ARG VERSION -ENV VERSION ${VERSION:-dev} -ENV NPM_REGISTRY https://npm-8ee.hidora.com/ -ENV NODE_ENV production -WORKDIR /srv/app - -RUN apk add --no-cache git -RUN npm set registry $NPM_REGISTRY - -## Install dependencies -COPY . /srv/app/ -RUN npm i --only=production - -# Build Strapi admin -RUN npm run build - -## Build front app -RUN rm -rf public && \ - cd app && npm ci && \ - npm run build && \ - mv build ../public && \ - cd .. && rm -rf app - -# Prod stage -FROM strapi/base:12-alpine - -ENV NODE_ENV production -WORKDIR /srv/app - -COPY --from=0 /srv/app . - -CMD ["npm", "start"]
A backend/README.md

@@ -0,0 +1,57 @@

+# 🚀 Getting started with Strapi + +Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html) (CLI) which lets you scaffold and manage your project in seconds. + +### `develop` + +Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-develop) + +``` +npm run develop +# or +yarn develop +``` + +### `start` + +Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-start) + +``` +npm run start +# or +yarn start +``` + +### `build` + +Build your admin panel. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-build) + +``` +npm run build +# or +yarn build +``` + +## ⚙️ Deployment + +Strapi gives you many possible deployment options for your project. Find the one that suits you on the [deployment section of the documentation](https://docs.strapi.io/developer-docs/latest/setup-deployment-guides/deployment.html). + +## 📚 Learn more + +- [Resource center](https://strapi.io/resource-center) - Strapi resource center. +- [Strapi documentation](https://docs.strapi.io) - Official Strapi documentation. +- [Strapi tutorials](https://strapi.io/tutorials) - List of tutorials made by the core team and the community. +- [Strapi blog](https://docs.strapi.io) - Official Strapi blog containing articles made by the Strapi team and the community. +- [Changelog](https://strapi.io/changelog) - Find out about the Strapi product updates, new features and general improvements. + +Feel free to check out the [Strapi GitHub repository](https://github.com/strapi/strapi). Your feedback and contributions are welcome! + +## ✨ Community + +- [Discord](https://discord.strapi.io) - Come chat with the Strapi community including the core team. +- [Forum](https://forum.strapi.io/) - Place to discuss, ask questions and find answers, show your Strapi project and get feedback or just talk with other Community members. +- [Awesome Strapi](https://github.com/strapi/awesome-strapi) - A curated list of awesome things related to Strapi. + +--- + +<sub>🤫 Psst! [Strapi is hiring](https://strapi.io/careers).</sub>
D backend/api/event/config/routes.json

@@ -1,28 +0,0 @@

-{ - "routes": [ - { - "method": "GET", - "path": "/events/:uuid", - "handler": "event.findOne", - "config": { - "policies": ["plugins::users-permissions.ratelimit"] - } - }, - { - "method": "POST", - "path": "/events", - "handler": "event.create", - "config": { - "policies": ["plugins::users-permissions.ratelimit"] - } - }, - { - "method": "PUT", - "path": "/events/:uuid", - "handler": "event.update", - "config": { - "policies": ["plugins::users-permissions.ratelimit"] - } - } - ] -}
D backend/api/event/config/schema.graphql.js

@@ -1,33 +0,0 @@

-module.exports = { - definition: ` - input updateEventByUUIDInput { - where: InputUUID - data: editEventInput - } - - input InputUUID { - uuid: String! - } - `, - query: ` - eventByUUID(uuid: String!): Event - `, - mutation: ` - updateEventByUUID(input: updateEventByUUIDInput): updateEventPayload - `, - type: {}, - resolver: { - Query: { - eventByUUID: { - description: 'Retrieve an event using its UUID', - resolver: 'application::event.event.findOne', - }, - }, - Mutation: { - updateEventByUUID: { - description: 'Update an event using its UUID', - resolver: 'application::event.event.update', - }, - }, - }, -};
D backend/api/event/controllers/event.js

@@ -1,37 +0,0 @@

-'use strict'; - -module.exports = { - async findOne(ctx) { - const uuid = ctx.params._uuid || ctx.params.uuid; - if (!uuid) throw new Error('No uuid provided'); - const event = await strapi.services.event.findOne({uuid}); - if (event) return strapi.services.event.sanitize(event); - else return ctx.badRequest('No event found'); - }, - - async create(ctx) { - let event = ctx.request.body; - const user = ctx.state.user; - - if (user) event = {...event, users: [user.id]}; - - const entity = await strapi.services.event.create(event); - return strapi.services.event.sanitize(entity); - }, - - async update(ctx) { - const uuid = ctx.params._uuid || ctx.params.uuid; - const eventUpdate = ctx.request.body; - - try { - const updatedEvent = await strapi.services.event.update( - {uuid}, - eventUpdate - ); - const event = strapi.services.event.sanitize(updatedEvent); - return {event}; - } catch (error) { - return ctx.badRequest('No event found'); - } - }, -};
D backend/api/event/documentation/1.0.0/event.json

@@ -1,682 +0,0 @@

-{ - "paths": { - "/events": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Event" - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "parameters": [ - { - "name": "_limit", - "in": "query", - "required": false, - "description": "Maximum number of results possible", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "_sort", - "in": "query", - "required": false, - "description": "Sort according to a specific field.", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_start", - "in": "query", - "required": false, - "description": "Skip a specific number of entries (especially useful for pagination)", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "=", - "in": "query", - "required": false, - "description": "Get entries that matches exactly your input", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_ne", - "in": "query", - "required": false, - "description": "Get records that are not equals to something", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lt", - "in": "query", - "required": false, - "description": "Get record that are lower than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lte", - "in": "query", - "required": false, - "description": "Get records that are lower than or equal to a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gt", - "in": "query", - "required": false, - "description": "Get records that are greater than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gte", - "in": "query", - "required": false, - "description": "Get records that are greater than or equal a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_contains", - "in": "query", - "required": false, - "description": "Get records that contains a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_containss", - "in": "query", - "required": false, - "description": "Get records that contains (case sensitive) a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_in", - "in": "query", - "required": false, - "description": "Get records that matches any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - }, - { - "name": "_nin", - "in": "query", - "required": false, - "description": "Get records that doesn't match any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - } - ] - }, - "post": { - "deprecated": false, - "description": "Create a new record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Event" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewEvent" - } - } - } - } - } - }, - "/events/count": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "properties": { - "count": { - "type": "integer" - } - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "parameters": [] - } - }, - "/events/{id}": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Event" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "put": { - "deprecated": false, - "description": "Update a record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Event" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewEvent" - } - } - } - }, - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "delete": { - "deprecated": false, - "description": "Delete a record", - "responses": { - "200": { - "description": "deletes a single record based on the ID supplied", - "content": { - "application/json": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - } - } - }, - "components": { - "schemas": { - "Event": { - "required": [ - "id", - "name", - "email" - ], - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "email": { - "type": "string" - }, - "date": { - "type": "string" - }, - "address": { - "type": "string" - }, - "cars": { - "type": "array", - "items": { - "required": [ - "id", - "name", - "seats" - ], - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "seats": { - "type": "integer" - }, - "meeting": { - "type": "string" - }, - "departure": { - "type": "datetime" - }, - "phone_number": { - "type": "string" - }, - "details": { - "type": "string" - }, - "event": { - "type": "string" - }, - "passengers": { - "type": "object" - } - } - } - }, - "position": { - "type": "object" - }, - "waiting_list": { - "type": "object" - }, - "users": { - "type": "array", - "items": { - "required": [ - "id", - "username", - "email" - ], - "properties": { - "id": { - "type": "string" - }, - "username": { - "type": "string" - }, - "firstName": { - "type": "string" - }, - "lastName": { - "type": "string" - }, - "email": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "password": { - "type": "string" - }, - "resetPasswordToken": { - "type": "string" - }, - "confirmed": { - "type": "boolean" - }, - "blocked": { - "type": "boolean" - }, - "role": { - "type": "string" - }, - "events": { - "type": "array", - "items": { - "type": "string" - } - } - } - } - } - } - }, - "NewEvent": { - "required": [ - "name", - "email" - ], - "properties": { - "name": { - "type": "string" - }, - "email": { - "type": "string" - }, - "date": { - "type": "string" - }, - "address": { - "type": "string" - }, - "cars": { - "type": "array", - "items": { - "type": "string" - } - }, - "position": { - "type": "object" - }, - "waiting_list": { - "type": "object" - }, - "users": { - "type": "array", - "items": { - "type": "string" - } - } - } - } - } - }, - "tags": [ - { - "name": "Event" - } - ] -}
D backend/api/event/event.test.js

@@ -1,106 +0,0 @@

-const axios = require('axios'); -const controller = require('./controllers/event'); - -jest.mock('axios'); - -beforeAll(() => { - global.strapi.plugins['email-designer'].services.template.fetch = jest.fn( - () => 1 - ); - global.strapi.plugins['email-designer'].services.email.sendTemplatedEmail = - jest.fn(); - - axios.get.mockResolvedValue({data: [{lat: 0, lng: 0}]}); -}); - -describe('controller.event.findOne', () => { - test('gets sanitized event', async () => { - const ctx = getContext(); - ctx.setParams({ - uuid: '00000000-0000-0000-0000-000000000000', - }); - - const result = await controller.findOne(ctx); - expect(result).toEqual( - expect.objectContaining({ - name: 'Test event', - email: 'test@example.org', - date: '2022-01-12', - address: 'Uni-mail, Geneva, CH', - uuid: '00000000-0000-0000-0000-000000000000', - waitingPassengers: expect.any(Array), - }) - ); - expect(result).toEqual( - expect.not.objectContaining({ - created_by: expect.any(String), - users: expect.any(Array), - }) - ); - }); - - test('sends bad request if user does not exist', async () => { - const ctx = getContext(); - ctx.setParams({ - uuid: 'does not exist', - }); - await controller.findOne(ctx); - expect(ctx.badRequest).toHaveBeenCalled(); - }); -}); - -describe('controller.event.create', () => { - test('creates new event', async () => { - const event = { - name: 'New event', - email: 'test@test.com', - address: 'Event address', - date: '2022-12-12', - }; - const ctx = getContext(); - ctx.setBody(event); - const result = await controller.create(ctx); - expect(result).toEqual( - expect.objectContaining({ - id: expect.any(Number), - uuid: expect.any(String), - email: event.email, - address: event.address, - date: event.date, - }) - ); - }); -}); - -describe('controller.event.update', () => { - test('updates event', async () => { - const uuid = '00000000-0000-0000-0000-000000000000'; - const eventUpdate = { - name: 'Updated event', - email: 'test+update@test.com', - address: 'New event address', - }; - const ctx = getContext(); - ctx.setParams({uuid}); - ctx.setBody(eventUpdate); - - const result = await controller.update(ctx); - expect(result).toEqual( - expect.objectContaining({ - id: expect.any(Number), - uuid: uuid, - email: eventUpdate.email, - address: eventUpdate.address, - }) - ); - }); - - test('sends bad request if user does not exist', async () => { - const ctx = getContext(); - ctx.setParams({ - uuid: 'does not exist', - }); - await controller.update(ctx); - expect(ctx.badRequest).toHaveBeenCalled(); - }); -});
D backend/api/event/models/event.js

@@ -1,74 +0,0 @@

-'use strict'; -const axios = require('axios'); -const moment = require('moment'); -const uuid = require('uuid'); -const sendgrid = require('../../../lib/sendgrid'); -require('moment/locale/fr-ch'); - -const {STRAPI_URL = ''} = process.env; - -module.exports = { - lifecycles: { - async beforeCreate(event) { - if (!event.uuid) event.uuid = uuid.v4(); - // If user provides an address, get its lat/lng position using OSM API - if (event.address) event.position = getPosition(event.address); - // If user accepts newsletters, subscribe it - if (event.newsletter) sendgrid.subscribe(event.email); - }, - async afterCreate(event) { - sendEmailToCreator(event); - }, - - async beforeUpdate(params, event) { - const eventInDb = await strapi.services.event.findOne(params); - if (eventInDb && !eventInDb.uuid) event.uuid = uuid.v4(); - if (event.address) event.position = getPosition(event.address); - }, - }, -}; - -const getPosition = async address => { - try { - const query = encodeURI(address); - const {data} = await axios.get( - `https://nominatim.openstreetmap.org/search?format=json&q=${query}` - ); - if (Array.isArray(data) && data.length > 0) { - const [entity] = data; - return [entity.lat, entity.lon]; - } else strapi.log.info(`No location from Nominatim API for ${address}`); - } catch (error) { - strapi.log.error(error); - } -}; - -const sendEmailToCreator = async event => { - try { - const templateId = await strapi.plugins[ - 'email-designer' - ].services.template.getId('creator_notif'); - await strapi.plugins['email-designer'].services.email.sendTemplatedEmail( - { - to: event.email, - }, - { - templateId, - }, - { - event, - eventTime: event.date - ? moment(event.date).format('dddd D MMMM YYYY') - : null, - eventLink: `${STRAPI_URL}/e/${event.uuid}`, - } - ); - } catch (error) { - console.error(error); - strapi.log.error( - `Impossible to send email notification to ${event.email} for event#${ - event.id - }. Error: ${JSON.stringify(error)}` - ); - } -};
D backend/api/event/models/event.settings.json

@@ -1,56 +0,0 @@

-{ - "kind": "collectionType", - "collectionName": "events", - "info": { - "name": "event", - "description": "" - }, - "options": { - "increments": true, - "timestamps": true, - "draftAndPublish": false - }, - "attributes": { - "name": { - "type": "string", - "required": true - }, - "email": { - "type": "string", - "required": true - }, - "date": { - "type": "date" - }, - "address": { - "type": "text" - }, - "position": { - "type": "json" - }, - "users": { - "via": "events", - "plugin": "users-permissions", - "collection": "user" - }, - "uuid": { - "type": "string", - "unique": true - }, - "travels": { - "via": "event", - "collection": "travel" - }, - "description": { - "type": "text", - "maxLength": 250 - }, - "waitingPassengers": { - "via": "event", - "collection": "passenger" - }, - "newsletter": { - "type": "boolean" - } - } -}
D backend/api/event/services/event.js

@@ -1,74 +0,0 @@

-'use strict'; -const moment = require('moment'); -const _pick = require('lodash/pick'); - -const TEMPLATE_NAME_RECAP = 'event_recap'; -const PUBLIC_FIELDS = [ - 'id', - 'uuid', - 'name', - 'description', - 'email', - 'id', - 'date', - 'address', - 'position', - 'waitingPassengers', - 'travels', - 'created_at', - 'updated_at', -]; - -const {STRAPI_URL = ''} = process.env; - -module.exports = { - sanitize: event => { - const waitingPassengers = event?.waitingPassengers?.map(list => - _pick(list, ['id', 'name', 'location', 'user']) - ); - const sanitizedEvent = _pick(event, PUBLIC_FIELDS); - return {...sanitizedEvent, waitingPassengers}; - }, - - sendDailyRecap: async event => { - const referenceDate = moment().subtract(1, 'day'); - const hasBeenModified = referenceDate.isSameOrBefore(event.updated_at); - if (hasBeenModified) { - strapi.log.debug( - `Send daily recap to ${event.email} for event #${event.id}` - ); - const newTravels = event.travels?.filter(travel => - referenceDate.isSameOrBefore(travel.created_at) - ); - try { - const templateId = await strapi.plugins[ - 'email-designer' - ].services.template.getId(TEMPLATE_NAME_RECAP); - await strapi.plugins[ - 'email-designer' - ].services.email.sendTemplatedEmail( - { - to: event.email, - }, - { - templateId, - }, - { - event, - eventLink: `${STRAPI_URL}/e/${event.uuid}`, - waitingPassengersCount: event.waitingPassengers?.length || 0, - travelsCount: event.travels?.length || 0, - newTravelsCount: newTravels?.length || 0, - } - ); - } catch (error) { - console.error(error); - strapi.log.error( - `Impossible to send recap notification to ${event.email} for event #${ - event.id - }. Error: ${JSON.stringify(error)}` - ); - } - } - }, -};
D backend/api/page/config/routes.json

@@ -1,52 +0,0 @@

-{ - "routes": [ - { - "method": "GET", - "path": "/pages", - "handler": "page.find", - "config": { - "policies": [] - } - }, - { - "method": "GET", - "path": "/pages/count", - "handler": "page.count", - "config": { - "policies": [] - } - }, - { - "method": "GET", - "path": "/pages/:id", - "handler": "page.findOne", - "config": { - "policies": [] - } - }, - { - "method": "POST", - "path": "/pages", - "handler": "page.create", - "config": { - "policies": [] - } - }, - { - "method": "PUT", - "path": "/pages/:id", - "handler": "page.update", - "config": { - "policies": [] - } - }, - { - "method": "DELETE", - "path": "/pages/:id", - "handler": "page.delete", - "config": { - "policies": [] - } - } - ] -}
D backend/api/page/controllers/page.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/v3.x/concepts/controllers.html#core-controllers) - * to customize this controller - */ - -module.exports = {};
D backend/api/page/documentation/1.0.0/page.json

@@ -1,566 +0,0 @@

-{ - "paths": { - "/pages": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Page" - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "parameters": [ - { - "name": "_limit", - "in": "query", - "required": false, - "description": "Maximum number of results possible", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "_sort", - "in": "query", - "required": false, - "description": "Sort according to a specific field.", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_start", - "in": "query", - "required": false, - "description": "Skip a specific number of entries (especially useful for pagination)", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "=", - "in": "query", - "required": false, - "description": "Get entries that matches exactly your input", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_ne", - "in": "query", - "required": false, - "description": "Get records that are not equals to something", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lt", - "in": "query", - "required": false, - "description": "Get record that are lower than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lte", - "in": "query", - "required": false, - "description": "Get records that are lower than or equal to a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gt", - "in": "query", - "required": false, - "description": "Get records that are greater than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gte", - "in": "query", - "required": false, - "description": "Get records that are greater than or equal a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_contains", - "in": "query", - "required": false, - "description": "Get records that contains a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_containss", - "in": "query", - "required": false, - "description": "Get records that contains (case sensitive) a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_in", - "in": "query", - "required": false, - "description": "Get records that matches any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - }, - { - "name": "_nin", - "in": "query", - "required": false, - "description": "Get records that doesn't match any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - } - ] - }, - "post": { - "deprecated": false, - "description": "Create a new record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Page" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewPage" - } - } - } - } - } - }, - "/pages/count": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "properties": { - "count": { - "type": "integer" - } - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "parameters": [] - } - }, - "/pages/{id}": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Page" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "put": { - "deprecated": false, - "description": "Update a record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Page" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewPage" - } - } - } - }, - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "delete": { - "deprecated": false, - "description": "Delete a record", - "responses": { - "200": { - "description": "deletes a single record based on the ID supplied", - "content": { - "application/json": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - } - } - }, - "components": { - "schemas": { - "Page": { - "required": [ - "id", - "name" - ], - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "content": { - "type": "string" - }, - "type": { - "type": "string", - "enum": [ - "tos" - ] - } - } - }, - "NewPage": { - "required": [ - "name" - ], - "properties": { - "name": { - "type": "string" - }, - "content": { - "type": "string" - }, - "type": { - "type": "string", - "enum": [ - "tos" - ] - } - } - } - } - }, - "tags": [ - { - "name": "Page" - } - ] -}
D backend/api/page/models/page.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/v3.x/concepts/models.html#lifecycle-hooks) - * to customize this model - */ - -module.exports = {};
M backend/api/page/models/page.settings.jsonbackend/src/api/page/content-types/page/schema.json

@@ -2,7 +2,10 @@ {

"kind": "collectionType", "collectionName": "pages", "info": { - "name": "page" + "name": "page", + "singularName": "page", + "pluralName": "pages", + "displayName": "Page" }, "options": { "increments": true,

@@ -18,9 +21,7 @@ "type": "richtext"

}, "type": { "type": "enumeration", - "enum": [ - "tos" - ] + "enum": ["tos"] } } }
D backend/api/passenger/controllers/passenger.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#core-controllers) - * to customize this controller - */ - -module.exports = {};
D backend/api/passenger/models/passenger.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#lifecycle-hooks) - * to customize this model - */ - -module.exports = {};
D backend/api/passenger/models/passenger.settings.json

@@ -1,38 +0,0 @@

-{ - "kind": "collectionType", - "collectionName": "passengers", - "info": { - "name": "Passenger", - "description": "" - }, - "options": { - "increments": true, - "timestamps": true, - "draftAndPublish": false - }, - "attributes": { - "name": { - "type": "string", - "required": true - }, - "email": { - "type": "email" - }, - "location": { - "type": "string" - }, - "user": { - "plugin": "users-permissions", - "model": "user", - "via": "passengers" - }, - "event": { - "via": "waitingPassengers", - "model": "event" - }, - "travel": { - "via": "passengers", - "model": "travel" - } - } -}
D backend/api/settings/config/routes.json

@@ -1,28 +0,0 @@

-{ - "routes": [ - { - "method": "GET", - "path": "/settings", - "handler": "settings.find", - "config": { - "policies": [] - } - }, - { - "method": "PUT", - "path": "/settings", - "handler": "settings.update", - "config": { - "policies": [] - } - }, - { - "method": "DELETE", - "path": "/settings", - "handler": "settings.delete", - "config": { - "policies": [] - } - } - ] -}
D backend/api/settings/controllers/settings.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/v3.x/concepts/controllers.html#core-controllers) - * to customize this controller - */ - -module.exports = {};
D backend/api/settings/documentation/1.0.0/settings.json

@@ -1,346 +0,0 @@

-{ - "paths": { - "/settings": { - "get": { - "deprecated": false, - "description": "Find all the settings's records", - "responses": { - "200": { - "description": "Retrieve settings document(s)", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Settings" - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Settings" - ], - "parameters": [ - { - "name": "_limit", - "in": "query", - "required": false, - "description": "Maximum number of results possible", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "_sort", - "in": "query", - "required": false, - "description": "Sort according to a specific field.", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_start", - "in": "query", - "required": false, - "description": "Skip a specific number of entries (especially useful for pagination)", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "=", - "in": "query", - "required": false, - "description": "Get entries that matches exactly your input", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_ne", - "in": "query", - "required": false, - "description": "Get records that are not equals to something", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lt", - "in": "query", - "required": false, - "description": "Get record that are lower than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lte", - "in": "query", - "required": false, - "description": "Get records that are lower than or equal to a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gt", - "in": "query", - "required": false, - "description": "Get records that are greater than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gte", - "in": "query", - "required": false, - "description": "Get records that are greater than or equal a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_contains", - "in": "query", - "required": false, - "description": "Get records that contains a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_containss", - "in": "query", - "required": false, - "description": "Get records that contains (case sensitive) a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_in", - "in": "query", - "required": false, - "description": "Get records that matches any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - }, - { - "name": "_nin", - "in": "query", - "required": false, - "description": "Get records that doesn't match any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - } - ] - }, - "put": { - "deprecated": false, - "description": "Update a single settings record", - "responses": { - "200": { - "description": "Retrieve settings document(s)", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Settings" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Settings" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewSettings" - } - } - } - }, - "parameters": [] - }, - "delete": { - "deprecated": false, - "description": "Delete a single settings record", - "responses": { - "200": { - "description": "deletes a single settings based on the ID supplied", - "content": { - "application/json": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Settings" - ], - "parameters": [] - } - } - }, - "components": { - "schemas": { - "Settings": { - "required": [ - "id" - ], - "properties": { - "id": { - "type": "string" - }, - "gtm_id": { - "type": "string" - }, - "about_link": { - "type": "string" - } - } - }, - "NewSettings": { - "properties": { - "gtm_id": { - "type": "string" - }, - "about_link": { - "type": "string" - } - } - } - } - }, - "tags": [ - { - "name": "Settings" - } - ] -}
D backend/api/settings/models/settings.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/v3.x/concepts/models.html#lifecycle-hooks) - * to customize this model - */ - -module.exports = {};
M backend/api/settings/models/settings.settings.jsonbackend/src/api/setting/content-types/setting/schema.json

@@ -2,12 +2,11 @@ {

"kind": "singleType", "collectionName": "settings", "info": { - "name": "settings", - "description": "" + "singularName": "setting", + "pluralName": "settings", + "displayName": "Settings" }, "options": { - "increments": true, - "timestamps": true, "draftAndPublish": false }, "pluginOptions": {

@@ -17,37 +16,37 @@ }

}, "attributes": { "gtm_id": { - "type": "string", - "regex": "GTM-.*", "pluginOptions": { "i18n": { "localized": false } - } + }, + "type": "string", + "regex": "GTM-.*" }, "about_link": { - "type": "string", "pluginOptions": { "i18n": { "localized": false } - } + }, + "type": "string" }, - "announcement": { - "type": "richtext", + "faq_link": { "pluginOptions": { "i18n": { - "localized": true + "localized": false } - } + }, + "type": "string" }, - "faq_link": { - "type": "string", + "announcement": { "pluginOptions": { "i18n": { - "localized": false + "localized": true } - } + }, + "type": "richtext" } } }
D backend/api/settings/services/settings.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/v3.x/concepts/services.html#core-services) - * to customize this service - */ - -module.exports = {};
D backend/api/travel/config/routes.json

@@ -1,52 +0,0 @@

-{ - "routes": [ - { - "method": "GET", - "path": "/travels", - "handler": "travel.find", - "config": { - "policies": [] - } - }, - { - "method": "GET", - "path": "/travels/count", - "handler": "travel.count", - "config": { - "policies": [] - } - }, - { - "method": "GET", - "path": "/travels/:id", - "handler": "travel.findOne", - "config": { - "policies": [] - } - }, - { - "method": "POST", - "path": "/travels", - "handler": "travel.create", - "config": { - "policies": [] - } - }, - { - "method": "PUT", - "path": "/travels/:id", - "handler": "travel.update", - "config": { - "policies": [] - } - }, - { - "method": "DELETE", - "path": "/travels/:id", - "handler": "travel.delete", - "config": { - "policies": [] - } - } - ] -}
D backend/api/travel/config/schema.graphql.js

@@ -1,11 +0,0 @@

-module.exports = { - definition: ` - extend input TravelInput { - createVehicle: Boolean - } - `, - query: ``, - mutation: ``, - type: {}, - resolver: {}, -};
D backend/api/travel/controllers/travel.js

@@ -1,29 +0,0 @@

-'use strict'; - -module.exports = { - async create(ctx) { - const {createVehicle = false, ...travelInput} = ctx.request.body; - const userId = ctx.state.user?.id; - - if (userId && createVehicle) { - try { - const vehicleInput = { - name: travelInput.vehicleName, - seats: travelInput.seats || 0, - phone_number: travelInput.phone_number, - user: userId, - }; - await strapi.services.vehicle.create(vehicleInput); - } catch (error) { - console.error(`Can't create vehicle for user ${userId}`, error); - } - } - - try { - return await strapi.services.travel.create(travelInput); - } catch (error) { - console.error(`Can't create new travel`, error); - throw new Error("Can't create new travel"); - } - }, -};
D backend/api/travel/models/travel.js

@@ -1,85 +0,0 @@

-'use strict'; - -const _uniq = require('lodash/uniq'); - -const {STRAPI_URL = ''} = process.env; - -module.exports = { - lifecycles: { - async afterCreate(result) { - sendEmailsToWaitingPassengers(result); - }, - - async beforeUpdate(query, update) { - const travel = await strapi.services.travel.findOne(query); - if (update.passengers && travel?.vehicle) { - if (travel?.vehicle?.seats < update.passengers.length) - throw new Error('no_enough_seats'); - } - }, - - async afterUpdate(result) { - const {passengers = [], seats, event} = result; - const overflowPassengers = passengers.slice(seats); - - if (overflowPassengers.length > 0) { - await Promise.all( - overflowPassengers.map(movePassengerToWaitingList(event.id)) - ); - } - }, - - async beforeDelete(params) { - const travel = await strapi.services.travel.findOne(params); - const {passengers = []} = travel; - - await Promise.all( - passengers.map(movePassengerToWaitingList(travel.event.id)) - ); - }, - }, -}; - -const sendEmailsToWaitingPassengers = async travel => { - const event = travel.event; - const eventWaitingPassengers = event?.waitingPassengers || []; - const userEmails = eventWaitingPassengers - .map(user => user.email) - .filter(Boolean); - const templateId = await strapi.plugins[ - 'email-designer' - ].services.template.getId('waitinglist_notif'); - - if (userEmails?.length > 0) - try { - await strapi.plugins['email-designer'].services.email.sendTemplatedEmail( - { - to: _uniq(userEmails), - }, - { - templateId, - }, - { - event, - travel, - eventLink: `${STRAPI_URL}/e/${event.uuid}`, - } - ); - } catch (error) { - console.error(error); - strapi.log.error( - `Impossible to send email waiting list notification for event #${ - event.id - }. Error: ${JSON.stringify(error)}` - ); - } -}; - -const movePassengerToWaitingList = eventId => async passenger => - strapi.services.passenger.update( - {id: passenger.id}, - { - travel: null, - event: eventId, - } - );
M backend/api/travel/models/travel.settings.jsonbackend/src/api/travel/content-types/travel/schema.json

@@ -3,7 +3,10 @@ "kind": "collectionType",

"collectionName": "travels", "info": { "name": "travel", - "description": "" + "description": "", + "singularName": "travel", + "pluralName": "travels", + "displayName": "Travel" }, "options": { "increments": true,

@@ -20,10 +23,6 @@ },

"details": { "type": "text" }, - "event": { - "via": "travels", - "model": "event" - }, "vehicleName": { "type": "string" },

@@ -35,9 +34,17 @@ },

"phone_number": { "type": "string" }, + "event": { + "type": "relation", + "relation": "manyToOne", + "target": "api::event.event", + "inversedBy": "travels" + }, "passengers": { - "via": "travel", - "collection": "passenger" + "type": "relation", + "relation": "oneToMany", + "target": "api::passenger.passenger", + "mappedBy": "travel" } } }
D backend/api/vehicle/config/routes.json

@@ -1,52 +0,0 @@

-{ - "routes": [ - { - "method": "GET", - "path": "/vehicles", - "handler": "vehicle.find", - "config": { - "policies": [] - } - }, - { - "method": "GET", - "path": "/vehicles/count", - "handler": "vehicle.count", - "config": { - "policies": [] - } - }, - { - "method": "GET", - "path": "/vehicles/:id", - "handler": "vehicle.findOne", - "config": { - "policies": [] - } - }, - { - "method": "POST", - "path": "/vehicles", - "handler": "vehicle.create", - "config": { - "policies": [] - } - }, - { - "method": "PUT", - "path": "/vehicles/:id", - "handler": "vehicle.update", - "config": { - "policies": [] - } - }, - { - "method": "DELETE", - "path": "/vehicles/:id", - "handler": "vehicle.delete", - "config": { - "policies": [] - } - } - ] -}
D backend/api/vehicle/controllers/vehicle.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#core-controllers) - * to customize this controller - */ - -module.exports = {};
D backend/api/vehicle/models/vehicle.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#lifecycle-hooks) - * to customize this model - */ - -module.exports = {};
M backend/api/vehicle/models/vehicle.settings.jsonbackend/src/api/vehicle/content-types/vehicle/schema.json

@@ -3,7 +3,10 @@ "kind": "collectionType",

"collectionName": "vehicles", "info": { "name": "vehicle", - "description": "" + "description": "", + "singularName": "vehicle", + "pluralName": "vehicles", + "displayName": "Vehicle" }, "options": { "increments": true,

@@ -24,9 +27,10 @@ "phone_number": {

"type": "string" }, "user": { - "plugin": "users-permissions", - "model": "user", - "via": "vehicles" + "type": "relation", + "relation": "manyToOne", + "target": "plugin::users-permissions.user", + "inversedBy": "vehicles" } } }
D backend/api/vehicle/services/vehicle.js

@@ -1,8 +0,0 @@

-'use strict'; - -/** - * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#core-services) - * to customize this service - */ - -module.exports = {};
D backend/components/passenger/passenger.json

@@ -1,26 +0,0 @@

-{ - "collectionName": "components_passenger_passengers", - "info": { - "name": "passenger", - "icon": "user", - "description": "" - }, - "options": {}, - "attributes": { - "name": { - "type": "string", - "required": true - }, - "email": { - "type": "email", - "required": false - }, - "location": { - "type": "string" - }, - "user": { - "plugin": "users-permissions", - "model": "user" - } - } -}
A backend/config/admin.ts

@@ -0,0 +1,8 @@

+export default ({ env }) => ({ + auth: { + secret: env('ADMIN_JWT_SECRET'), + }, + apiToken: { + salt: env('API_TOKEN_SALT'), + }, +});
A backend/config/api.ts

@@ -0,0 +1,7 @@

+export default { + rest: { + defaultLimit: 25, + maxLimit: 100, + withCount: true, + }, +};
A backend/config/cron-tasks.ts

@@ -0,0 +1,23 @@

+import { DateTime } from "luxon"; +import pMap from "p-map"; + +export default { + /** + * Send event recap to creators + * Everyday at 08:00 + */ + "*/1 * * * *": async ({ strapi }) => { + const events = await strapi.entityService.findMany("api::event.event", { + filters: { + date: { + $gte: DateTime.now().toISODate(), + }, + }, + limit: -1, + }); + + await pMap(events, strapi.service("api::event.event").sendDailyRecap, { + concurrency: 5, + }); + }, +};
D backend/config/database.js

@@ -1,17 +0,0 @@

-module.exports = ({env}) => ({ - defaultConnection: 'default', - connections: { - default: { - connector: 'bookshelf', - settings: { - client: 'postgres', - host: env('DATABASE_HOST', 'localhost'), - port: env.int('DATABASE_PORT', 5432), - database: env('DATABASE_NAME', 'caroster'), - username: env('DATABASE_USERNAME', 'postgres'), - password: env('DATABASE_PASSWORD', 'password'), - }, - options: {}, - }, - }, -});
A backend/config/database.ts

@@ -0,0 +1,13 @@

+export default ({ env }) => ({ + connection: { + client: "postgres", + connection: { + host: env("DATABASE_HOST", "127.0.0.1"), + port: env.int("DATABASE_PORT", 5432), + database: env("DATABASE_NAME", "caroster-v4"), + user: env("DATABASE_USERNAME", "postgres"), + password: env("DATABASE_PASSWORD", "password"), + ssl: env.bool("DATABASE_SSL", false), + }, + }, +});
D backend/config/env/test/database.js

@@ -1,21 +0,0 @@

-module.exports = ({env}) => { - return { - defaultConnection: 'default', - connections: { - default: { - connector: 'bookshelf', - settings: { - client: 'sqlite', - filename: env('DATABASE_PATH', '.tmp/test.db'), - }, - options: { - useNullAsDefault: true, - pool: { - min: 0, - max: 1, - }, - }, - }, - }, - }; -};
A backend/config/env/test/database.ts

@@ -0,0 +1,13 @@

+import path from "path"; + +export default ({ env }) => { + return { + connection: { + client: "sqlite", + connection: { + filename: env("DATABASE_FILENAME", path.join(".tmp", "test.db")), + }, + useNullAsDefault: true, + }, + }; +};
D backend/config/functions/bootstrap.js

@@ -1,74 +0,0 @@

-'use strict'; -const {NODE_ENV} = process.env; -const permissions = require('../permissions.json'); - -/** - * An asynchronous bootstrap function that runs before - * your application gets started. - * - * This gives you an opportunity to set up your data model, - * run jobs, or perform some special logic. - * - * See more details here: https://strapi.io/documentation/v3.x/concepts/configurations.html#bootstrap - */ - -module.exports = async () => { - /** - * Set permissions - */ - - // For each role, set permissions - const roles = Object.keys(permissions.roles); - await Promise.all( - roles.map(async roleType => { - // Get role entity in Strapi db - const role = await strapi.query('role', 'users-permissions').findOne({ - type: roleType, - }); - // If role doesn't exist, skip - if (!role) return []; - - // Enable or create permissions for each roles, controllers and actions - const perms = permissions.roles[roleType]; - return perms.map(({type, controllers}) => - controllers.map(({name: controller, actions}) => - actions.map(async action => { - const existingPerm = await strapi - .query('permission', 'users-permissions') - .findOne({ - role: role.id, - type, - controller, - action, - }); - if (existingPerm) { - if (existingPerm.enabled) return false; // If permission already enabled, skip - if (NODE_ENV !== 'test') - strapi.log.debug( - `Enable permission ${type}.${controller}.${action} for role ${roleType}.` - ); - - return strapi - .query('permission', 'users-permissions') - .update( - {role: role.id, type, controller, action}, - {enabled: true} - ); - } else { - strapi.log.info( - `Create permission ${type}.${controller}.${action} for role ${roleType}.` - ); - return strapi.query('permission', 'users-permissions').create({ - role: role.id, - type, - controller, - action, - enabled: true, - }); - } - }) - ) - ); - }) - ); -};
D backend/config/functions/cron.js

@@ -1,28 +0,0 @@

-'use strict'; - -const pMap = require('p-map'); -const moment = require('moment'); - -/** - * Cron config that gives you an opportunity - * to run scheduled jobs. - * - * The cron format consists of: - * [SECOND (optional)] [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK] - * - * See more details here: https://strapi.io/documentation/v3.x/concepts/configurations.html#cron-tasks - */ - -module.exports = { - /** - * Send event recap to creators - * Everyday at 08:00 - */ - '0 8 * * *': async () => { - const events = await strapi.services.event.find({ - _limit: -1, - date_gte: moment().toISOString(), - }); - await pMap(events, strapi.services.event.sendDailyRecap, {concurrency: 5}); - }, -};
D backend/config/functions/responses/404.js

@@ -1,5 +0,0 @@

-'use strict'; - -module.exports = async (/* ctx */) => { - // return ctx.notFound('My custom message 404'); -};
D backend/config/middleware.js

@@ -1,26 +0,0 @@

-module.exports = ({env}) => ({ - timeout: 10000, - load: { - after: ['parser', 'router', 'next-proxy'], - }, - settings: { - 'next-proxy': { - enabled: true, - host: env('NEXT_URL', 'http://localhost:3000'), - conf: { - overrideResponseHeaders: { - 'next-proxy': true, - }, - }, - }, - sentry: { - enabled: true, - settings: { - dsn: env('SENTRY_DSN', null), - release: env('VERSION', 'dev'), - environment: env('NODE_ENV', 'development'), - serverName: env('STRAPI_URL', 'local'), - }, - }, - }, -});
A backend/config/middlewares.ts

@@ -0,0 +1,36 @@

+export default [ + "strapi::errors", + { + name: "strapi::security", + config: { + contentSecurityPolicy: { + directives: { + "script-src": ["'self'", "editor.unlayer.com"], + "frame-src": ["'self'", "editor.unlayer.com"], + "img-src": [ + "'self'", + "data:", + "cdn.jsdelivr.net", + "strapi.io", + "s3.amazonaws.com", + ], + }, + }, + }, + }, + "strapi::cors", + "strapi::poweredBy", + "strapi::logger", + "strapi::query", + "strapi::body", + "strapi::session", + "strapi::favicon", + "strapi::public", + { + resolve: "./src/middlewares/graphql-logger", + config: { + enabled: true, + conf: {}, + }, + }, +];
D backend/config/permissions.json

@@ -1,83 +0,0 @@

-{ - "roles": { - "public": [ - { - "type": "application", - "controllers": [ - { - "name": "car", - "actions": ["create", "delete", "update"] - }, - { - "name": "travel", - "actions": ["create", "delete", "update"] - }, - { - "name": "vehicle", - "actions": ["create", "delete", "update"] - }, - { - "name": "event", - "actions": ["create", "update", "findone"] - }, - { - "name": "passenger", - "actions": ["create", "delete", "update"] - }, - { - "name": "page", - "actions": ["find", "findone"] - }, - { - "name": "settings", - "actions": ["find"] - } - ] - } - ], - "authenticated": [ - { - "type": "application", - "controllers": [ - { - "name": "car", - "actions": ["create", "delete", "update"] - }, - { - "name": "travel", - "actions": ["create", "delete", "update"] - }, - { - "name": "vehicle", - "actions": ["create", "delete", "update"] - }, - { - "name": "event", - "actions": ["create", "update", "findone"] - }, - { - "name": "passenger", - "actions": ["create", "delete", "update"] - }, - { - "name": "page", - "actions": ["find", "findone"] - }, - { - "name": "settings", - "actions": ["find"] - } - ] - }, - { - "type": "users-permissions", - "controllers": [ - { - "name": "user", - "actions": ["me", "updateme"] - } - ] - } - ] - } -}
A backend/config/permissions.ts

@@ -0,0 +1,38 @@

+const publicPerms = [ + "api::travel.travel.create", + "api::travel.travel.delete", + "api::travel.travel.update", + + "api::vehicle.vehicle.create", + "api::vehicle.vehicle.delete", + "api::vehicle.vehicle.update", + + "api::event.event.create", + "api::event.event.findOne", + "api::event.event.update", + + "api::passenger.passenger.create", + "api::passenger.passenger.delete", + "api::passenger.passenger.update", + + "api::page.page.find", + "api::page.page.findOne", + + "api::setting.setting.find", + + // GraphQL disabled at load + "api::travel.travel.find", + "api::passenger.passenger.find", + "api::event.event.find", + "plugin::users-permissions.user.find", + "api::vehicle.vehicle.find", +]; + +const authenticated = [...publicPerms, "plugin::users-permissions.user.me"]; + +export default { + roles: { + public: publicPerms, + authenticated, + }, +};
D backend/config/plugins.js

@@ -1,12 +0,0 @@

-module.exports = ({env}) => ({ - email: { - provider: 'sendgrid', - providerOptions: { - apiKey: env('SENDGRID_API_KEY'), - }, - settings: { - defaultFrom: env('SENDGRID_DEFAULT_FROM', 'sysadmin@octree.ch'), - defaultReplyTo: env('SENDGRID_DEFAULT_REPLYTO', 'sysadmin@octree.ch'), - }, - }, -});
A backend/config/plugins.ts

@@ -0,0 +1,9 @@

+export default ({ env }) => ({ + sentry: { + enabled: true, + config: { + dsn: env("SENTRY_DSN"), + sendMetadata: true, + }, + }, +});
D backend/config/server.js

@@ -1,13 +0,0 @@

-module.exports = ({env}) => ({ - host: env('HOST', '0.0.0.0'), - port: env.int('PORT', 1337), - url: env('STRAPI_URL', ''), - cron: { - enabled: true, - }, - admin: { - auth: { - secret: env('ADMIN_JWT_SECRET', 'f7c00070368be0aec6e1c0335ffd49de'), - }, - }, -});
A backend/config/server.ts

@@ -0,0 +1,13 @@

+import cronTasks from "./cron-tasks"; + +export default ({ env }) => ({ + host: env("HOST", "0.0.0.0"), + port: env.int("PORT", 1337), + app: { + keys: env.array("APP_KEYS"), + }, + cron: { + enabled: true, + tasks: cronTasks, + }, +});
D backend/extensions/email-designer/services/template.js

@@ -1,12 +0,0 @@

-'use strict'; - -module.exports = { - getId: async templateName => { - const template = await strapi.plugins[ - 'email-designer' - ].services.template.fetch({name: templateName}); - if (!template) - throw new Error(`No email template with name ${templateName}`); - return template.id; - }, -};
D backend/extensions/users-permissions/config/jwt.js

@@ -1,3 +0,0 @@

-module.exports = { - jwtSecret: process.env.JWT_SECRET || '89e511b8-e05c-45af-abb4-e7d97e33a26d' -};
D backend/extensions/users-permissions/config/routes.json

@@ -1,19 +0,0 @@

-{ - "routes": [ - { - "method": "PUT", - "path": "/users/me", - "handler": "User.updateMe", - "config": { - "policies": [], - "prefix": "", - "description": "Update authenticated user", - "tag": { - "plugin": "users-permissions", - "name": "User", - "actionType": "updateMe" - } - } - } - ] -}
D backend/extensions/users-permissions/config/schema.graphql.js

@@ -1,28 +0,0 @@

-module.exports = { - definition: ` - extend type UsersPermissionsMe { - profile: UsersPermissionsUser - } - - extend input editUserInput { - old_password: String - } - - extend input UsersPermissionsRegisterInput { - firstName: String - lastName: String - lang: String - } - `, - mutation: ` - updateMe(input: editUserInput): updateUserPayload! - `, - type: {}, - resolver: { - Mutation: { - updateMe: { - resolver: 'plugins::users-permissions.user.updateMe', - }, - }, - }, -};
D backend/extensions/users-permissions/controllers/User.js

@@ -1,89 +0,0 @@

-const {removeUndefined, sanitizeEntity} = require('strapi-utils'); - -module.exports = { - /** - * Update authenticated user. - * - * @return {Object} - */ - updateMe: async ctx => { - const user = ctx.state.user; - - if (!user) { - return ctx.badRequest(null, [ - {messages: [{id: 'No authorization header was found'}]}, - ]); - } - - const body = ctx.request.body.input || ctx.request.body; - const { - username, - email, - password, - old_password, - firstName, - lastName, - onboardingUser, - onboardingCreator, - lang, - events, - } = body; - - if (password) { - const validPassword = await strapi.plugins[ - 'users-permissions' - ].services.user.validatePassword(old_password, user.password); - if (!validPassword) throw new Error('Auth.form.error.password.matching'); - delete ctx.request.body.old_password; - } - - const currentUser = await strapi.plugins[ - 'users-permissions' - ].services.user.fetch({id: user.id}); - - const updatedEvents = events - ? [...currentUser.events, ...events] - : currentUser.events; - - const data = await strapi.plugins['users-permissions'].services.user.edit( - {id: user.id}, - removeUndefined({ - username, - email, - password, - firstName, - lastName, - onboardingUser, - onboardingCreator, - lang, - events: updatedEvents, - }) - ); - - ctx.send({user: data}); - }, - - /** - * Retrieve authenticated user. - * @return {Object} - */ - async me(ctx) { - if (!ctx.state.user) throw new Error('no_user'); - - const {id} = ctx.state.user; - const user = await strapi.plugins['users-permissions'].services.user.fetch({ - id, - }); - - if (!user) { - return ctx.badRequest(null, [ - {messages: [{id: 'No authorization header was found'}]}, - ]); - } - - const data = sanitizeEntity(user, { - model: strapi.query('user', 'users-permissions').model, - }); - ctx.send({...ctx.state.user, profile: data}); - }, -};
D backend/extensions/users-permissions/models/User.js

@@ -1,9 +0,0 @@

-const sendgrid = require('../../../lib/sendgrid'); - -module.exports = { - lifecycles: { - async afterCreate(user) { - if (user.email) sendgrid.subscribe(user.email); - }, - }, -};
M backend/extensions/users-permissions/models/User.settings.jsonbackend/src/extensions/users-permissions/content-types/user/schema.json

@@ -1,14 +1,16 @@

{ "kind": "collectionType", - "connection": "default", - "collectionName": "users-permissions_user", + "collectionName": "up_users", "info": { "name": "user", - "description": "" + "description": "", + "singularName": "user", + "pluralName": "users", + "displayName": "User" }, "options": { - "timestamps": true, - "draftAndPublish": false + "draftAndPublish": false, + "timestamps": true }, "attributes": { "username": {

@@ -18,18 +20,6 @@ "unique": true,

"configurable": false, "required": true }, - "firstName": { - "type": "string", - "minLength": 3, - "configurable": false, - "required": false - }, - "lastName": { - "type": "string", - "minLength": 3, - "configurable": false, - "required": false - }, "email": { "type": "email", "minLength": 6,

@@ -38,7 +28,8 @@ "required": true

}, "provider": { "type": "string", - "configurable": false + "configurable": false, + "private": true }, "password": { "type": "password",

@@ -51,6 +42,11 @@ "type": "string",

"configurable": false, "private": true }, + "confirmationToken": { + "type": "string", + "configurable": false, + "private": true + }, "confirmed": { "type": "boolean", "default": false,

@@ -59,23 +55,40 @@ },

"blocked": { "type": "boolean", "default": false, - "configurable": false + "configurable": false, + "private": true }, "role": { - "model": "role", - "via": "users", - "plugin": "users-permissions", + "type": "relation", + "relation": "manyToOne", + "target": "plugin::users-permissions.role", + "inversedBy": "users", "configurable": false }, - "confirmationToken": { - "type": "string", - "configurable": false, + "events": { + "type": "relation", + "relation": "manyToMany", + "target": "api::event.event", + "inversedBy": "users" + }, + "passengers": { + "type": "relation", + "relation": "oneToMany", + "target": "api::passenger.passenger", + "mappedBy": "user", "private": true }, - "events": { - "via": "users", - "collection": "event", - "dominant": true + "vehicles": { + "type": "relation", + "relation": "oneToMany", + "target": "api::vehicle.vehicle", + "mappedBy": "user" + }, + "firstName": { + "type": "string" + }, + "lastName": { + "type": "string" }, "onboardingUser": { "type": "boolean",

@@ -87,20 +100,8 @@ "default": false

}, "lang": { "type": "enumeration", - "enum": [ - "FR", - "EN" - ], - "default": "FR", - "required": false - }, - "vehicles": { - "via": "user", - "collection": "vehicle" - }, - "passengers": { - "via": "user", - "collection": "passenger" + "enum": ["FR", "EN"], + "default": "FR" } } }
D backend/knexfile.js

@@ -1,17 +0,0 @@

-const { - POSTGRES_USER = 'postgres', - POSTGRES_PASSWORD = 'password', - POSTGRES_HOST = 'localhost', - POSTGRES_DB = 'strapi_test', - POSTGRES_PORT = 5432, -} = process.env; - -module.exports = { - test: { - client: 'pg', - connection: `postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}`, - seeds: { - directory: __dirname + '/tests/seeds', - }, - }, -};
D backend/lib/sendgrid.js

@@ -1,34 +0,0 @@

-const sendgrid = require('@sendgrid/client'); - -const {SENDGRID_API_KEY, SENDGRID_CONTACTLISTID} = process.env; - -sendgrid.setApiKey(SENDGRID_API_KEY); - -module.exports = { - // https://sendgrid.api-docs.io/v3.0/contacts/add-or-update-a-contact - subscribe: async email => { - if (!SENDGRID_CONTACTLISTID) { - strapi.log.error( - 'No Sendgrid contact list ID provided (SENDGRID_DEFAULT_CONTACTLISTID)' - ); - return null; - } - - try { - strapi.log.info(`Save ${email} to Sendgrid contact list.`); - - await sendgrid.request({ - method: 'PUT', - url: '/v3/marketing/contacts', - body: {list_ids: [SENDGRID_CONTACTLISTID], contacts: [{email}]}, - }); - } catch (error) { - console.error(error.response.body.errors); - strapi.log.error( - `Impossible to save email ${email} tp Sengrid contact list. Error: ${JSON.stringify( - error - )}` - ); - } - }, -};
D backend/middlewares/next-proxy/index.js

@@ -1,19 +0,0 @@

-const proxy = require('koa-proxy'); - -module.exports = strapi => ({ - async initialize() { - const {host = '', conf = {}} = strapi.config.middleware.settings[ - 'next-proxy' - ]; - - strapi.router.get('/', proxy({host, ...conf})); - - strapi.app.use(async (ctx, next) => { - await next(); - - if (ctx.response.status === 404) { - await proxy({host, ...conf})(ctx); - } - }); - }, -});
D backend/migrations/.gitignore

@@ -1,1 +0,0 @@

-mongodb
D backend/migrations/car-travels.js

@@ -1,54 +0,0 @@

-/** - * AVANT DE LANCER CE SCRIPT - * DÉSACTIVER L'ENVOI DE MAIL LORS DE LA CRÉATION D'UN TRAVEL - */ - -const Strapi = require('strapi'); - -// Commenter les lignes suivantes si les emails sur le hook sont désactivés -console.log( - "Avez-vous bien désactivé l'envoi d'emails à la création d'un travel ?" -); -process.exit(1); - -const main = async () => { - await Strapi().load(); - - const cars = await strapi.services.car.find({_limit: -1}); - - for (let i = 0; i < cars.length; i++) { - try { - await splitCar(cars[i]); - } catch (error) { - console.error(error); - } - } - - strapi.log.debug('Done.'); - process.exit(0); -}; - -const splitCar = async car => { - const vehicle = { - name: car.name, - seats: car.seats, - phone_number: car.phone_number, - }; - - await strapi.services.vehicle.create(vehicle); - - const travel = { - meeting: car.meeting, - departure: car.departure, - details: car.details, - passengers: car.passengers, - event: car.event?.id, - vehicleName: car.name, - seats: car.seats, - phone_number: car.phone_number, - }; - - await strapi.services.travel.create(travel); -}; - -main();
D backend/migrations/fill-uuid.js

@@ -1,23 +0,0 @@

-/** - * Until v0.4, events have no UUID. - * This migration script set one to each existing events - */ - -const Strapi = require('strapi'); - -const main = async () => { - await Strapi().load(); - - const events = await strapi.services.event.find({_limit: -1}); - - for (let i = 0; i < events.length; i++) { - const event = events[i]; - strapi.log.debug(`Set UUID for event ${event.id}`); - await strapi.services.event.update({id: event.id}, {uuid: event.id}); - } - - strapi.log.debug('Done.'); - process.exit(0); -}; - -main();
D backend/migrations/passengers-component.js

@@ -1,53 +0,0 @@

-/** - * Migrate raw passengers to passenger components - * for event waiting list & car passengers - * - * **WARNING**: 'passengers' column in 'cars' table must be cloned to - * another column ('old_passengers') to avoid data loss BEFORE - * deploying new project version. To do so: - * - alter table cars add column old_passengers jsonb; - * - update cars set old_passengers = passengers; - * - * Steps: - * 1. Clone 'passengers' column in 'cars' table - * 2. Start Strapi to apply new db schema - * 3. Launch this script - */ - -const Strapi = require('strapi'); - -const main = async () => { - await Strapi().load(); - - /** - * Migrate event waiting list - */ - const events = await strapi.services.event.find({_limit: -1}); - - for (let i = 0; i < events.length; i++) { - const event = events[i]; - const {waiting_list} = event; - if (!waiting_list) continue; - const waitingList = waiting_list.map(name => ({name})); - strapi.log.debug(`Migrate waiting list for event ${event.id}`); - await strapi.services.event.update({id: event.id}, {waitingList}); - } - - /** - * Migrate car passengers - */ - const cars = await strapi.services.car.find({_limit: -1}); - for (let i = 0; i < cars.length; i++) { - const car = cars[i]; - const {old_passengers} = car; - if (!old_passengers) continue; - const passengers = old_passengers.map(name => ({name})); - strapi.log.debug(`Migrate passengers for car ${car.id}`); - await strapi.services.car.update({id: car.id}, {passengers}); - } - - strapi.log.debug('Done.'); - process.exit(0); -}; - -main();
D backend/migrations/passengers-model.js

@@ -1,70 +0,0 @@

-/** - * Migrate passengers components to passengers model - * for event waiting list & travel passengers - * - */ - -const Strapi = require('strapi'); - -const main = async () => { - await Strapi().load(); - - /** - * Migrate event waiting list - */ - const events = await strapi.services.event.find({_limit: -1}); - for (let i = 0; i < events.length; i++) { - const event = events[i]; - const {waitingList} = event; - - if (!waitingList || waitingList.length === 0) continue; - - for (let j = 0; j < waitingList.length; j++) { - const passengerCompo = waitingList[j]; - const passengerModel = await strapi.services.passenger.create({ - name: passengerCompo.name, - email: passengerCompo.email, - location: passengerCompo.location, - user: passengerCompo.user?.id, - event: event.id, - }); - console.log(passengerModel); - } - } - - /** - * Migrate travel passengers - */ - const travels = await strapi.services.travel.find({_limit: -1}); - for (let i = 0; i < travels.length; i++) { - const travel = travels[i]; - - const knex = strapi.connections.default; - const passengers = await knex('travels_components') - .where('travel_id', travel.id) - .leftJoin( - 'components_passenger_passengers', - 'components_passenger_passengers.id', - 'component_id' - ); - - if (!passengers || passengers.length === 0) continue; - - for (let j = 0; j < passengers.length; j++) { - const passengerCompo = passengers[j]; - const passengerModel = await strapi.services.passenger.create({ - name: passengerCompo.name, - email: passengerCompo.email, - location: passengerCompo.location, - user: passengerCompo.user?.id, - travel: travel.id, - }); - console.log(passengerModel.id); - } - } - - strapi.log.debug('Done.'); - process.exit(0); -}; - -main();
M backend/package.jsonbackend/package.json

@@ -1,5 +1,5 @@

{ - "name": "caroster", + "name": "backend-v-4", "private": true, "version": "0.1.0", "description": "A Strapi application",

@@ -8,7 +8,7 @@ "develop": "strapi develop",

"start": "strapi start", "build": "strapi build", "strapi": "strapi", - "start-test": "NODE_ENV=test DATABASE_PATH=../e2e/strapi/test.db strapi develop", + "start-test": "NODE_ENV=test DATABASE_FILENAME=../e2e/strapi/test.db strapi develop", "test": "jest --forceExit --detectOpenHandles", "test:watch": "jest --watch --forceExit --detectOpenHandles", "test:cov": "jest --coverage --forceExit --detectOpenHandles",

@@ -16,6 +16,7 @@ "test:ci": "jest --ci --bail --forceExit --detectOpenHandles",

"console": "PORT=1338 yarn strapi console" }, "devDependencies": { + "@types/uuid": "^8.3.4", "babel-eslint": "^10.1.0", "eslint": "^7.3.1", "faker": "^5.5.3",

@@ -23,35 +24,23 @@ "jest": "^27.3.1",

"sqlite3": "^5.0.11" }, "dependencies": { - "axios": "^0.19.2", - "knex": "^0.95.6", - "koa-proxy": "^1.0.0-alpha.3", - "moment": "^2.27.0", - "pg": "^8.5.1", - "strapi": "3.6.8", - "strapi-admin": "3.6.8", - "strapi-connector-bookshelf": "3.6.8", - "strapi-middleware-sentry": "^0.0.11", - "strapi-plugin-content-manager": "3.6.8", - "strapi-plugin-content-type-builder": "3.6.8", - "strapi-plugin-email": "^3.6.8", - "strapi-plugin-email-designer": "^1.1.3", - "strapi-plugin-graphql": "3.6.8", - "strapi-plugin-i18n": "3.6.8", - "strapi-plugin-upload": "^3.6.8", - "strapi-plugin-users-permissions": "3.6.8", - "strapi-provider-email-sendgrid": "^3.6.8", - "strapi-utils": "3.6.8", - "uuid": "^8.3.2" + "@sendgrid/client": "^7.7.0", + "@strapi/plugin-graphql": "4.3.4", + "@strapi/plugin-i18n": "4.3.4", + "@strapi/plugin-sentry": "^4.3.4", + "@strapi/plugin-users-permissions": "4.3.4", + "@strapi/strapi": "4.3.4", + "pg": "8.6.0", + "strapi-plugin-email-designer": "^2.1.1" }, "author": { "name": "A Strapi developer" }, "strapi": { - "uuid": "8c3a2c9e-1c16-43af-811f-ed1101770497" + "uuid": "51461872-4126-4ff4-8697-4cf9227a48dc" }, "engines": { - "node": ">=10.0.0", + "node": ">=12.x.x <=16.x.x", "npm": ">=6.0.0" }, "license": "MIT",

@@ -60,11 +49,6 @@ "testPathIgnorePatterns": [

"/node_modules/", ".tmp", ".cache" - ], - "globalSetup": "<rootDir>/tests/setup/setupDatabase.js", - "globalTeardown": "<rootDir>/tests/setup/destroyDatabase.js", - "setupFilesAfterEnv": [ - "<rootDir>/tests/setup/setupStrapi.js" ], "testEnvironment": "node" }
A backend/src/admin/app.example.tsx

@@ -0,0 +1,35 @@

+export default { + config: { + locales: [ + // 'ar', + // 'fr', + // 'cs', + // 'de', + // 'dk', + // 'es', + // 'he', + // 'id', + // 'it', + // 'ja', + // 'ko', + // 'ms', + // 'nl', + // 'no', + // 'pl', + // 'pt-BR', + // 'pt', + // 'ru', + // 'sk', + // 'sv', + // 'th', + // 'tr', + // 'uk', + // 'vi', + // 'zh-Hans', + // 'zh', + ], + }, + bootstrap(app) { + console.log(app); + }, +};
A backend/src/admin/tsconfig.json

@@ -0,0 +1,13 @@

+{ + "extends": "@strapi/typescript-utils/tsconfigs/admin", + "include": [ + "../plugins/**/admin/src/**/*", + "./" + ], + "exclude": [ + "node_modules/", + "build/", + "dist/", + "**/*.test.ts" + ] +}
A backend/src/admin/webpack.config.example.js

@@ -0,0 +1,9 @@

+'use strict'; + +/* eslint-disable no-unused-vars */ +module.exports = (config, webpack) => { + // Note: we provide webpack above so you should not `require` it + // Perform customizations to webpack config + // Important: return the modified config + return config; +};
A backend/src/api/event/content-types/event/lifecycles.ts

@@ -0,0 +1,85 @@

+import axios from "axios"; +import { DateTime } from "luxon"; +import { v4 as uuid } from "uuid"; +import sendgrid from "../../../../lib/sendgrid"; + +const { STRAPI_URL = "" } = process.env; + +export default { + async beforeCreate(event) { + const { data } = event.params; + if (!data.uuid) data.uuid = uuid(); + // If user provides an address, get its lat/lng position using OSM API + if (data.address) data.position = getPosition(data.address); + // If user accepts newsletters, subscribe it + if (data.newsletter) sendgrid.subscribe(data.email); + }, + async afterCreate(event) { + sendEmailToCreator(event.result); + }, + + async beforeUpdate(event) { + const { params } = event; + const eventInDb = await strapi.db.query("api::event.event").findOne(params); + if (eventInDb && !eventInDb.uuid) params.data.uuid = uuid(); + if (params.data.address && !params.data.position) + params.data.position = getPosition(params.data.address); + }, +}; + +const getPosition = async (address) => { + try { + const query = encodeURI(address); + const { data } = await axios.get( + `https://nominatim.openstreetmap.org/search?format=json&q=${query}` + ); + if (Array.isArray(data) && data.length > 0) { + const [entity] = data; + return [entity.lat, entity.lon]; + } else strapi.log.info(`No location from Nominatim API for ${address}`); + } catch (error) { + strapi.log.error(error); + } +}; + +const sendEmailToCreator = async (event) => { + try { + const templateName = "creator_notif"; + const template = await strapi + .plugin("email-designer") + .services.template.findOne({ + name: templateName, + }); + + if (!template) { + strapi.log.error(`No email template with name ${templateName}`); + return null; + } + + await strapi.plugin("email-designer").services.email.sendTemplatedEmail( + { + to: event.email, + }, + { + templateReferenceId: template.templateReferenceId, + }, + { + event, + eventTime: event.date + ? DateTime.fromISO(event.date).format("dddd D MMMM YYYY") + : null, + eventLink: `${STRAPI_URL}/e/${event.uuid}`, + } + ); + strapi.log.info( + `Email with template '${templateName}' sent to ${event.email}` + ); + } catch (error) { + console.error(error); + strapi.log.error( + `Impossible to send email notification to ${event.email} for event#${ + event.id + }. Error: ${JSON.stringify(error)}` + ); + } +};
A backend/src/api/event/content-types/event/schema.json

@@ -0,0 +1,65 @@

+{ + "kind": "collectionType", + "collectionName": "events", + "info": { + "name": "event", + "description": "", + "singularName": "event", + "pluralName": "events", + "displayName": "Event" + }, + "options": { + "increments": true, + "timestamps": true, + "draftAndPublish": false + }, + "attributes": { + "name": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "required": true + }, + "date": { + "type": "date" + }, + "address": { + "type": "text" + }, + "position": { + "type": "json" + }, + "uuid": { + "type": "string", + "unique": true + }, + "description": { + "type": "text", + "maxLength": 250 + }, + "newsletter": { + "type": "boolean", + "private": true + }, + "users": { + "type": "relation", + "relation": "manyToMany", + "target": "plugin::users-permissions.user", + "mappedBy": "events" + }, + "travels": { + "type": "relation", + "relation": "oneToMany", + "target": "api::travel.travel", + "mappedBy": "event" + }, + "waitingPassengers": { + "type": "relation", + "relation": "oneToMany", + "target": "api::passenger.passenger", + "mappedBy": "event" + } + } +}
A backend/src/api/event/controllers/event.ts

@@ -0,0 +1,29 @@

+// @ts-nocheck +import { factories } from "@strapi/strapi"; + +export default factories.createCoreController( + "api::event.event", + ({ strapi }) => ({ + async findOne(ctx) { + const uuid = ctx.params.id; + if (!uuid) throw new Error("No uuid provided"); + const event = await strapi.db + .query("api::event.event") + .findOne({ where: { uuid } }); + if (event) return this.sanitizeOutput(event, ctx); + else return ctx.badRequest("No event found"); + }, + + async create(ctx) { + let eventData = ctx.request.body; + const user = ctx.state.user; + + if (user) eventData = { ...eventData, users: [user.id] }; + + const event = await strapi.entityService.create("api::event.event", { + data: eventData, + }); + return this.sanitizeOutput(event, ctx); + }, + }) +);
A backend/src/api/event/routes/event.ts

@@ -0,0 +1,6 @@

+import { factories } from "@strapi/strapi"; + +export default factories.createCoreRouter("api::event.event", { + only: ["findOne", "create"], + config: {}, +});
A backend/src/api/event/services/event.ts

@@ -0,0 +1,67 @@

+// @ts-nocheck +import { DateTime } from "luxon"; +import { factories } from "@strapi/strapi"; + +const TEMPLATE_NAME_RECAP = "event_recap"; +const { STRAPI_URL = "" } = process.env; + +export default factories.createCoreService( + "api::event.event", + ({ strapi }) => ({ + sendDailyRecap: async (event) => { + const referenceDate = DateTime.now().minus({ day: 1 }); + const hasBeenModified = + referenceDate <= DateTime.fromISO(event.updatedAt); + if (hasBeenModified) { + strapi.log.debug( + `Send daily recap to ${event.email} for event #${event.id}` + ); + const newTravels = event.travels?.filter( + (travel) => referenceDate <= DateTime.fromISO(travel.createdAt) + ); + try { + const template = await strapi + .plugin("email-designer") + .services.template.findOne({ + name: TEMPLATE_NAME_RECAP, + }); + + if (!template) { + strapi.log.error( + `No email template with name ${TEMPLATE_NAME_RECAP}` + ); + return null; + } + + await strapi + .service("plugin::email-designer.email") + .sendTemplatedEmail( + { + to: event.email, + }, + { + templateReferenceId: template.templateReferenceId, + }, + { + event, + eventLink: `${STRAPI_URL}/e/${event.uuid}`, + waitingPassengersCount: event.waitingPassengers?.length || 0, + travelsCount: event.travels?.length || 0, + newTravelsCount: newTravels?.length || 0, + } + ); + strapi.log.info( + `Email with template '${TEMPLATE_NAME_RECAP}' sent to ${event.email}` + ); + } catch (error) { + console.error(error); + strapi.log.error( + `Impossible to send recap notification to ${ + event.email + } for event #${event.id}. Error: ${JSON.stringify(error)}` + ); + } + } + }, + }) +);
A backend/src/api/page/controllers/page.ts

@@ -0,0 +1,3 @@

+import { factories } from "@strapi/strapi"; + +export default factories.createCoreController("api::page.page");
A backend/src/api/page/routes/page.ts

@@ -0,0 +1,3 @@

+import { factories } from "@strapi/strapi"; + +export default factories.createCoreRouter("api::page.page");
A backend/src/api/passenger/content-types/passenger/schema.json

@@ -0,0 +1,47 @@

+{ + "kind": "collectionType", + "collectionName": "passengers", + "info": { + "name": "Passenger", + "description": "", + "singularName": "passenger", + "pluralName": "passengers", + "displayName": "Passenger" + }, + "options": { + "increments": true, + "timestamps": true, + "draftAndPublish": false + }, + "attributes": { + "name": { + "type": "string", + "required": true + }, + "email": { + "type": "email", + "required": false + }, + "location": { + "type": "string" + }, + "event": { + "type": "relation", + "relation": "manyToOne", + "target": "api::event.event", + "inversedBy": "waitingPassengers" + }, + "user": { + "type": "relation", + "relation": "manyToOne", + "target": "plugin::users-permissions.user", + "inversedBy": "passengers" + }, + "travel": { + "type": "relation", + "relation": "manyToOne", + "target": "api::travel.travel", + "inversedBy": "passengers" + } + } +}
A backend/src/api/passenger/controllers/passenger.ts

@@ -0,0 +1,3 @@

+import { factories } from "@strapi/strapi"; + +export default factories.createCoreController("api::passenger.passenger");
A backend/src/api/passenger/routes/passenger.ts

@@ -0,0 +1,3 @@

+export default { + routes: [], +};
A backend/src/api/setting/controllers/setting.ts

@@ -0,0 +1,3 @@

+import { factories } from "@strapi/strapi"; + +export default factories.createCoreController("api::setting.setting");
A backend/src/api/setting/routes/setting.ts

@@ -0,0 +1,3 @@

+export default { + routes: [], +};
A backend/src/api/setting/services/setting.ts

@@ -0,0 +1,7 @@

+/** + * setting service. + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreService('api::setting.setting');
A backend/src/api/travel/content-types/travel/lifecycles.ts

@@ -0,0 +1,109 @@

+import _uniq from "lodash/uniq"; + +const { STRAPI_URL = "" } = process.env; + +export default { + async afterCreate({ result }) { + if (result?.event) sendEmailsToWaitingPassengers(result); + }, + + async beforeUpdate(event) { + const { params } = event; + const travel = await strapi.db.query("api::travel.travel").findOne(params); + + // On passengers update, check if travel has enough seats + if (params.data.passengers) + if (travel?.seats < params.data.passengers.length) + throw new Error("no_enough_seats"); + }, + + async afterUpdate({ result }) { + const { passengers = [], seats, event } = result; + + // If count of seats is updated, move passengers excedent to event's waiting list + const overflowPassengers = passengers.slice(seats); + if (overflowPassengers.length > 0) { + await Promise.all( + overflowPassengers.map(movePassengerToWaitingList(event.id)) + ); + strapi.log.info( + `${overflowPassengers.length} passengers moved to event ${event.id} waiting list` + ); + } + }, + + async beforeDelete({ params }) { + const travel = await strapi.db + .query("api::travel.travel") + .findOne({ ...params, populate: { event: true, passengers: true } }); + + // Move travel's passengers to event's waiting list + if (travel?.passengers?.length > 0) { + const { passengers = [] } = travel; + await Promise.all( + passengers.map(movePassengerToWaitingList(travel.event.id)) + ); + strapi.log.info( + `${passengers.length} passengers moved to event ${travel.event.id} waiting list` + ); + } + }, +}; + +const sendEmailsToWaitingPassengers = async (travel) => { + const event = await strapi.db.query("api::event.event").findOne({ + where: { id: travel.event?.id }, + populate: ["waitingPassengers"], + }); + const eventWaitingPassengers = event?.waitingPassengers || []; + const userEmails = eventWaitingPassengers + .map((user) => user.email) + .filter(Boolean); + + const templateName = "waitinglist_notif"; + const template = await strapi + .plugin("email-designer") + .services.template.findOne({ + name: templateName, + }); + + if (!template) { + strapi.log.error(`No email template with name ${templateName}`); + return null; + } + + if (userEmails?.length > 0) + try { + await strapi.plugin("email-designer").services.email.sendTemplatedEmail( + { + to: _uniq(userEmails), + }, + { + templateReferenceId: template.templateReferenceId, + }, + { + event, + travel, + eventLink: `${STRAPI_URL}/e/${event.uuid}`, + } + ); + strapi.log.info( + `Email with template '${templateName}' sent to ${userEmails.length} addresses` + ); + } catch (error) { + console.error(error); + strapi.log.error( + `Impossible to send email waiting list notification for event #${ + event.id + }. Error: ${JSON.stringify(error)}` + ); + } +}; + +const movePassengerToWaitingList = (eventId: string) => async (passenger) => + strapi.entityService.update("api::passenger.passenger", passenger.id, { + data: { + travel: null, + event: eventId, + }, + });
A backend/src/api/travel/controllers/travel.ts

@@ -0,0 +1,3 @@

+import { factories } from "@strapi/strapi"; + +export default factories.createCoreController("api::travel.travel");
A backend/src/api/travel/routes/travel.ts

@@ -0,0 +1,3 @@

+export default { + routes: [], +};
A backend/src/api/vehicle/controllers/vehicle.ts

@@ -0,0 +1,3 @@

+import { factories } from "@strapi/strapi"; + +export default factories.createCoreController("api::vehicle.vehicle");
A backend/src/api/vehicle/routes/vehicles.ts

@@ -0,0 +1,3 @@

+export default { + routes: [], +};
A backend/src/api/vehicle/services/vehicle.ts

@@ -0,0 +1,3 @@

+import { factories } from "@strapi/strapi"; + +export default factories.createCoreService("api::vehicle.vehicle");
A backend/src/bootstrap/index.ts

@@ -0,0 +1,4 @@

+import setPermissions from "./set-permissions"; +import userSubscribe from "./user-subscribe"; + +export default [setPermissions, userSubscribe];
A backend/src/bootstrap/set-permissions.ts

@@ -0,0 +1,28 @@

+export default async ({ strapi }) => { + const { permissions = [] } = strapi.config; + const roles = await strapi.query("plugin::users-permissions.role").findMany(); + + for (const role of roles) { + const rolePermissions = permissions.roles[role.type]; + + if (!rolePermissions) continue; + + await Promise.all( + rolePermissions.map(async (action) => { + const existingPerm = await strapi + .query("plugin::users-permissions.permission") + .findOne({ where: { action, role: role.id } }); + + if (!existingPerm) { + strapi.log.debug(`Create permission ${action} for role ${role.type}`); + strapi.query("plugin::users-permissions.permission").create({ + data: { + action, + role: role.id, + }, + }); + } + }) + ); + } +};
A backend/src/bootstrap/user-subscribe.ts

@@ -0,0 +1,16 @@

+import sendgrid from "../lib/sendgrid"; + +export default async ({ strapi }) => { + strapi.db.lifecycles.subscribe({ + models: ["plugin::users-permissions.user"], + + async afterCreate({ result }) { + if (result.email) { + await sendgrid.subscribe(result.email); + strapi.log.info( + `New user with email address ${result.email} subscribed to mailing list` + ); + } + }, + }); +};
A backend/src/graphql/auth/index.ts

@@ -0,0 +1,14 @@

+const registerExtension = ({ nexus, strapi }) => ({ + types: [ + nexus.extendInputType({ + type: "UsersPermissionsRegisterInput", + definition(t) { + t.string("firstName"); + t.string("lastName"); + t.string("lang"); + }, + }), + ], +}); + +export default [registerExtension];
A backend/src/graphql/event/index.ts

@@ -0,0 +1,105 @@

+const updateEventExtension = ({ nexus, strapi }) => ({ + types: [ + nexus.extendType({ + type: "Query", + definition(t) { + t.field("eventByUUID", { + type: "EventEntityResponse", + args: { + uuid: nexus.nonNull("String"), + }, + }); + }, + }), + nexus.extendType({ + type: "Mutation", + definition(t) { + t.field("updateEventByUUID", { + type: "EventEntityResponse", + args: { + uuid: nexus.nonNull("String"), + data: nexus.nonNull("EventInput"), + }, + }); + }, + }), + ], + resolvers: { + Query: { + eventByUUID: { + description: "Retrieve an event using its UUID", + async resolve(_root, args) { + const { uuid } = args; + const event = await strapi.db + .query("api::event.event") + .findOne({ where: { uuid } }); + if (!event) throw new Error("No matching event"); + const { toEntityResponse } = strapi + .plugin("graphql") + .service("format").returnTypes; + return toEntityResponse(event, { + args, + resourceUID: "api::event.event", + }); + }, + }, + }, + Mutation: { + updateEventByUUID: { + description: "Update an event using its UUID", + async resolve(_root, args) { + const { uuid, data: eventUpdate } = args; + + const updatedEvent = await strapi.db + .query("api::event.event") + .update({ where: { uuid }, data: eventUpdate }); + if (!updatedEvent) throw new Error("No matching event"); + + const { toEntityResponse } = strapi + .plugin("graphql") + .service("format").returnTypes; + return toEntityResponse(updatedEvent, { + args, + resourceUID: "api::event.event", + }); + }, + }, + createEvent: { + async resolve(_root, args, context) { + const { + koaContext, + state: { user }, + } = context; + + let eventData = args.data; + if (user) eventData = { ...eventData, users: [user.id] }; + + koaContext.request.body = eventData; + + const createdEvent = await strapi + .controller("api::event.event") + .create(koaContext); + + return { + value: createdEvent, + info: { args, resourceUID: "api::event.event" }, + }; + }, + }, + }, + }, + resolversConfig: { + "Query.eventByUUID": { + auth: { + scope: ["api::event.event.findOne"], + }, + }, + "Mutation.updateEventByUUID": { + auth: { + scope: ["api::event.event.update"], + }, + }, + }, +}); + +export default [updateEventExtension];
A backend/src/graphql/index.ts

@@ -0,0 +1,27 @@

+import authExtensions from "./auth"; +import eventExtensions from "./event"; +import userExtensions from "./user"; +import travelExtensions from "./travel"; +import vehicleExtensions from "./vehicle"; + +export default ({ strapi }) => { + const extService = strapi.plugin("graphql").service("extension"); + authExtensions.forEach(extService.use); + eventExtensions.forEach(extService.use); + userExtensions.forEach(extService.use); + travelExtensions.forEach(extService.use); + vehicleExtensions.forEach(extService.use); + + // Disable shadow CRUD + /// Fields + extService.shadowCRUD("api::event.event").field("users").disableOutput(); + + /// Methods + extService.shadowCRUD("api::event.event").disableActions(["find"]); + extService.shadowCRUD("api::travel.travel").disableActions(["find"]); + extService.shadowCRUD("api::passenger.passenger").disableActions(["find"]); + extService.shadowCRUD("api::vehicle.vehicle").disableActions(["find"]); + extService + .shadowCRUD("plugin::users-permissions.user") + .disableActions(["find"]); +};
A backend/src/graphql/travel/index.ts

@@ -0,0 +1,54 @@

+export default [ + ({ nexus, strapi }) => ({ + types: [ + nexus.extendType({ + type: "Mutation", + definition(t) { + t.field("createTravel", { + type: "TravelEntityResponse", + args: { + data: nexus.nonNull("TravelInput"), + createVehicle: "Boolean", + }, + }); + }, + }), + ], + resolvers: { + Mutation: { + createTravel: { + async resolve(_root, args, context) { + const { + state: { user }, + } = context; + + const createdTravel = await strapi.entityService.create( + "api::travel.travel", + { + data: args.data, + } + ); + + if (user && args.createVehicle) { + const vehicleData = { + name: args.data.vehicleName, + seats: args.data.seats || 0, + phone_number: args.data.phone_number, + user: user.id, + }; + await strapi.entityService.create("api::vehicle.vehicle", { + data: vehicleData, + }); + strapi.log.info(`New vehicle created for user ${user.id}`); + } + + return { + value: createdTravel, + info: { args, resourceUID: "api::travel.travel" }, + }; + }, + }, + }, + }, + }), +];
A backend/src/graphql/user/index.ts

@@ -0,0 +1,91 @@

+export default [ + ({ nexus, strapi }) => ({ + types: [ + nexus.extendType({ + type: "UsersPermissionsMe", + definition(t) { + t.field("profile", { + type: "UsersPermissionsUser", + }); + }, + }), + nexus.extendInputType({ + type: "UsersPermissionsUserInput", + definition(t) { + t.string("oldPassword"); + }, + }), + nexus.extendType({ + type: "Mutation", + definition(t) { + t.field("updateMe", { + type: nexus.nonNull("UsersPermissionsUserEntityResponse"), + args: { + data: nexus.nonNull("UsersPermissionsUserInput"), + }, + }); + }, + }), + ], + resolvers: { + Query: { + me: { + async resolve(_root, _args, context) { + const user = context.state?.user; + if (!user) throw new Error("Authentication requested"); + return { id: user.id, username: user.username, profile: user }; + }, + }, + }, + Mutation: { + updateMe: { + async resolve(_root, args, context) { + const { data: userUpdate } = args; + const userId = context.state?.user?.id; + + if (!userId) throw new Error("Authentication requested"); + + const user = await strapi + .plugin("users-permissions") + .services.user.fetch(userId, { populate: { events: true } }); + + if (userUpdate.password) { + const validPassword = await strapi + .plugin("users-permissions") + .services.user.validatePassword( + userUpdate.oldPassword || "", + user.password + ); + if (!validPassword) throw new Error("Wrong password"); + delete userUpdate.oldPassword; + } + + const currentEvents = user.events || []; + const updatedEvents = userUpdate.events + ? [...currentEvents, ...userUpdate.events] + : user.events; + + const updatedUser = await strapi.entityService.update( + "plugin::users-permissions.user", + user.id, + { + data: { + ...userUpdate, + events: updatedEvents, + }, + } + ); + const { toEntityResponse } = strapi + .plugin("graphql") + .service("format").returnTypes; + + return toEntityResponse(updatedUser, { + args, + resourceUID: "plugin::users-permissions.user", + }); + }, + }, + }, + }, + }), +];
A backend/src/graphql/vehicle/index.ts

@@ -0,0 +1,32 @@

+export default [ + ({ nexus, strapi }) => ({ + resolvers: { + Mutation: { + deleteVehicle: { + async resolve(_root, args, context) { + const { user } = context.state; + const vehicle = await strapi.entityService.findOne( + "api::vehicle.vehicle", + args.id, + { populate: ["user"] } + ); + + if (!vehicle) throw new Error("Vehicle not found"); + else if (vehicle.user?.id !== user.id) + throw new Error("Not Authorized"); + + const deleteVehicle = await strapi.entityService.delete( + "api::vehicle.vehicle", + args.id + ); + + return { + value: deleteVehicle, + info: { args, resourceUID: "api::vehicle.vehicle" }, + }; + }, + }, + }, + }, + }), +];
A backend/src/index.ts

@@ -0,0 +1,30 @@

+import bootstrapActions from "./bootstrap"; +import graphqlExtends from "./graphql"; + +export default { + /** + * An asynchronous register function that runs before + * your application is initialized. + * + * This gives you an opportunity to extend code. + */ + register(context) { + graphqlExtends(context); + + // Disable /users find REST endpoint + context.strapi.controller("plugin::users-permissions.user").find = () => {}; + }, + + /** + * An asynchronous bootstrap function that runs before + * your application gets started. + * + * This gives you an opportunity to set up your data model, + * run jobs, or perform some special logic. + */ + async bootstrap(context) { + for (let action of bootstrapActions) { + await action(context); + } + }, +};
A backend/src/lib/sendgrid.ts

@@ -0,0 +1,34 @@

+import sendgrid from "@sendgrid/client"; + +const { SENDGRID_API_KEY, SENDGRID_CONTACTLISTID } = process.env; + +sendgrid.setApiKey(SENDGRID_API_KEY); + +export default { + // https://sendgrid.api-docs.io/v3.0/contacts/add-or-update-a-contact + subscribe: async (email) => { + if (!SENDGRID_CONTACTLISTID) { + strapi.log.error( + "No Sendgrid contact list ID provided (SENDGRID_DEFAULT_CONTACTLISTID)" + ); + return null; + } + + try { + strapi.log.info(`Save ${email} to Sendgrid contact list.`); + + await sendgrid.request({ + method: "PUT", + url: "/v3/marketing/contacts", + body: { list_ids: [SENDGRID_CONTACTLISTID], contacts: [{ email }] }, + }); + } catch (error) { + console.error(error.response.body.errors); + strapi.log.error( + `Impossible to save email ${email} tp Sengrid contact list. Error: ${JSON.stringify( + error + )}` + ); + } + }, +};
A backend/src/middlewares/graphql-logger.ts

@@ -0,0 +1,72 @@

+import chalk from "chalk"; + +export default (_, { strapi }) => { + return async (ctx, next) => { + const start = Date.now(); + await next(); + const delta = Math.ceil(Date.now() - start); + + if (ctx.url === "/graphql") { + const user = ctx.state?.user?.username; + const { operationName = "", variables, query } = ctx.request.body || {}; + const status = graphqlStatus(ctx.body); + + strapi.log.http( + `${chalk.magenta( + "GRAPHQL" + )} ${operationName} (${delta} ms) ${graphqlCodeColor(status)}`, + { + meta: { + operationName, + variables, + query, + status, + delta, + user, + }, + } + ); + } else { + strapi.log.http( + `${ctx.method} ${ctx.url} (${delta} ms) ${httpCodeColor(ctx.status)}` + ); + } + }; +}; + +const graphqlStatus = (response) => { + if (!response) return "NOT FOUND"; + + try { + const { errors = null } = response ? JSON.parse(response) : {}; + if (errors) return "ERROR"; + } catch (error) { + console.error(error); + return "ERROR"; + } + + return "OK"; +}; + +const graphqlCodeColor = (status) => { + switch (status) { + case "ERROR": + return chalk.red(status); + case "NOT_FOUND": + return chalk.yellow(status); + default: + return chalk.green(status); + } +}; + +const httpCodeColor = (code) => { + return code >= 500 + ? chalk.red(code) + : code >= 400 + ? chalk.yellow(code) + : code >= 300 + ? chalk.cyan(code) + : code >= 200 + ? chalk.green(code) + : code; +};
M backend/tests/app.test.jsbackend/tests/app.test.js

@@ -1,3 +1,13 @@

+const { setupStrapi, cleanupStrapi } = require("./helpers/strapi"); + +beforeAll(async () => { + await setupStrapi(); +}); + +afterAll(async () => { + await cleanupStrapi(); +}); + it("strapi is defined", () => { expect(strapi).toBeDefined(); });
D backend/tests/helpers/auth.js

@@ -1,32 +0,0 @@

-let adminJwt = null; - -const getAdminJwt = async () => { - if (adminJwt) return adminJwt; - - const adminUser = await getAdminUser(); - return strapi.admin.services.token.createJwtToken(adminUser); -}; - -const getAdminUser = async () => { - const existingAdminUser = await strapi.admin.services.user.findOne({ - username: 'test', - }); - - if (existingAdminUser) return existingAdminUser; - - try { - const user = await strapi.admin.services.user.create({ - registrationToken: null, - isActive: true, - username: 'test', - password: 'test', - email: 'test@test.com', - roles: [1], - }); - return user; - } catch (error) { - console.error(error); - } -}; - -module.exports = {getAdminJwt, getAdminUser};
D backend/tests/helpers/context.js

@@ -1,31 +0,0 @@

-const getContext = (context = {}) => ({ - state: { - user: { - id: 1, - }, - }, - request: {}, - params: {}, - query: {}, - send: jest.fn(), - badRequest: jest.fn(), - - ...context, - - setBody(body) { - this.request.body = body; - }, - setParams(params) { - this.params = params; - }, - setQuery(query) { - this.query = query; - }, - setUserId(userId) { - this.state.user = { - id: userId, - }; - }, -}); - -module.exports = getContext;
D backend/tests/helpers/database.js

@@ -1,17 +0,0 @@

-const knexConfig = require('../../knexfile'); -const knexInstance = require('knex')(knexConfig.test); -const {setupStrapi, destroyStrapi} = require('./strapi'); - -const setupDatabase = async () => { - await setupStrapi(); - await destroyStrapi(); - - console.log('\nSEEDING DATABASE...'); - await knexInstance.seed.run(); -}; - -const destroyDatabase = () => { - console.log('DESTROY DATABASE'); -}; - -module.exports = {setupDatabase, destroyDatabase};
M backend/tests/helpers/strapi.jsbackend/tests/helpers/strapi.js

@@ -1,22 +1,33 @@

-const Strapi = require('strapi'); -const http = require('http'); +const Strapi = require("@strapi/strapi"); +const fs = require("fs"); let instance; -const setupStrapi = async () => { +async function setupStrapi() { if (!instance) { await Strapi().load(); - instance = strapi; // strapi is global now - await instance.app - .use(instance.router.routes()) // populate KOA routes - .use(instance.router.allowedMethods()); // populate KOA methods - instance.server = http.createServer(instance.app.callback()); + instance = strapi; + + await instance.server.mount(); } return instance; -}; +} + +async function cleanupStrapi() { + const dbSettings = strapi.config.get("database.connections.default.settings"); + + //close server to release the db-file + await strapi.server.httpServer.close(); -const destroyStrapi = async () => { - strapi.destroy(); -}; + //delete test database after all tests have completed + if (dbSettings && dbSettings.filename) { + const tmpDbFile = `${__dirname}/../${dbSettings.filename}`; + if (fs.existsSync(tmpDbFile)) { + fs.unlinkSync(tmpDbFile); + } + } + // close the connection to the database + await strapi.db.connection.destroy(); +} -module.exports = {setupStrapi, destroyStrapi}; +module.exports = { setupStrapi, cleanupStrapi };
D backend/tests/seeds/event.js

@@ -1,33 +0,0 @@

-const faker = require('faker'); - -const TABLE_NAME = 'events'; -const ITEM_COUNTS = 10; - -exports.seed = async knex => { - // Deletes ALL existing entries - await knex(TABLE_NAME).del(); - - await knex(TABLE_NAME).insert(knownEvent); - - // Generate items - let items = []; - for (let i = 0; i < ITEM_COUNTS; i++) items.push(generateItem()); - - // Insert items - await knex(TABLE_NAME).insert(items); -}; - -const knownEvent = { - name: 'Test event', - email: 'test@example.org', - date: '2022-01-12', - address: 'Uni-mail, Geneva, CH', - uuid: '00000000-0000-0000-0000-000000000000', -}; - -const generateItem = () => ({ - name: faker.lorem.words(3), - email: faker.internet.email(), - date: faker.date.future(), - address: faker.address.streetAddress(), -});
D backend/tests/setup/destroyDatabase.js

@@ -1,5 +0,0 @@

-const {destroyDatabase} = require('../helpers/database'); - -module.exports = () => { - destroyDatabase(); -};
D backend/tests/setup/setupDatabase.js

@@ -1,3 +0,0 @@

-const {setupDatabase} = require('../helpers/database'); - -module.exports = setupDatabase;
D backend/tests/setup/setupStrapi.js

@@ -1,9 +0,0 @@

-const {setupStrapi} = require('../helpers/strapi'); -const getContext = require('../helpers/context'); - -jest.setTimeout(20000); - -beforeAll(async () => { - await setupStrapi(); - global.getContext = getContext; -});
A backend/tsconfig.json

@@ -0,0 +1,21 @@

+{ + "extends": "@strapi/typescript-utils/tsconfigs/server", + "compilerOptions": { + "outDir": "dist", + "rootDir": "." + }, + "include": [ + "./", + "src/**/*.json" + ], + "exclude": [ + "node_modules/", + "build/", + "dist/", + ".cache/", + ".tmp/", + "src/admin/", + "**/*.test.ts", + "src/plugins/**" + ] +}
M backend/yarn.lockbackend/yarn.lock

@@ -10,20 +10,10 @@ dependencies:

"@jridgewell/gen-mapping" "^0.1.0" "@jridgewell/trace-mapping" "^0.3.9" -"@apollo/federation@^0.20.7": - version "0.20.7" - resolved "https://registry.yarnpkg.com/@apollo/federation/-/federation-0.20.7.tgz#0d26dcc3bbc92c168dc40d4f407f56d26338ef7a" - integrity sha512-URIayksqBaJ+xlcJmyGCf+OqHP60lX2CYGv9fDWQ1KM48sEN1ABHGXkEa0vwgWMH0XUVo94lYDVY11BAJUsuCw== - dependencies: - apollo-graphql "^0.6.0" - apollo-server-env "^2.4.5" - core-js "^3.4.0" - lodash.xorby "^4.7.0" - -"@apollo/protobufjs@1.2.2": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@apollo/protobufjs/-/protobufjs-1.2.2.tgz#4bd92cd7701ccaef6d517cdb75af2755f049f87c" - integrity sha512-vF+zxhPiLtkwxONs6YanSt1EpwpGilThpneExUN5K3tCymuxNnVq2yojTvnpRjv2QfsEIt/n7ozPIIzBLwGIDQ== +"@apollo/protobufjs@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@apollo/protobufjs/-/protobufjs-1.2.4.tgz#d913e7627210ec5efd758ceeb751c776c68ba133" + integrity sha512-npVJ9NVU/pynj+SCU+fambvTneJDyCnif738DnZ7pCxdDtzeEz7WkpSIq5wNUmWm5Td55N+S2xfqZ+WP4hDLng== dependencies: "@protobufjs/aspromise" "^1.1.2" "@protobufjs/base64" "^1.1.2"

@@ -39,38 +29,70 @@ "@types/long" "^4.0.0"

"@types/node" "^10.1.0" long "^4.0.0" -"@apollographql/apollo-tools@^0.5.0": +"@apollo/utils.dropunuseddefinitions@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@apollo/utils.dropunuseddefinitions/-/utils.dropunuseddefinitions-1.1.0.tgz#02b04006442eaf037f4c4624146b12775d70d929" + integrity sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg== + +"@apollo/utils.keyvaluecache@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@apollo/utils.keyvaluecache/-/utils.keyvaluecache-1.0.1.tgz#46f310f859067efe9fa126156c6954f8381080d2" + integrity sha512-nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA== + dependencies: + "@apollo/utils.logger" "^1.0.0" + lru-cache "^7.10.1" + +"@apollo/utils.logger@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@apollo/utils.logger/-/utils.logger-1.0.0.tgz#6e3460a2250c2ef7c2c3b0be6b5e148a1596f12b" + integrity sha512-dx9XrjyisD2pOa+KsB5RcDbWIAdgC91gJfeyLCgy0ctJMjQe7yZK5kdWaWlaOoCeX0z6YI9iYlg7vMPyMpQF3Q== + +"@apollo/utils.printwithreducedwhitespace@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@apollo/utils.printwithreducedwhitespace/-/utils.printwithreducedwhitespace-1.1.0.tgz#c466299a4766eef8577a2a64c8f27712e8bd7e30" + integrity sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q== + +"@apollo/utils.removealiases@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@apollo/utils.removealiases/-/utils.removealiases-1.0.0.tgz#75f6d83098af1fcae2d3beb4f515ad4a8452a8c1" + integrity sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A== + +"@apollo/utils.sortast@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@apollo/utils.sortast/-/utils.sortast-1.1.0.tgz#93218c7008daf3e2a0725196085a33f5aab5ad07" + integrity sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA== + dependencies: + lodash.sortby "^4.7.0" + +"@apollo/utils.stripsensitiveliterals@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@apollo/utils.stripsensitiveliterals/-/utils.stripsensitiveliterals-1.2.0.tgz#4920651f36beee8e260e12031a0c5863ad0c7b28" + integrity sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w== + +"@apollo/utils.usagereporting@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@apollo/utils.usagereporting/-/utils.usagereporting-1.0.0.tgz#b81df180f4ca78b91a22cb49105174a7f070db1e" + integrity sha512-5PL7hJMkTPmdo3oxPtigRrIyPxDk/ddrUryHPDaezL1lSFExpNzsDd2f1j0XJoHOg350GRd3LyD64caLA2PU1w== + dependencies: + "@apollo/utils.dropunuseddefinitions" "^1.1.0" + "@apollo/utils.printwithreducedwhitespace" "^1.1.0" + "@apollo/utils.removealiases" "1.0.0" + "@apollo/utils.sortast" "^1.1.0" + "@apollo/utils.stripsensitiveliterals" "^1.2.0" + apollo-reporting-protobuf "^3.3.1" + +"@apollographql/apollo-tools@^0.5.1", "@apollographql/apollo-tools@^0.5.3": version "0.5.4" resolved "https://registry.yarnpkg.com/@apollographql/apollo-tools/-/apollo-tools-0.5.4.tgz#cb3998c6cf12e494b90c733f44dd9935e2d8196c" integrity sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw== -"@apollographql/graphql-playground-html@1.6.27": - version "1.6.27" - resolved "https://registry.yarnpkg.com/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.27.tgz#bc9ab60e9445aa2a8813b4e94f152fa72b756335" - integrity sha512-tea2LweZvn6y6xFV11K0KC8ETjmm52mQrW+ezgB2O/aTQf8JGyFmMcRPFgUaQZeHbWdm8iisDC6EjOKsXu0nfw== +"@apollographql/graphql-playground-html@1.6.29": + version "1.6.29" + resolved "https://registry.yarnpkg.com/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.29.tgz#a7a646614a255f62e10dcf64a7f68ead41dec453" + integrity sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA== dependencies: xss "^1.0.8" -"@apollographql/graphql-upload-8-fork@^8.1.3": - version "8.1.3" - resolved "https://registry.yarnpkg.com/@apollographql/graphql-upload-8-fork/-/graphql-upload-8-fork-8.1.3.tgz#a0d4e0d5cec8e126d78bd915c264d6b90f5784bc" - integrity sha512-ssOPUT7euLqDXcdVv3Qs4LoL4BPtfermW1IOouaqEmj36TpHYDmYDIbKoSQxikd9vtMumFnP87OybH7sC9fJ6g== - dependencies: - "@types/express" "*" - "@types/fs-capacitor" "*" - "@types/koa" "*" - busboy "^0.3.1" - fs-capacitor "^2.0.4" - http-errors "^1.7.3" - object-path "^0.11.4" - -"@ardatan/aggregate-error@0.0.6": - version "0.0.6" - resolved "https://registry.yarnpkg.com/@ardatan/aggregate-error/-/aggregate-error-0.0.6.tgz#fe6924771ea40fc98dc7a7045c2e872dc8527609" - integrity sha512-vyrkEHG1jrukmzTPtyWB4NLPauUw5bQeg4uhn8f+1SSynmrOcyvlb1GKQjjgoBzElLdfXCRYX8UnBlhklOHYRQ== - dependencies: - tslib "~2.0.1" - "@babel/code-frame@7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"

@@ -78,402 +100,407 @@ integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==

dependencies: "@babel/highlight" "^7.10.4" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" - integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" + integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== dependencies: - "@babel/highlight" "^7.16.7" + "@babel/highlight" "^7.18.6" -"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.17.10": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.5.tgz#acac0c839e317038c73137fbb6ef71a1d6238471" - integrity sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg== +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.18.8": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.8.tgz#2483f565faca607b8535590e84e7de323f27764d" + integrity sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ== -"@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.14.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.5.tgz#c597fa680e58d571c28dda9827669c78cdd7f000" - integrity sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ== +"@babel/core@7.18.10", "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.2", "@babel/core@^7.8.0": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.10.tgz#39ad504991d77f1f3da91be0b8b949a5bc466fb8" + integrity sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw== dependencies: "@ampproject/remapping" "^2.1.0" - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.18.2" - "@babel/helper-compilation-targets" "^7.18.2" - "@babel/helper-module-transforms" "^7.18.0" - "@babel/helpers" "^7.18.2" - "@babel/parser" "^7.18.5" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.18.5" - "@babel/types" "^7.18.4" + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.18.10" + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-module-transforms" "^7.18.9" + "@babel/helpers" "^7.18.9" + "@babel/parser" "^7.18.10" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.18.10" + "@babel/types" "^7.18.10" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.1" semver "^6.3.0" -"@babel/generator@^7.18.2", "@babel/generator@^7.7.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.2.tgz#33873d6f89b21efe2da63fe554460f3df1c5880d" - integrity sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw== +"@babel/generator@^7.18.10", "@babel/generator@^7.7.2": + version "7.18.12" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.12.tgz#fa58daa303757bd6f5e4bbca91b342040463d9f4" + integrity sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg== dependencies: - "@babel/types" "^7.18.2" - "@jridgewell/gen-mapping" "^0.3.0" + "@babel/types" "^7.18.10" + "@jridgewell/gen-mapping" "^0.3.2" jsesc "^2.5.1" -"@babel/helper-annotate-as-pure@^7.16.0", "@babel/helper-annotate-as-pure@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862" - integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw== +"@babel/helper-annotate-as-pure@^7.16.0", "@babel/helper-annotate-as-pure@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" + integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== dependencies: - "@babel/types" "^7.16.7" + "@babel/types" "^7.18.6" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz#38d138561ea207f0f69eb1626a418e4f7e6a580b" - integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA== +"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb" + integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw== dependencies: - "@babel/helper-explode-assignable-expression" "^7.16.7" - "@babel/types" "^7.16.7" + "@babel/helper-explode-assignable-expression" "^7.18.6" + "@babel/types" "^7.18.9" -"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7", "@babel/helper-compilation-targets@^7.17.10", "@babel/helper-compilation-targets@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz#67a85a10cbd5fc7f1457fec2e7f45441dc6c754b" - integrity sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ== +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz#69e64f57b524cde3e5ff6cc5a9f4a387ee5563bf" + integrity sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg== dependencies: - "@babel/compat-data" "^7.17.10" - "@babel/helper-validator-option" "^7.16.7" + "@babel/compat-data" "^7.18.8" + "@babel/helper-validator-option" "^7.18.6" browserslist "^4.20.2" semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.17.12", "@babel/helper-create-class-features-plugin@^7.18.0": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz#fac430912606331cb075ea8d82f9a4c145a4da19" - integrity sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg== +"@babel/helper-create-class-features-plugin@^7.18.6": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz#d802ee16a64a9e824fcbf0a2ffc92f19d58550ce" + integrity sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-environment-visitor" "^7.16.7" - "@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-split-export-declaration" "^7.16.7" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-member-expression-to-functions" "^7.18.9" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-replace-supers" "^7.18.9" + "@babel/helper-split-export-declaration" "^7.18.6" -"@babel/helper-create-regexp-features-plugin@^7.16.7", "@babel/helper-create-regexp-features-plugin@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.12.tgz#bb37ca467f9694bbe55b884ae7a5cc1e0084e4fd" - integrity sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw== +"@babel/helper-create-regexp-features-plugin@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz#3e35f4e04acbbf25f1b3534a657610a000543d3c" + integrity sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - regexpu-core "^5.0.1" + "@babel/helper-annotate-as-pure" "^7.18.6" + regexpu-core "^5.1.0" -"@babel/helper-define-polyfill-provider@^0.3.1": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz#52411b445bdb2e676869e5a74960d2d3826d2665" - integrity sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA== +"@babel/helper-define-polyfill-provider@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz#bd10d0aca18e8ce012755395b05a79f45eca5073" + integrity sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg== dependencies: - "@babel/helper-compilation-targets" "^7.13.0" - "@babel/helper-module-imports" "^7.12.13" - "@babel/helper-plugin-utils" "^7.13.0" - "@babel/traverse" "^7.13.0" + "@babel/helper-compilation-targets" "^7.17.7" + "@babel/helper-plugin-utils" "^7.16.7" debug "^4.1.1" lodash.debounce "^4.0.8" resolve "^1.14.2" semver "^6.1.2" -"@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz#8a6d2dedb53f6bf248e31b4baf38739ee4a637bd" - integrity sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ== +"@babel/helper-environment-visitor@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" + integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== -"@babel/helper-explode-assignable-expression@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a" - integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ== +"@babel/helper-explode-assignable-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096" + integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg== dependencies: - "@babel/types" "^7.16.7" + "@babel/types" "^7.18.6" -"@babel/helper-function-name@^7.16.7", "@babel/helper-function-name@^7.17.9": - version "7.17.9" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12" - integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg== +"@babel/helper-function-name@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz#940e6084a55dee867d33b4e487da2676365e86b0" + integrity sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A== dependencies: - "@babel/template" "^7.16.7" - "@babel/types" "^7.17.0" + "@babel/template" "^7.18.6" + "@babel/types" "^7.18.9" -"@babel/helper-hoist-variables@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" - integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== dependencies: - "@babel/types" "^7.16.7" + "@babel/types" "^7.18.6" -"@babel/helper-member-expression-to-functions@^7.17.7": - version "7.17.7" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz#a34013b57d8542a8c4ff8ba3f747c02452a4d8c4" - integrity sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw== +"@babel/helper-member-expression-to-functions@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815" + integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg== dependencies: - "@babel/types" "^7.17.0" + "@babel/types" "^7.18.9" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.0", "@babel/helper-module-imports@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" - integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.0", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" + integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== dependencies: - "@babel/types" "^7.16.7" + "@babel/types" "^7.18.6" -"@babel/helper-module-transforms@^7.18.0": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz#baf05dec7a5875fb9235bd34ca18bad4e21221cd" - integrity sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA== +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz#5a1079c005135ed627442df31a42887e80fcb712" + integrity sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g== dependencies: - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-simple-access" "^7.17.7" - "@babel/helper-split-export-declaration" "^7.16.7" - "@babel/helper-validator-identifier" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.18.0" - "@babel/types" "^7.18.0" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.18.6" + "@babel/template" "^7.18.6" + "@babel/traverse" "^7.18.9" + "@babel/types" "^7.18.9" -"@babel/helper-optimise-call-expression@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz#a34e3560605abbd31a18546bd2aad3e6d9a174f2" - integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w== +"@babel/helper-optimise-call-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" + integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== dependencies: - "@babel/types" "^7.16.7" + "@babel/types" "^7.18.6" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.17.12", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz#86c2347da5acbf5583ba0a10aed4c9bf9da9cf96" - integrity sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA== +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz#4b8aea3b069d8cb8a72cdfe28ddf5ceca695ef2f" + integrity sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w== -"@babel/helper-remap-async-to-generator@^7.16.8": - version "7.16.8" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz#29ffaade68a367e2ed09c90901986918d25e57e3" - integrity sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw== +"@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" + integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-wrap-function" "^7.16.8" - "@babel/types" "^7.16.8" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-wrap-function" "^7.18.9" + "@babel/types" "^7.18.9" -"@babel/helper-replace-supers@^7.16.7", "@babel/helper-replace-supers@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz#41fdfcc9abaf900e18ba6e5931816d9062a7b2e0" - integrity sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q== +"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz#1092e002feca980fbbb0bd4d51b74a65c6a500e6" + integrity sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ== dependencies: - "@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.18.2" - "@babel/types" "^7.18.2" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-member-expression-to-functions" "^7.18.9" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/traverse" "^7.18.9" + "@babel/types" "^7.18.9" -"@babel/helper-simple-access@^7.17.7", "@babel/helper-simple-access@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz#4dc473c2169ac3a1c9f4a51cfcd091d1c36fcff9" - integrity sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ== +"@babel/helper-simple-access@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea" + integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g== dependencies: - "@babel/types" "^7.18.2" + "@babel/types" "^7.18.6" -"@babel/helper-skip-transparent-expression-wrappers@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09" - integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw== +"@babel/helper-skip-transparent-expression-wrappers@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz#778d87b3a758d90b471e7b9918f34a9a02eb5818" + integrity sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw== dependencies: - "@babel/types" "^7.16.0" + "@babel/types" "^7.18.9" -"@babel/helper-split-export-declaration@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" - integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== dependencies: - "@babel/types" "^7.16.7" + "@babel/types" "^7.18.6" + +"@babel/helper-string-parser@^7.18.10": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56" + integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw== -"@babel/helper-validator-identifier@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" - integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== +"@babel/helper-validator-identifier@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076" + integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g== -"@babel/helper-validator-option@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" - integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== +"@babel/helper-validator-option@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" + integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== -"@babel/helper-wrap-function@^7.16.8": - version "7.16.8" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz#58afda087c4cd235de92f7ceedebca2c41274200" - integrity sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw== +"@babel/helper-wrap-function@^7.18.9": + version "7.18.11" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.18.11.tgz#bff23ace436e3f6aefb61f85ffae2291c80ed1fb" + integrity sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w== dependencies: - "@babel/helper-function-name" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.16.8" - "@babel/types" "^7.16.8" + "@babel/helper-function-name" "^7.18.9" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.18.11" + "@babel/types" "^7.18.10" -"@babel/helpers@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.2.tgz#970d74f0deadc3f5a938bfa250738eb4ac889384" - integrity sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg== +"@babel/helpers@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.9.tgz#4bef3b893f253a1eced04516824ede94dcfe7ff9" + integrity sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ== dependencies: - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.18.2" - "@babel/types" "^7.18.2" + "@babel/template" "^7.18.6" + "@babel/traverse" "^7.18.9" + "@babel/types" "^7.18.9" -"@babel/highlight@^7.10.4", "@babel/highlight@^7.16.7": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.12.tgz#257de56ee5afbd20451ac0a75686b6b404257351" - integrity sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg== +"@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== dependencies: - "@babel/helper-validator-identifier" "^7.16.7" + "@babel/helper-validator-identifier" "^7.18.6" chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.18.5", "@babel/parser@^7.7.0": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.5.tgz#337062363436a893a2d22faa60be5bb37091c83c" - integrity sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.18.11", "@babel/parser@^7.7.0": + version "7.18.11" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.11.tgz#68bb07ab3d380affa9a3f96728df07969645d2d9" + integrity sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12.tgz#1dca338caaefca368639c9ffb095afbd4d420b1e" - integrity sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" + integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12.tgz#0d498ec8f0374b1e2eb54b9cb2c4c78714c77753" - integrity sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50" + integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" - "@babel/plugin-proposal-optional-chaining" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + "@babel/plugin-proposal-optional-chaining" "^7.18.9" -"@babel/plugin-proposal-async-generator-functions@^7.13.15", "@babel/plugin-proposal-async-generator-functions@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.17.12.tgz#094a417e31ce7e692d84bab06c8e2a607cbeef03" - integrity sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ== +"@babel/plugin-proposal-async-generator-functions@^7.18.10": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz#85ea478c98b0095c3e4102bff3b67d306ed24952" + integrity sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-remap-async-to-generator" "^7.16.8" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-remap-async-to-generator" "^7.18.9" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.17.12.tgz#84f65c0cc247d46f40a6da99aadd6438315d80a4" - integrity sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw== +"@babel/plugin-proposal-class-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.17.12" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-proposal-class-static-block@^7.18.0": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.0.tgz#7d02253156e3c3793bdb9f2faac3a1c05f0ba710" - integrity sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA== +"@babel/plugin-proposal-class-static-block@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020" + integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.0" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-proposal-dynamic-import@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz#c19c897eaa46b27634a00fee9fb7d829158704b2" - integrity sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg== +"@babel/plugin-proposal-dynamic-import@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" + integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-proposal-export-namespace-from@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.17.12.tgz#b22864ccd662db9606edb2287ea5fd1709f05378" - integrity sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ== +"@babel/plugin-proposal-export-namespace-from@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" + integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" -"@babel/plugin-proposal-json-strings@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.17.12.tgz#f4642951792437233216d8c1af370bb0fbff4664" - integrity sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg== +"@babel/plugin-proposal-json-strings@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" + integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-proposal-logical-assignment-operators@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.17.12.tgz#c64a1bcb2b0a6d0ed2ff674fd120f90ee4b88a23" - integrity sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q== +"@babel/plugin-proposal-logical-assignment-operators@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23" + integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.17.12.tgz#1e93079bbc2cbc756f6db6a1925157c4a92b94be" - integrity sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag== +"@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-proposal-numeric-separator@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz#d6b69f4af63fb38b6ca2558442a7fb191236eba9" - integrity sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw== +"@babel/plugin-proposal-numeric-separator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@^7.18.0": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.0.tgz#79f2390c892ba2a68ec112eb0d895cfbd11155e8" - integrity sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw== +"@babel/plugin-proposal-object-rest-spread@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz#f9434f6beb2c8cae9dfcf97d2a5941bbbf9ad4e7" + integrity sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q== dependencies: - "@babel/compat-data" "^7.17.10" - "@babel/helper-compilation-targets" "^7.17.10" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/compat-data" "^7.18.8" + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.17.12" + "@babel/plugin-transform-parameters" "^7.18.8" -"@babel/plugin-proposal-optional-catch-binding@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz#c623a430674ffc4ab732fd0a0ae7722b67cb74cf" - integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA== +"@babel/plugin-proposal-optional-catch-binding@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" + integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.17.12.tgz#f96949e9bacace3a9066323a5cf90cfb9de67174" - integrity sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ== +"@babel/plugin-proposal-optional-chaining@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993" + integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-proposal-private-methods@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.17.12.tgz#c2ca3a80beb7539289938da005ad525a038a819c" - integrity sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A== +"@babel/plugin-proposal-private-methods@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== dependencies: - "@babel/helper-create-class-features-plugin" "^7.17.12" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-proposal-private-property-in-object@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.17.12.tgz#b02efb7f106d544667d91ae97405a9fd8c93952d" - integrity sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg== +"@babel/plugin-proposal-private-property-in-object@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503" + integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-create-class-features-plugin" "^7.17.12" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-proposal-unicode-property-regex@^7.17.12", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.17.12.tgz#3dbd7a67bd7f94c8238b394da112d86aaf32ad4d" - integrity sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A== +"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.17.12" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4"

@@ -503,7 +530,7 @@ integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==

dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": +"@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==

@@ -517,12 +544,12 @@ integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==

dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-import-assertions@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.17.12.tgz#58096a92b11b2e4e54b24c6a0cc0e5e607abcedd" - integrity sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw== +"@babel/plugin-syntax-import-assertions@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz#cd6190500a4fa2fe31990a963ffab4b63e4505e4" + integrity sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4"

@@ -538,12 +565,12 @@ integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==

dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.12.13", "@babel/plugin-syntax-jsx@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.17.12.tgz#834035b45061983a491f60096f61a2e7c5674a47" - integrity sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog== +"@babel/plugin-syntax-jsx@^7.17.12", "@babel/plugin-syntax-jsx@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" + integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4"

@@ -602,310 +629,310 @@ dependencies:

"@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-typescript@^7.7.2": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.12.tgz#b54fc3be6de734a56b87508f99d6428b5b605a7b" - integrity sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw== + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz#1c09cd25795c7c2b8a4ba9ae49394576d4133285" + integrity sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.17.12.tgz#dddd783b473b1b1537ef46423e3944ff24898c45" - integrity sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA== +"@babel/plugin-transform-arrow-functions@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe" + integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-async-to-generator@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.17.12.tgz#dbe5511e6b01eee1496c944e35cdfe3f58050832" - integrity sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ== +"@babel/plugin-transform-async-to-generator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615" + integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== dependencies: - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-remap-async-to-generator" "^7.16.8" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-remap-async-to-generator" "^7.18.6" -"@babel/plugin-transform-block-scoped-functions@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz#4d0d57d9632ef6062cdf354bb717102ee042a620" - integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg== +"@babel/plugin-transform-block-scoped-functions@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" + integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-block-scoping@^7.17.12": - version "7.18.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.4.tgz#7988627b3e9186a13e4d7735dc9c34a056613fb9" - integrity sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw== +"@babel/plugin-transform-block-scoping@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz#f9b7e018ac3f373c81452d6ada8bd5a18928926d" + integrity sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-classes@^7.17.12": - version "7.18.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.4.tgz#51310b812a090b846c784e47087fa6457baef814" - integrity sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A== +"@babel/plugin-transform-classes@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz#90818efc5b9746879b869d5ce83eb2aa48bbc3da" + integrity sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-environment-visitor" "^7.18.2" - "@babel/helper-function-name" "^7.17.9" - "@babel/helper-optimise-call-expression" "^7.16.7" - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-replace-supers" "^7.18.2" - "@babel/helper-split-export-declaration" "^7.16.7" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-replace-supers" "^7.18.9" + "@babel/helper-split-export-declaration" "^7.18.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.17.12.tgz#bca616a83679698f3258e892ed422546e531387f" - integrity sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ== +"@babel/plugin-transform-computed-properties@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e" + integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-destructuring@^7.18.0": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.0.tgz#dc4f92587e291b4daa78aa20cc2d7a63aa11e858" - integrity sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw== +"@babel/plugin-transform-destructuring@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz#68906549c021cb231bee1db21d3b5b095f8ee292" + integrity sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz#6b2d67686fab15fb6a7fd4bd895d5982cfc81241" - integrity sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ== +"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" + integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-duplicate-keys@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.17.12.tgz#a09aa709a3310013f8e48e0e23bc7ace0f21477c" - integrity sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw== +"@babel/plugin-transform-duplicate-keys@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" + integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-exponentiation-operator@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz#efa9862ef97e9e9e5f653f6ddc7b665e8536fe9b" - integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA== +"@babel/plugin-transform-exponentiation-operator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" + integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-for-of@^7.18.1": - version "7.18.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.1.tgz#ed14b657e162b72afbbb2b4cdad277bf2bb32036" - integrity sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg== +"@babel/plugin-transform-for-of@^7.18.8": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1" + integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-function-name@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz#5ab34375c64d61d083d7d2f05c38d90b97ec65cf" - integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA== +"@babel/plugin-transform-function-name@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" + integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== dependencies: - "@babel/helper-compilation-targets" "^7.16.7" - "@babel/helper-function-name" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-literals@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.17.12.tgz#97131fbc6bbb261487105b4b3edbf9ebf9c830ae" - integrity sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ== +"@babel/plugin-transform-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" + integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-member-expression-literals@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz#6e5dcf906ef8a098e630149d14c867dd28f92384" - integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw== +"@babel/plugin-transform-member-expression-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" + integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-modules-amd@^7.18.0": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.0.tgz#7ef1002e67e36da3155edc8bf1ac9398064c02ed" - integrity sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA== +"@babel/plugin-transform-modules-amd@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz#8c91f8c5115d2202f277549848874027d7172d21" + integrity sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg== dependencies: - "@babel/helper-module-transforms" "^7.18.0" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-commonjs@^7.12.1", "@babel/plugin-transform-modules-commonjs@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.2.tgz#1aa8efa2e2a6e818b6a7f2235fceaf09bdb31e9e" - integrity sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ== +"@babel/plugin-transform-modules-commonjs@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz#afd243afba166cca69892e24a8fd8c9f2ca87883" + integrity sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q== dependencies: - "@babel/helper-module-transforms" "^7.18.0" - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-simple-access" "^7.18.2" + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-simple-access" "^7.18.6" babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-systemjs@^7.18.0": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.5.tgz#87f11c44fbfd3657be000d4897e192d9cb535996" - integrity sha512-SEewrhPpcqMF1V7DhnEbhVJLrC+nnYfe1E0piZMZXBpxi9WvZqWGwpsk7JYP7wPWeqaBh4gyKlBhHJu3uz5g4Q== +"@babel/plugin-transform-modules-systemjs@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz#545df284a7ac6a05125e3e405e536c5853099a06" + integrity sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A== dependencies: - "@babel/helper-hoist-variables" "^7.16.7" - "@babel/helper-module-transforms" "^7.18.0" - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-validator-identifier" "^7.16.7" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-module-transforms" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-validator-identifier" "^7.18.6" babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-umd@^7.18.0": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.0.tgz#56aac64a2c2a1922341129a4597d1fd5c3ff020f" - integrity sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA== +"@babel/plugin-transform-modules-umd@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" + integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== dependencies: - "@babel/helper-module-transforms" "^7.18.0" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-named-capturing-groups-regex@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.12.tgz#9c4a5a5966e0434d515f2675c227fd8cc8606931" - integrity sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA== +"@babel/plugin-transform-named-capturing-groups-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz#c89bfbc7cc6805d692f3a49bc5fc1b630007246d" + integrity sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.17.12" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-new-target@^7.17.12": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.5.tgz#8c228c4a07501dd12c95c5f23d1622131cc23931" - integrity sha512-TuRL5uGW4KXU6OsRj+mLp9BM7pO8e7SGNTEokQRRxHFkXYMFiy2jlKSZPFtI/mKORDzciH+hneskcSOp0gU8hg== +"@babel/plugin-transform-new-target@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" + integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-object-super@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz#ac359cf8d32cf4354d27a46867999490b6c32a94" - integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw== +"@babel/plugin-transform-object-super@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" + integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - "@babel/helper-replace-supers" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-replace-supers" "^7.18.6" -"@babel/plugin-transform-parameters@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.17.12.tgz#eb467cd9586ff5ff115a9880d6fdbd4a846b7766" - integrity sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA== +"@babel/plugin-transform-parameters@^7.18.8": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz#ee9f1a0ce6d78af58d0956a9378ea3427cccb48a" + integrity sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-property-literals@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz#2dadac85155436f22c696c4827730e0fe1057a55" - integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw== +"@babel/plugin-transform-property-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" + integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-react-display-name@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz#7b6d40d232f4c0f550ea348593db3b21e2404340" - integrity sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg== +"@babel/plugin-transform-react-display-name@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415" + integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-react-jsx-development@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz#43a00724a3ed2557ed3f276a01a929e6686ac7b8" - integrity sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A== +"@babel/plugin-transform-react-jsx-development@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5" + integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== dependencies: - "@babel/plugin-transform-react-jsx" "^7.16.7" + "@babel/plugin-transform-react-jsx" "^7.18.6" -"@babel/plugin-transform-react-jsx@^7.16.7", "@babel/plugin-transform-react-jsx@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.12.tgz#2aa20022709cd6a3f40b45d60603d5f269586dba" - integrity sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ== +"@babel/plugin-transform-react-jsx@^7.18.6": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.10.tgz#ea47b2c4197102c196cbd10db9b3bb20daa820f1" + integrity sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/plugin-syntax-jsx" "^7.17.12" - "@babel/types" "^7.17.12" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-jsx" "^7.18.6" + "@babel/types" "^7.18.10" -"@babel/plugin-transform-react-pure-annotations@^7.16.7": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.0.tgz#ef82c8e310913f3522462c9ac967d395092f1954" - integrity sha512-6+0IK6ouvqDn9bmEG7mEyF/pwlJXVj5lwydybpyyH3D0A7Hftk+NCTdYjnLNZksn261xaOV5ksmp20pQEmc2RQ== +"@babel/plugin-transform-react-pure-annotations@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz#561af267f19f3e5d59291f9950fd7b9663d0d844" + integrity sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-regenerator@^7.18.0": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.0.tgz#44274d655eb3f1af3f3a574ba819d3f48caf99d5" - integrity sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw== +"@babel/plugin-transform-regenerator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73" + integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" regenerator-transform "^0.15.0" -"@babel/plugin-transform-reserved-words@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.17.12.tgz#7dbd349f3cdffba751e817cf40ca1386732f652f" - integrity sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA== +"@babel/plugin-transform-reserved-words@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" + integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-runtime@^7.13.15": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.5.tgz#f4d3188ba6a8815793993c71c2c225d0ee1d7743" - integrity sha512-Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA== +"@babel/plugin-transform-runtime@7.18.10": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz#37d14d1fa810a368fd635d4d1476c0154144a96f" + integrity sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ== dependencies: - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-plugin-utils" "^7.17.12" - babel-plugin-polyfill-corejs2 "^0.3.0" - babel-plugin-polyfill-corejs3 "^0.5.0" - babel-plugin-polyfill-regenerator "^0.3.0" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.9" + babel-plugin-polyfill-corejs2 "^0.3.2" + babel-plugin-polyfill-corejs3 "^0.5.3" + babel-plugin-polyfill-regenerator "^0.4.0" semver "^6.3.0" -"@babel/plugin-transform-shorthand-properties@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz#e8549ae4afcf8382f711794c0c7b6b934c5fbd2a" - integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg== +"@babel/plugin-transform-shorthand-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" + integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-spread@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.17.12.tgz#c112cad3064299f03ea32afed1d659223935d1f5" - integrity sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg== +"@babel/plugin-transform-spread@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz#6ea7a6297740f381c540ac56caf75b05b74fb664" + integrity sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" -"@babel/plugin-transform-sticky-regex@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz#c84741d4f4a38072b9a1e2e3fd56d359552e8660" - integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw== +"@babel/plugin-transform-sticky-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" + integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-template-literals@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.2.tgz#31ed6915721864847c48b656281d0098ea1add28" - integrity sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g== +"@babel/plugin-transform-template-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" + integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-typeof-symbol@^7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.17.12.tgz#0f12f57ac35e98b35b4ed34829948d42bd0e6889" - integrity sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw== +"@babel/plugin-transform-typeof-symbol@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" + integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-unicode-escapes@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz#da8717de7b3287a2c6d659750c964f302b31ece3" - integrity sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q== +"@babel/plugin-transform-unicode-escapes@^7.18.10": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246" + integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== dependencies: - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-unicode-regex@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz#0f7aa4a501198976e25e82702574c34cfebe9ef2" - integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q== +"@babel/plugin-transform-unicode-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" + integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.16.7" - "@babel/helper-plugin-utils" "^7.16.7" + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/polyfill@^7.12.1": +"@babel/polyfill@7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.12.1.tgz#1f2d6371d1261bbd961f3c5d5909150e12d0bd96" integrity sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==

@@ -913,38 +940,38 @@ dependencies:

core-js "^2.6.5" regenerator-runtime "^0.13.4" -"@babel/preset-env@^7.13.15": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.2.tgz#f47d3000a098617926e674c945d95a28cb90977a" - integrity sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q== +"@babel/preset-env@7.18.10": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.10.tgz#83b8dfe70d7eea1aae5a10635ab0a5fe60dfc0f4" + integrity sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA== dependencies: - "@babel/compat-data" "^7.17.10" - "@babel/helper-compilation-targets" "^7.18.2" - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-validator-option" "^7.16.7" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.17.12" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.17.12" - "@babel/plugin-proposal-async-generator-functions" "^7.17.12" - "@babel/plugin-proposal-class-properties" "^7.17.12" - "@babel/plugin-proposal-class-static-block" "^7.18.0" - "@babel/plugin-proposal-dynamic-import" "^7.16.7" - "@babel/plugin-proposal-export-namespace-from" "^7.17.12" - "@babel/plugin-proposal-json-strings" "^7.17.12" - "@babel/plugin-proposal-logical-assignment-operators" "^7.17.12" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.17.12" - "@babel/plugin-proposal-numeric-separator" "^7.16.7" - "@babel/plugin-proposal-object-rest-spread" "^7.18.0" - "@babel/plugin-proposal-optional-catch-binding" "^7.16.7" - "@babel/plugin-proposal-optional-chaining" "^7.17.12" - "@babel/plugin-proposal-private-methods" "^7.17.12" - "@babel/plugin-proposal-private-property-in-object" "^7.17.12" - "@babel/plugin-proposal-unicode-property-regex" "^7.17.12" + "@babel/compat-data" "^7.18.8" + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-validator-option" "^7.18.6" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9" + "@babel/plugin-proposal-async-generator-functions" "^7.18.10" + "@babel/plugin-proposal-class-properties" "^7.18.6" + "@babel/plugin-proposal-class-static-block" "^7.18.6" + "@babel/plugin-proposal-dynamic-import" "^7.18.6" + "@babel/plugin-proposal-export-namespace-from" "^7.18.9" + "@babel/plugin-proposal-json-strings" "^7.18.6" + "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" + "@babel/plugin-proposal-numeric-separator" "^7.18.6" + "@babel/plugin-proposal-object-rest-spread" "^7.18.9" + "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" + "@babel/plugin-proposal-optional-chaining" "^7.18.9" + "@babel/plugin-proposal-private-methods" "^7.18.6" + "@babel/plugin-proposal-private-property-in-object" "^7.18.6" + "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-class-properties" "^7.12.13" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.17.12" + "@babel/plugin-syntax-import-assertions" "^7.18.6" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"

@@ -954,43 +981,43 @@ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"

"@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-transform-arrow-functions" "^7.17.12" - "@babel/plugin-transform-async-to-generator" "^7.17.12" - "@babel/plugin-transform-block-scoped-functions" "^7.16.7" - "@babel/plugin-transform-block-scoping" "^7.17.12" - "@babel/plugin-transform-classes" "^7.17.12" - "@babel/plugin-transform-computed-properties" "^7.17.12" - "@babel/plugin-transform-destructuring" "^7.18.0" - "@babel/plugin-transform-dotall-regex" "^7.16.7" - "@babel/plugin-transform-duplicate-keys" "^7.17.12" - "@babel/plugin-transform-exponentiation-operator" "^7.16.7" - "@babel/plugin-transform-for-of" "^7.18.1" - "@babel/plugin-transform-function-name" "^7.16.7" - "@babel/plugin-transform-literals" "^7.17.12" - "@babel/plugin-transform-member-expression-literals" "^7.16.7" - "@babel/plugin-transform-modules-amd" "^7.18.0" - "@babel/plugin-transform-modules-commonjs" "^7.18.2" - "@babel/plugin-transform-modules-systemjs" "^7.18.0" - "@babel/plugin-transform-modules-umd" "^7.18.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.17.12" - "@babel/plugin-transform-new-target" "^7.17.12" - "@babel/plugin-transform-object-super" "^7.16.7" - "@babel/plugin-transform-parameters" "^7.17.12" - "@babel/plugin-transform-property-literals" "^7.16.7" - "@babel/plugin-transform-regenerator" "^7.18.0" - "@babel/plugin-transform-reserved-words" "^7.17.12" - "@babel/plugin-transform-shorthand-properties" "^7.16.7" - "@babel/plugin-transform-spread" "^7.17.12" - "@babel/plugin-transform-sticky-regex" "^7.16.7" - "@babel/plugin-transform-template-literals" "^7.18.2" - "@babel/plugin-transform-typeof-symbol" "^7.17.12" - "@babel/plugin-transform-unicode-escapes" "^7.16.7" - "@babel/plugin-transform-unicode-regex" "^7.16.7" + "@babel/plugin-transform-arrow-functions" "^7.18.6" + "@babel/plugin-transform-async-to-generator" "^7.18.6" + "@babel/plugin-transform-block-scoped-functions" "^7.18.6" + "@babel/plugin-transform-block-scoping" "^7.18.9" + "@babel/plugin-transform-classes" "^7.18.9" + "@babel/plugin-transform-computed-properties" "^7.18.9" + "@babel/plugin-transform-destructuring" "^7.18.9" + "@babel/plugin-transform-dotall-regex" "^7.18.6" + "@babel/plugin-transform-duplicate-keys" "^7.18.9" + "@babel/plugin-transform-exponentiation-operator" "^7.18.6" + "@babel/plugin-transform-for-of" "^7.18.8" + "@babel/plugin-transform-function-name" "^7.18.9" + "@babel/plugin-transform-literals" "^7.18.9" + "@babel/plugin-transform-member-expression-literals" "^7.18.6" + "@babel/plugin-transform-modules-amd" "^7.18.6" + "@babel/plugin-transform-modules-commonjs" "^7.18.6" + "@babel/plugin-transform-modules-systemjs" "^7.18.9" + "@babel/plugin-transform-modules-umd" "^7.18.6" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.18.6" + "@babel/plugin-transform-new-target" "^7.18.6" + "@babel/plugin-transform-object-super" "^7.18.6" + "@babel/plugin-transform-parameters" "^7.18.8" + "@babel/plugin-transform-property-literals" "^7.18.6" + "@babel/plugin-transform-regenerator" "^7.18.6" + "@babel/plugin-transform-reserved-words" "^7.18.6" + "@babel/plugin-transform-shorthand-properties" "^7.18.6" + "@babel/plugin-transform-spread" "^7.18.9" + "@babel/plugin-transform-sticky-regex" "^7.18.6" + "@babel/plugin-transform-template-literals" "^7.18.9" + "@babel/plugin-transform-typeof-symbol" "^7.18.9" + "@babel/plugin-transform-unicode-escapes" "^7.18.10" + "@babel/plugin-transform-unicode-regex" "^7.18.6" "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.18.2" - babel-plugin-polyfill-corejs2 "^0.3.0" - babel-plugin-polyfill-corejs3 "^0.5.0" - babel-plugin-polyfill-regenerator "^0.3.0" + "@babel/types" "^7.18.10" + babel-plugin-polyfill-corejs2 "^0.3.2" + babel-plugin-polyfill-corejs3 "^0.5.3" + babel-plugin-polyfill-regenerator "^0.4.0" core-js-compat "^3.22.1" semver "^6.3.0"

@@ -1005,56 +1032,65 @@ "@babel/plugin-transform-dotall-regex" "^7.4.4"

"@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/preset-react@^7.13.13": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.17.12.tgz#62adbd2d1870c0de3893095757ed5b00b492ab3d" - integrity sha512-h5U+rwreXtZaRBEQhW1hOJLMq8XNJBQ/9oymXiCXTuT/0uOwpbT0gUt+sXeOqoXBgNuUKI7TaObVwoEyWkpFgA== +"@babel/preset-react@7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.18.6.tgz#979f76d6277048dc19094c217b507f3ad517dd2d" + integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg== dependencies: - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-validator-option" "^7.16.7" - "@babel/plugin-transform-react-display-name" "^7.16.7" - "@babel/plugin-transform-react-jsx" "^7.17.12" - "@babel/plugin-transform-react-jsx-development" "^7.16.7" - "@babel/plugin-transform-react-pure-annotations" "^7.16.7" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-validator-option" "^7.18.6" + "@babel/plugin-transform-react-display-name" "^7.18.6" + "@babel/plugin-transform-react-jsx" "^7.18.6" + "@babel/plugin-transform-react-jsx-development" "^7.18.6" + "@babel/plugin-transform-react-pure-annotations" "^7.18.6" + +"@babel/runtime-corejs3@^7.9.2": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz#7bacecd1cb2dd694eacd32a91fcf7021c20770ae" + integrity sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A== + dependencies: + core-js-pure "^3.20.2" + regenerator-runtime "^0.13.4" -"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.13.17", "@babel/runtime@^7.15.4", "@babel/runtime@^7.2.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.18.3" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.3.tgz#c7b654b57f6f63cf7f8b418ac9ca04408c4579f4" - integrity sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug== +"@babel/runtime@7.18.9", "@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.9.tgz#b4fcfce55db3d2e5e080d2490f608a3b9f407f4a" + integrity sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw== dependencies: regenerator-runtime "^0.13.4" -"@babel/template@^7.16.7", "@babel/template@^7.3.3": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" - integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== +"@babel/template@^7.18.10", "@babel/template@^7.18.6", "@babel/template@^7.3.3": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" + integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/parser" "^7.16.7" - "@babel/types" "^7.16.7" + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.18.10" + "@babel/types" "^7.18.10" -"@babel/traverse@^7.13.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.18.0", "@babel/traverse@^7.18.2", "@babel/traverse@^7.18.5", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.2": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.5.tgz#94a8195ad9642801837988ab77f36e992d9a20cd" - integrity sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA== +"@babel/traverse@^7.18.10", "@babel/traverse@^7.18.11", "@babel/traverse@^7.18.9", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.2": + version "7.18.11" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.11.tgz#3d51f2afbd83ecf9912bcbb5c4d94e3d2ddaa16f" + integrity sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ== dependencies: - "@babel/code-frame" "^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.18.5" - "@babel/types" "^7.18.4" + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.18.10" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.18.11" + "@babel/types" "^7.18.10" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.17.12", "@babel/types@^7.18.0", "@babel/types@^7.18.2", "@babel/types@^7.18.4", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": - version "7.18.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.4.tgz#27eae9b9fd18e9dccc3f9d6ad051336f307be354" - integrity sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw== +"@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.10.tgz#4908e81b6b339ca7c6b7a555a5fc29446f26dde6" + integrity sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ== dependencies: - "@babel/helper-validator-identifier" "^7.16.7" + "@babel/helper-string-parser" "^7.18.10" + "@babel/helper-validator-identifier" "^7.18.6" to-fast-properties "^2.0.0" "@bcoe/v8-coverage@^0.2.3":

@@ -1062,183 +1098,152 @@ version "0.2.3"

resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== -"@buffetjs/core@3.3.8": - version "3.3.8" - resolved "https://registry.yarnpkg.com/@buffetjs/core/-/core-3.3.8.tgz#59899e85ccc238b57ec0d4fcbe9b160c480e5c00" - integrity sha512-lDobqgC6aUigHPH7Cx82S/AzeMEer3SxepOZ9PMLxgyc0JeTK1jSAUTr6IYBrbZdYzvGX+zMFtneI4se93Q/Vg== - dependencies: - "@buffetjs/hooks" "3.3.8" - "@buffetjs/icons" "3.3.8" - "@buffetjs/styles" "3.3.8" - "@buffetjs/utils" "3.3.8" - "@fortawesome/fontawesome-svg-core" "^1.2.25" - "@fortawesome/free-regular-svg-icons" "^5.11.2" - "@fortawesome/free-solid-svg-icons" "^5.11.2" - "@fortawesome/react-fontawesome" "^0.1.4" - invariant "^2.2.4" - lodash "4.17.21" - moment "^2.24.0" - prop-types "^15.7.2" - rc-input-number "^4.5.0" - react-dates "^21.5.1" - react-moment-proptypes "^1.7.0" - react-router-dom "^5.2.0" - react-with-direction "^1.3.1" - reactstrap "^8.5.1" - -"@buffetjs/custom@3.3.8": - version "3.3.8" - resolved "https://registry.yarnpkg.com/@buffetjs/custom/-/custom-3.3.8.tgz#d7e73d9043ec34380410cc1163236df7443a70e9" - integrity sha512-QmCA0aLhSrGRXxFI+Cu94xp/Xk8FDjESE6dDf2ipM13OpOpN6XQiEcf8aNRP5/MASdxEfDDL2yh25jXavD2Ayg== - dependencies: - "@buffetjs/core" "3.3.8" - "@buffetjs/styles" "3.3.8" - "@buffetjs/utils" "3.3.8" - lodash "4.17.21" - moment "^2.24.0" - prop-types "^15.5.10" - react-moment-proptypes "^1.7.0" - -"@buffetjs/hooks@3.3.8": - version "3.3.8" - resolved "https://registry.yarnpkg.com/@buffetjs/hooks/-/hooks-3.3.8.tgz#0b03b1aa9cf2236861d5e8533567baa8123fa7ed" - integrity sha512-PaobbbBnzlkWcG04nyNWEvcX6zzC5LdPh2uoAUccEwXG4saXIihrQfnGxuKqvlYHof4PFqQb/cmJHXtrTiE20A== - -"@buffetjs/icons@3.3.8": - version "3.3.8" - resolved "https://registry.yarnpkg.com/@buffetjs/icons/-/icons-3.3.8.tgz#289fa686049e467eebb1036dc9624fc70f2d9b8b" - integrity sha512-T1h3w5zu4JmwiZXcJPHJZXOpaIZzCpOQDaXLrzZNGze+8qcifUEKu4Y8pGS9+14OwMXjrAi+SsWxaeY/t7zYTQ== - dependencies: - prop-types "^15.5.10" - -"@buffetjs/styles@3.3.8": - version "3.3.8" - resolved "https://registry.yarnpkg.com/@buffetjs/styles/-/styles-3.3.8.tgz#932dca9e1c49e3c6717260f1ad784ec8595aec35" - integrity sha512-YkBoXyg6qKe8tUwQQJaieC1hfyBQKLhQZCsIWqhiswr+CJhIJS+YFRQHGQXCo+k3yhHmpXdJqKeMSoBkHr6Xvw== - dependencies: - "@fortawesome/fontawesome-free" "^5.12.0" - "@fortawesome/fontawesome-svg-core" "^1.2.22" - "@fortawesome/free-regular-svg-icons" "^5.10.2" - "@fortawesome/free-solid-svg-icons" "^5.10.2" - "@fortawesome/react-fontawesome" "^0.1.4" - prop-types "^15.7.2" - react-dates "^21.1.0" - react-tooltip "^4.2.11" - -"@buffetjs/utils@3.3.8": - version "3.3.8" - resolved "https://registry.yarnpkg.com/@buffetjs/utils/-/utils-3.3.8.tgz#d21ef4c09bb2173e2a7465d39805237ade06b235" - integrity sha512-xRod8N11iWfFayqh5EMP4ScAgpr9GtDOdAJdcKlBLmZqf/rik3StT26GR70Zg25OkFNJ5lt9zknD2vJrdmBX7A== - dependencies: - lodash "4.17.21" - yup "^0.32.9" - -"@casl/ability@^4.1.5": - version "4.1.6" - resolved "https://registry.yarnpkg.com/@casl/ability/-/ability-4.1.6.tgz#89f263903adfc9316cedff329ad615564662448a" - integrity sha512-ZI30fRacHKCCrWJn1pmxx/+IKUkoycVNz+Mge9EeIH+esDT7nydgWbitVPnlBAbxQXz5eybPAvfPSg3WOa2izw== +"@casl/ability@^5.4.3": + version "5.4.4" + resolved "https://registry.yarnpkg.com/@casl/ability/-/ability-5.4.4.tgz#fbe54340c156248e73804942eed350903b27b9f3" + integrity sha512-7+GOnMUq6q4fqtDDesymBXTS9LSDVezYhFiSJ8Rn3f0aQLeRm7qHn66KWbej4niCOvm0XzNj9jzpkK0yz6hUww== dependencies: - sift "^13.0.0" + "@ucast/mongo2js" "^1.3.0" "@colors/colors@1.5.0": version "1.5.0" resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== -"@emotion/babel-plugin@^11.7.1": - version "11.9.2" - resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.9.2.tgz#723b6d394c89fb2ef782229d92ba95a740576e95" - integrity sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw== +"@dabh/diagnostics@^2.0.2": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@dabh/diagnostics/-/diagnostics-2.0.3.tgz#7f7e97ee9a725dffc7808d93668cc984e1dc477a" + integrity sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA== + dependencies: + colorspace "1.1.x" + enabled "2.0.x" + kuler "^2.0.0" + +"@discoveryjs/json-ext@^0.5.0": + version "0.5.7" + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" + integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== + +"@emotion/babel-plugin@^11.10.0": + version "11.10.0" + resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.10.0.tgz#ae545b8faa6b42d3a50ec86b70b758296f3c4467" + integrity sha512-xVnpDAAbtxL1dsuSelU5A7BnY/lftws0wUexNJZTPsvX/1tM4GZJbclgODhvW4E+NH7E5VFcH0bBn30NvniPJA== dependencies: - "@babel/helper-module-imports" "^7.12.13" - "@babel/plugin-syntax-jsx" "^7.12.13" - "@babel/runtime" "^7.13.10" - "@emotion/hash" "^0.8.0" - "@emotion/memoize" "^0.7.5" - "@emotion/serialize" "^1.0.2" - babel-plugin-macros "^2.6.1" + "@babel/helper-module-imports" "^7.16.7" + "@babel/plugin-syntax-jsx" "^7.17.12" + "@babel/runtime" "^7.18.3" + "@emotion/hash" "^0.9.0" + "@emotion/memoize" "^0.8.0" + "@emotion/serialize" "^1.1.0" + babel-plugin-macros "^3.1.0" convert-source-map "^1.5.0" escape-string-regexp "^4.0.0" find-root "^1.1.0" source-map "^0.5.7" stylis "4.0.13" -"@emotion/cache@^11.4.0", "@emotion/cache@^11.9.3": - version "11.9.3" - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.9.3.tgz#96638449f6929fd18062cfe04d79b29b44c0d6cb" - integrity sha512-0dgkI/JKlCXa+lEXviaMtGBL0ynpx4osh7rjOXE71q9bIF8G+XhJgvi+wDu0B0IdCVx37BffiwXlN9I3UuzFvg== +"@emotion/cache@^11.0.0", "@emotion/cache@^11.10.0": + version "11.10.1" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.10.1.tgz#75a157c2a6bb9220450f73ebef1df2e1467dc65d" + integrity sha512-uZTj3Yz5D69GE25iFZcIQtibnVCFsc/6+XIozyL3ycgWvEdif2uEw9wlUt6umjLr4Keg9K6xRPHmD8LGi+6p1A== dependencies: - "@emotion/memoize" "^0.7.4" - "@emotion/sheet" "^1.1.1" - "@emotion/utils" "^1.0.0" - "@emotion/weak-memoize" "^0.2.5" + "@emotion/memoize" "^0.8.0" + "@emotion/sheet" "^1.2.0" + "@emotion/utils" "^1.2.0" + "@emotion/weak-memoize" "^0.3.0" stylis "4.0.13" -"@emotion/hash@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" - integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== +"@emotion/css@^11.0.0": + version "11.10.0" + resolved "https://registry.yarnpkg.com/@emotion/css/-/css-11.10.0.tgz#270b4fdf2419e59cb07081d0e9f7940d88b8b443" + integrity sha512-dH9f+kSCucc8ilMg0MUA1AemabcyzYpe5EKX24F528PJjD7HyIY/VBNJHxfUdc8l400h2ncAjR6yEDu+DBj2cg== + dependencies: + "@emotion/babel-plugin" "^11.10.0" + "@emotion/cache" "^11.10.0" + "@emotion/serialize" "^1.1.0" + "@emotion/sheet" "^1.2.0" + "@emotion/utils" "^1.2.0" + +"@emotion/hash@^0.9.0": + version "0.9.0" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.0.tgz#c5153d50401ee3c027a57a177bc269b16d889cb7" + integrity sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ== -"@emotion/is-prop-valid@^1.1.0": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.3.tgz#f0907a416368cf8df9e410117068e20fe87c0a3a" - integrity sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA== +"@emotion/is-prop-valid@^0.8.8": + version "0.8.8" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" + integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== dependencies: - "@emotion/memoize" "^0.7.4" + "@emotion/memoize" "0.7.4" -"@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5": - version "0.7.5" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50" - integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ== +"@emotion/memoize@0.7.4": + version "0.7.4" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" + integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== + +"@emotion/memoize@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.0.tgz#f580f9beb67176fa57aae70b08ed510e1b18980f" + integrity sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA== "@emotion/react@^11.1.1": - version "11.9.3" - resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.9.3.tgz#f4f4f34444f6654a2e550f5dab4f2d360c101df9" - integrity sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ== + version "11.10.0" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.10.0.tgz#53c577f063f26493f68a05188fb87528d912ff2e" + integrity sha512-K6z9zlHxxBXwN8TcpwBKcEsBsOw4JWCCmR+BeeOWgqp8GIU1yA2Odd41bwdAAr0ssbQrbJbVnndvv7oiv1bZeQ== dependencies: - "@babel/runtime" "^7.13.10" - "@emotion/babel-plugin" "^11.7.1" - "@emotion/cache" "^11.9.3" - "@emotion/serialize" "^1.0.4" - "@emotion/utils" "^1.1.0" - "@emotion/weak-memoize" "^0.2.5" + "@babel/runtime" "^7.18.3" + "@emotion/babel-plugin" "^11.10.0" + "@emotion/cache" "^11.10.0" + "@emotion/serialize" "^1.1.0" + "@emotion/utils" "^1.2.0" + "@emotion/weak-memoize" "^0.3.0" hoist-non-react-statics "^3.3.1" -"@emotion/serialize@^1.0.2", "@emotion/serialize@^1.0.4": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.0.4.tgz#ff31fd11bb07999611199c2229e152faadc21a3c" - integrity sha512-1JHamSpH8PIfFwAMryO2bNka+y8+KA5yga5Ocf2d7ZEiJjb7xlLW7aknBGZqJLajuLOvJ+72vN+IBSwPlXD1Pg== +"@emotion/serialize@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.0.tgz#b1f97b1011b09346a40e9796c37a3397b4ea8ea8" + integrity sha512-F1ZZZW51T/fx+wKbVlwsfchr5q97iW8brAnXmsskz4d0hVB4O3M/SiA3SaeH06x02lSNzkkQv+n3AX3kCXKSFA== dependencies: - "@emotion/hash" "^0.8.0" - "@emotion/memoize" "^0.7.4" - "@emotion/unitless" "^0.7.5" - "@emotion/utils" "^1.0.0" + "@emotion/hash" "^0.9.0" + "@emotion/memoize" "^0.8.0" + "@emotion/unitless" "^0.8.0" + "@emotion/utils" "^1.2.0" csstype "^3.0.2" -"@emotion/sheet@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.1.1.tgz#015756e2a9a3c7c5f11d8ec22966a8dbfbfac787" - integrity sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA== +"@emotion/sheet@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.0.tgz#771b1987855839e214fc1741bde43089397f7be5" + integrity sha512-OiTkRgpxescko+M51tZsMq7Puu/KP55wMT8BgpcXVG2hqXc0Vo0mfymJ/Uj24Hp0i083ji/o0aLddh08UEjq8w== "@emotion/stylis@^0.8.4": version "0.8.5" resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== -"@emotion/unitless@^0.7.4", "@emotion/unitless@^0.7.5": +"@emotion/unitless@^0.7.4": version "0.7.5" resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== -"@emotion/utils@^1.0.0", "@emotion/utils@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.1.0.tgz#86b0b297f3f1a0f2bdb08eeac9a2f49afd40d0cf" - integrity sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ== +"@emotion/unitless@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.0.tgz#a4a36e9cbdc6903737cd20d38033241e1b8833db" + integrity sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw== -"@emotion/weak-memoize@^0.2.5": - version "0.2.5" - resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" - integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== +"@emotion/utils@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.0.tgz#9716eaccbc6b5ded2ea5a90d65562609aab0f561" + integrity sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw== + +"@emotion/weak-memoize@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz#ea89004119dc42db2e1dba0f97d553f7372f6fcb" + integrity sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg== + +"@esbuild/linux-loong64@0.14.54": + version "0.14.54" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz#de2a4be678bd4d0d1ffbb86e6de779cde5999028" + integrity sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw== "@eslint/eslintrc@^0.4.3": version "0.4.3"

@@ -1255,60 +1260,70 @@ js-yaml "^3.13.1"

minimatch "^3.0.4" strip-json-comments "^3.1.1" -"@fingerprintjs/fingerprintjs@3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@fingerprintjs/fingerprintjs/-/fingerprintjs-3.1.1.tgz#381842ca0e4bdae5c3f4653601a12fe2b57923a9" - integrity sha512-+nUVhRimx9SgXs78miuSA2Y38k4g24iKpAMgWK5/QuLy9Un3ZSoRk5AXp3b4smUf1XqNTzGAmyWYrc1qG05rOA== +"@fingerprintjs/fingerprintjs@3.3.3": + version "3.3.3" + resolved "https://registry.yarnpkg.com/@fingerprintjs/fingerprintjs/-/fingerprintjs-3.3.3.tgz#ead445032c92a79d5f585953019402ed223edc7d" + integrity sha512-HH6KqZnopF3NIXypYG4f2qxoSRmGCSzp81wJMfWjSTtvsX3cAg12RFJcm+a6Az3XadcZUrXKW3p5Dv0wyCUeuA== dependencies: tslib "^2.0.1" -"@formatjs/ecma402-abstract@1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.4.0.tgz#ac6c17a8fffac43c6d68c849a7b732626d32654c" - integrity sha512-Mv027hcLFjE45K8UJ8PjRpdDGfR0aManEFj1KzoN8zXNveHGEygpZGfFf/FTTMl+QEVSrPAUlyxaCApvmv47AQ== +"@formatjs/ecma402-abstract@1.9.3": + version "1.9.3" + resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.9.3.tgz#00892014c805935b5b1345d238246e9bf3a2de50" + integrity sha512-DBrRUL65m4SVtfq+T4Qltd8+upAzfb9K1MX0UZ0hqQ0wpBY0PSIti9XJe0ZQ/j2v/KxpwQ0Jw5NLumKVezJFQg== dependencies: - tslib "^2.0.1" + tslib "^2.1.0" -"@formatjs/intl-displaynames@^1.2.5": - version "1.2.10" - resolved "https://registry.yarnpkg.com/@formatjs/intl-displaynames/-/intl-displaynames-1.2.10.tgz#bb9625cca90b099978cd967c6a98aaf4e23fc878" - integrity sha512-GROA2RP6+7Ouu0WnHFF78O5XIU7pBfI19WM1qm93l6MFWibUk67nCfVCK3VAYJkLy8L8ZxjkYT11VIAfvSz8wg== - dependencies: - "@formatjs/intl-utils" "^2.3.0" +"@formatjs/fast-memoize@1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@formatjs/fast-memoize/-/fast-memoize-1.1.1.tgz#3006b58aca1e39a98aca213356b42da5d173f26b" + integrity sha512-mIqBr5uigIlx13eZTOPSEh2buDiy3BCdMYUtewICREQjbb4xarDiVWoXSnrERM7NanZ+0TAHNXSqDe6HpEFQUg== -"@formatjs/intl-listformat@^1.4.4": - version "1.4.8" - resolved "https://registry.yarnpkg.com/@formatjs/intl-listformat/-/intl-listformat-1.4.8.tgz#70b81005e7dcf74329cb5b314a940ce5fce36cd0" - integrity sha512-WNMQlEg0e50VZrGIkgD5n7+DAMGt3boKi1GJALfhFMymslJb5i+5WzWxyj/3a929Z6MAFsmzRIJjKuv+BxKAOQ== +"@formatjs/icu-messageformat-parser@2.0.6": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.0.6.tgz#7471c2116982f07b3d9b80e4572a870f20adbaf6" + integrity sha512-dgOZ2kq3sbjjC4P0IIghXFUiGY+x9yyypBJF9YFACjw8gPq/OSPmOzdMGvjY9hl4EeeIhhsDd4LIAN/3zHG99A== dependencies: - "@formatjs/intl-utils" "^2.3.0" + "@formatjs/ecma402-abstract" "1.9.3" + "@formatjs/icu-skeleton-parser" "1.2.7" + tslib "^2.1.0" -"@formatjs/intl-numberformat@^5.5.2": - version "5.7.6" - resolved "https://registry.yarnpkg.com/@formatjs/intl-numberformat/-/intl-numberformat-5.7.6.tgz#630206bb0acefd2d508ccf4f82367c6875cad611" - integrity sha512-ZlZfYtvbVHYZY5OG3RXizoCwxKxEKOrzEe2YOw9wbzoxF3PmFn0SAgojCFGLyNXkkR6xVxlylhbuOPf1dkIVNg== +"@formatjs/icu-skeleton-parser@1.2.7": + version "1.2.7" + resolved "https://registry.yarnpkg.com/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.2.7.tgz#a74954695c37470efdeff828799654088e567c34" + integrity sha512-xm1rJMOz4fwVfWH98VKtbTpZvyQ45plHilkCF16Nm6bAgosYC/IcMmgJisGr6uHqb5TvJRXE07+EvnkIIQjsdA== dependencies: - "@formatjs/ecma402-abstract" "1.4.0" - tslib "^2.0.1" + "@formatjs/ecma402-abstract" "1.9.3" + tslib "^2.1.0" -"@formatjs/intl-relativetimeformat@^4.5.12": - version "4.5.16" - resolved "https://registry.yarnpkg.com/@formatjs/intl-relativetimeformat/-/intl-relativetimeformat-4.5.16.tgz#7449cef3213dd66d25924ca41f125f87b58df95a" - integrity sha512-IQ0haY97oHAH5OYUdykNiepdyEWj3SAT+Fp9ZpR85ov2JNiFx+12WWlxlVS8ehdyncC2ZMt/SwFIy2huK2+6/A== +"@formatjs/intl-displaynames@5.1.5": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@formatjs/intl-displaynames/-/intl-displaynames-5.1.5.tgz#fb65c09493c3488e11e72b7d9512f0c1cc18b247" + integrity sha512-338DoPv8C4BqLqE7Sn5GkJbbkpL0RG8VoMP6qMJywx7bXVgOdWXiXUl3owdCPvq0bpVGGxTl+UNnF+UH8wGdLg== dependencies: - "@formatjs/intl-utils" "^2.3.0" + "@formatjs/ecma402-abstract" "1.9.3" + tslib "^2.1.0" -"@formatjs/intl-unified-numberformat@^3.3.3": - version "3.3.7" - resolved "https://registry.yarnpkg.com/@formatjs/intl-unified-numberformat/-/intl-unified-numberformat-3.3.7.tgz#9995a24568908188e716d81a1de5b702b2ee00e2" - integrity sha512-KnWgLRHzCAgT9eyt3OS34RHoyD7dPDYhRcuKn+/6Kv2knDF8Im43J6vlSW6Hm1w63fNq3ZIT1cFk7RuVO3Psag== +"@formatjs/intl-listformat@6.2.5": + version "6.2.5" + resolved "https://registry.yarnpkg.com/@formatjs/intl-listformat/-/intl-listformat-6.2.5.tgz#b2534700807e3ca2c2d8180592c15751037c908a" + integrity sha512-LRGroM+uLc8dL5J8zwHhNNxWw45nnHQMphW3zEnD9AySKPbFRsrSxzV8LYA93U5mkvMSBf49RdEODpdeyDak/Q== dependencies: - "@formatjs/intl-utils" "^2.3.0" + "@formatjs/ecma402-abstract" "1.9.3" + tslib "^2.1.0" -"@formatjs/intl-utils@^2.2.2", "@formatjs/intl-utils@^2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@formatjs/intl-utils/-/intl-utils-2.3.0.tgz#2dc8c57044de0340eb53a7ba602e59abf80dc799" - integrity sha512-KWk80UPIzPmUg+P0rKh6TqspRw0G6eux1PuJr+zz47ftMaZ9QDwbGzHZbtzWkl5hgayM/qrKRutllRC7D/vVXQ== +"@formatjs/intl@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@formatjs/intl/-/intl-1.13.0.tgz#31f11d88220b6b864e58d3a7c7cb46e3cee62bf3" + integrity sha512-Wu8NU+OT9ZmkRSeIfKBY8GRrsCpF/Abc7v6Q8wHzA/VxT7HZblhO8YryALISqc0Vdmq4xUnvbrX4cSNSXdafZg== + dependencies: + "@formatjs/ecma402-abstract" "1.9.3" + "@formatjs/fast-memoize" "1.1.1" + "@formatjs/icu-messageformat-parser" "2.0.6" + "@formatjs/intl-displaynames" "5.1.5" + "@formatjs/intl-listformat" "6.2.5" + intl-messageformat "9.6.18" + tslib "^2.1.0" "@fortawesome/fontawesome-common-types@^0.2.36": version "0.2.36"

@@ -1320,12 +1335,12 @@ version "0.3.0"

resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.3.0.tgz#949995a05c0d8801be7e0a594f775f1dbaa0d893" integrity sha512-CA3MAZBTxVsF6SkfkHXDerkhcQs0QPofy43eFdbWJJkZiq3SfiaH1msOkac59rQaqto5EqWnASboY1dBuKen5w== -"@fortawesome/fontawesome-free@^5.12.0", "@fortawesome/fontawesome-free@^5.15.2", "@fortawesome/fontawesome-free@^5.15.3": +"@fortawesome/fontawesome-free@^5.15.2", "@fortawesome/fontawesome-free@^5.15.3": version "5.15.4" resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.4.tgz#ecda5712b61ac852c760d8b3c79c96adca5554e5" integrity sha512-eYm8vijH/hpzr/6/1CJ/V/Eb1xQFW2nnUKArb3z+yUWv7HTwj6M7SP957oMjfZjAHU6qpoNc2wQvIxBLWYa/Jg== -"@fortawesome/fontawesome-svg-core@^1.2.22", "@fortawesome/fontawesome-svg-core@^1.2.25", "@fortawesome/fontawesome-svg-core@^1.2.35": +"@fortawesome/fontawesome-svg-core@^1.2.35": version "1.3.0" resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.3.0.tgz#343fac91fa87daa630d26420bfedfba560f85885" integrity sha512-UIL6crBWhjTNQcONt96ExjUnKt1D68foe3xjEensLDclqQ6YagwCRYVQdrp/hW0ALRp/5Fv/VKw+MqTUWYYvPg==

@@ -1339,24 +1354,17 @@ integrity sha512-f1witbwycL9cTENJegcmcZRYyawAFbm8+c6IirLmwbbpqz46wyjbQYLuxOc7weXFXfB7QR8/Vd2u5R3q6JYD9g==

dependencies: "@fortawesome/fontawesome-common-types" "^0.2.36" -"@fortawesome/free-regular-svg-icons@^5.10.2", "@fortawesome/free-regular-svg-icons@^5.11.2": - version "5.15.4" - resolved "https://registry.yarnpkg.com/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-5.15.4.tgz#b97edab436954333bbeac09cfc40c6a951081a02" - integrity sha512-9VNNnU3CXHy9XednJ3wzQp6SwNwT3XaM26oS4Rp391GsxVYA+0oDR2J194YCIWf7jNRCYKjUCOduxdceLrx+xw== - dependencies: - "@fortawesome/fontawesome-common-types" "^0.2.36" - -"@fortawesome/free-solid-svg-icons@^5.10.2", "@fortawesome/free-solid-svg-icons@^5.11.2", "@fortawesome/free-solid-svg-icons@^5.15.3": +"@fortawesome/free-solid-svg-icons@^5.15.3": version "5.15.4" resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.4.tgz#2a68f3fc3ddda12e52645654142b9e4e8fbb6cc5" integrity sha512-JLmQfz6tdtwxoihXLg6lT78BorrFyCf59SAwBM6qV/0zXyVeDygJVb3fk+j5Qat+Yvcxp1buLTY5iDh1ZSAQ8w== dependencies: "@fortawesome/fontawesome-common-types" "^0.2.36" -"@fortawesome/react-fontawesome@^0.1.14", "@fortawesome/react-fontawesome@^0.1.4": - version "0.1.18" - resolved "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.18.tgz#dae37f718a24e14d7a99a5496c873d69af3fbd73" - integrity sha512-RwLIB4TZw0M9gvy5u+TusAA0afbwM4JQIimNH/j3ygd6aIvYPQLqXMhC9ErY26J23rDPyDZldIfPq/HpTTJ/tQ== +"@fortawesome/react-fontawesome@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.2.0.tgz#d90dd8a9211830b4e3c08e94b63a0ba7291ddcf4" + integrity sha512-uHg75Rb/XORTtVt7OS9WoK8uM276Ufi7gCzshVWkUJbHhh3svsUUeqXerrM96Wm7fRiDzfKRwSoahhMIkGAYHw== dependencies: prop-types "^15.8.1"

@@ -1365,14 +1373,75 @@ version "1.1.3"

resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== -"@graphql-tools/utils@7.2.4": - version "7.2.4" - resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-7.2.4.tgz#1164cf268988254f281b4cfbbc0e8f7ca24a8a41" - integrity sha512-EDSb98dTWX8FngvayWejip1DutOl0wGtNbXC7a3CZf5fiJS7bGHQ/8cSlMhe9XaHwpLJCbAk/Ijnp/dYbXk33w== +"@graphql-tools/merge@8.3.1": + version "8.3.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.3.1.tgz#06121942ad28982a14635dbc87b5d488a041d722" + integrity sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg== + dependencies: + "@graphql-tools/utils" "8.9.0" + tslib "^2.4.0" + +"@graphql-tools/merge@8.3.3", "@graphql-tools/merge@^8.0.2": + version "8.3.3" + resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.3.3.tgz#74dd4816c3fc7af38730fc59d1cba6e687d7fb2d" + integrity sha512-EfULshN2s2s2mhBwbV9WpGnoehRLe7eIMdZrKfHhxlBWOvtNUd3KSCN0PUdAMd7lj1jXUW9KYdn624JrVn6qzg== + dependencies: + "@graphql-tools/utils" "8.10.0" + tslib "^2.4.0" + +"@graphql-tools/mock@^8.1.2": + version "8.7.3" + resolved "https://registry.yarnpkg.com/@graphql-tools/mock/-/mock-8.7.3.tgz#cf17c85b6f2c5434ade7533eb746e6daf230fc4f" + integrity sha512-U9e3tZenFvSTf0TAaFgwqO84cGNEbgzWXvboqJPth873dMag8sOlLyOBZceVzAZP7ptwfLbhm3S0Qq4ffI7mCw== + dependencies: + "@graphql-tools/schema" "9.0.1" + "@graphql-tools/utils" "8.10.0" + fast-json-stable-stringify "^2.1.0" + tslib "^2.4.0" + +"@graphql-tools/schema@8.1.2": + version "8.1.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-8.1.2.tgz#913879da1a7889a9488e9b7dc189e7c83eff74be" + integrity sha512-rX2pg42a0w7JLVYT+f/yeEKpnoZL5PpLq68TxC3iZ8slnNBNjfVfvzzOn8Q8Q6Xw3t17KP9QespmJEDfuQe4Rg== + dependencies: + "@graphql-tools/merge" "^8.0.2" + "@graphql-tools/utils" "^8.1.1" + tslib "~2.3.0" + value-or-promise "1.0.10" + +"@graphql-tools/schema@9.0.1": + version "9.0.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-9.0.1.tgz#ba8629107c1f0b9ffad14c08c2a85961967682fd" + integrity sha512-Y6apeiBmvXEz082IAuS/ainnEEQrzMECP1MRIV72eo2WPa6ZtLYPycvIbd56Z5uU2LKP4XcWRgK6WUbCyN16Rw== dependencies: - "@ardatan/aggregate-error" "0.0.6" - camel-case "4.1.2" - tslib "~2.1.0" + "@graphql-tools/merge" "8.3.3" + "@graphql-tools/utils" "8.10.0" + tslib "^2.4.0" + value-or-promise "1.0.11" + +"@graphql-tools/schema@^8.0.0": + version "8.5.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-8.5.1.tgz#c2f2ff1448380919a330312399c9471db2580b58" + integrity sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg== + dependencies: + "@graphql-tools/merge" "8.3.1" + "@graphql-tools/utils" "8.9.0" + tslib "^2.4.0" + value-or-promise "1.0.11" + +"@graphql-tools/utils@8.10.0", "@graphql-tools/utils@^8.0.0", "@graphql-tools/utils@^8.1.1", "@graphql-tools/utils@^8.9.0": + version "8.10.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.10.0.tgz#8e76db7487e19b60cf99fb90c2d6343b2105b331" + integrity sha512-yI+V373FdXQbYfqdarehn9vRWDZZYuvyQ/xwiv5ez2BbobHrqsexF7qs56plLRaQ8ESYpVAjMQvJWe9s23O0Jg== + dependencies: + tslib "^2.4.0" + +"@graphql-tools/utils@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.9.0.tgz#c6aa5f651c9c99e1aca55510af21b56ec296cdb7" + integrity sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg== + dependencies: + tslib "^2.4.0" "@humanwhocodes/config-array@^0.5.0": version "0.5.0"

@@ -1388,13 +1457,12 @@ version "1.2.1"

resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== -"@hypnosphi/create-react-context@^0.3.1": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6" - integrity sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A== +"@internationalized/number@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@internationalized/number/-/number-3.1.1.tgz#160584316741de4381689ab759001603ee17b595" + integrity sha512-dBxCQKIxvsZvW2IBt3KsqrCfaw2nV6o6a8xsloJn/hjW0ayeyhKuiiMtTwW3/WGNPP7ZRyDbtuiUEjMwif1ENQ== dependencies: - gud "^1.0.0" - warning "^4.0.3" + "@babel/runtime" "^7.6.2" "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0"

@@ -1594,52 +1662,76 @@ dependencies:

"@jridgewell/set-array" "^1.0.0" "@jridgewell/sourcemap-codec" "^1.4.10" -"@jridgewell/gen-mapping@^0.3.0": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz#cf92a983c83466b8c0ce9124fadeaf09f7c66ea9" - integrity sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg== +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== dependencies: - "@jridgewell/set-array" "^1.0.0" + "@jridgewell/set-array" "^1.0.1" "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" "@jridgewell/resolve-uri@^3.0.3": - version "3.0.7" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe" - integrity sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA== + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== -"@jridgewell/set-array@^1.0.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.1.tgz#36a6acc93987adcf0ba50c66908bd0b70de8afea" - integrity sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ== +"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/source-map@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" + integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" "@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.13" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c" - integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w== + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== -"@jridgewell/trace-mapping@^0.3.9": - version "0.3.13" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz#dcfe3e95f224c8fe97a87a5235defec999aa92ea" - integrity sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w== +"@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.15" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz#aba35c48a38d3fd84b37e66c9c0423f9744f9774" + integrity sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g== dependencies: "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" -"@koa/cors@^2.2.1": - version "2.2.3" - resolved "https://registry.yarnpkg.com/@koa/cors/-/cors-2.2.3.tgz#c32a9907acbee1e72fedfb0b9ac840d2e6f9be57" - integrity sha512-tCVVXa39ETsit5kGBtEWWimjLn1sDaeu8+0phgb8kT3GmBDZOykkI3ZO8nMjV2p3MGkJI4K5P+bxR8Ztq0bwsA== +"@koa/cors@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@koa/cors/-/cors-3.1.0.tgz#618bb073438cfdbd3ebd0e648a76e33b84f3a3b2" + integrity sha512-7ulRC1da/rBa6kj6P4g2aJfnET3z8Uf3SWu60cjbtxTA5g8lxRdX/Bd2P92EagGwwAhANeNw8T8if99rJliR6Q== dependencies: vary "^1.1.2" -"@koa/cors@^3.0.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@koa/cors/-/cors-3.3.0.tgz#b4c1c7ee303b7c968c8727f2a638a74675b50bb2" - integrity sha512-lzlkqLlL5Ond8jb6JLnVVDmD2OPym0r5kvZlMgAWiS9xle+Q5ulw1T358oW+RVguxUkANquZQz82i/STIRmsqQ== +"@koa/cors@^3.1.0": + version "3.4.1" + resolved "https://registry.yarnpkg.com/@koa/cors/-/cors-3.4.1.tgz#ddd5c6ff07a1e60831e1281411a3b9fdb95a5b26" + integrity sha512-/sG9NlpGZ/aBpnRamIlGs+wX+C/IJ5DodNK7iPQIVCG4eUQdGeshGhWQ6JCi7tpnD9sCtFXcS04iTimuaJfh4Q== dependencies: vary "^1.1.2" +"@koa/router@10.1.1": + version "10.1.1" + resolved "https://registry.yarnpkg.com/@koa/router/-/router-10.1.1.tgz#8e5a85c9b243e0bc776802c0de564561e57a5f78" + integrity sha512-ORNjq5z4EmQPriKbR0ER3k4Gh7YGNhWDL7JBW+8wXDrHLbWYKYSJaOJ9aN06npF5tbTxe2JBOsurpJDAvjiXKw== + dependencies: + debug "^4.1.1" + http-errors "^1.7.3" + koa-compose "^4.1.0" + methods "^1.1.2" + path-to-regexp "^6.1.0" + +"@leichtgewicht/ip-codec@^2.0.1": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" + integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== + "@mapbox/node-pre-gyp@^1.0.0": version "1.0.9" resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.9.tgz#09a8781a3a036151cdebbe8719d6f8b25d4058bc"

@@ -1655,6 +1747,27 @@ rimraf "^3.0.2"

semver "^7.3.5" tar "^6.1.11" +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + "@npmcli/fs@^1.0.0": version "1.1.1" resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257"

@@ -1671,6 +1784,21 @@ dependencies:

mkdirp "^1.0.4" rimraf "^3.0.2" +"@pmmmwh/react-refresh-webpack-plugin@0.5.7": + version "0.5.7" + resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.7.tgz#58f8217ba70069cc6a73f5d7e05e85b458c150e2" + integrity sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q== + dependencies: + ansi-html-community "^0.0.8" + common-path-prefix "^3.0.0" + core-js-pure "^3.8.1" + error-stack-parser "^2.0.6" + find-up "^5.0.0" + html-entities "^2.1.0" + loader-utils "^2.0.0" + schema-utils "^3.0.0" + source-map "^0.7.3" + "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": version "1.1.2" resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf"

@@ -1724,18 +1852,6 @@ version "1.1.0"

resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== -"@purest/config@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@purest/config/-/config-1.0.1.tgz#d7dc6a0629032fd98d4ae5f59bec26ba1465c8e0" - integrity sha512-cEG7U0X26a25SVrHsja5TohAfnkd0jjkjNu0bPX6cQdrSe16j/WeOuX1+TXbkDuZcirIDv7gjHSMe5vfCnW2og== - dependencies: - extend "^3.0.0" - -"@purest/providers@^1.0.2": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@purest/providers/-/providers-1.0.4.tgz#e405971181d903b1c9b513c13d9e670666120396" - integrity sha512-c+OxB8POBW00VG/exqYoh4/ryru48SZzN+uQkg+qK20iDeJ0Gr8nb1QNRuDmtLBJxOkRAze3zk04FctnE3joAw== - "@react-dnd/asap@^4.0.0": version "4.0.1" resolved "https://registry.yarnpkg.com/@react-dnd/asap/-/asap-4.0.1.tgz#5291850a6b58ce6f2da25352a64f1b0674871aab"

@@ -1751,58 +1867,15 @@ version "2.0.0"

resolved "https://registry.yarnpkg.com/@react-dnd/shallowequal/-/shallowequal-2.0.0.tgz#a3031eb54129f2c66b2753f8404266ec7bf67f0a" integrity sha512-Pc/AFTdwZwEKJxFJvlxrSmGe/di+aAOBn60sremrpLo6VI/6cmiUYNNwlI5KNYttg7uypzA3ILPMPgxB2GYZEg== -"@redis/bloom@1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@redis/bloom/-/bloom-1.0.2.tgz#42b82ec399a92db05e29fffcdfd9235a5fc15cdf" - integrity sha512-EBw7Ag1hPgFzdznK2PBblc1kdlj5B5Cw3XwI9/oG7tSn85/HKy3X9xHy/8tm/eNXJYHLXHJL/pkwBpFMVVefkw== - -"@redis/client@1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@redis/client/-/client-1.1.0.tgz#e52a85aee802796ceb14bf27daf9550f51f238b8" - integrity sha512-xO9JDIgzsZYDl3EvFhl6LC52DP3q3GCMUer8zHgKV6qSYsq1zB+pZs9+T80VgcRogrlRYhi4ZlfX6A+bHiBAgA== +"@rushstack/ts-command-line@^4.7.7": + version "4.12.2" + resolved "https://registry.yarnpkg.com/@rushstack/ts-command-line/-/ts-command-line-4.12.2.tgz#59b7450c5d75190778cce8b159c7d7043c32cc4e" + integrity sha512-poBtnumLuWmwmhCEkVAgynWgtnF9Kygekxyp4qtQUSbBrkuyPQTL85c8Cva1YfoUpOdOXxezMAkUt0n5SNKGqw== dependencies: - cluster-key-slot "1.1.0" - generic-pool "3.8.2" - yallist "4.0.0" - -"@redis/graph@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@redis/graph/-/graph-1.0.1.tgz#eabc58ba99cd70d0c907169c02b55497e4ec8a99" - integrity sha512-oDE4myMCJOCVKYMygEMWuriBgqlS5FqdWerikMoJxzmmTUErnTRRgmIDa2VcgytACZMFqpAOWDzops4DOlnkfQ== - -"@redis/json@1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@redis/json/-/json-1.0.3.tgz#a13fde1d22ebff0ae2805cd8e1e70522b08ea866" - integrity sha512-4X0Qv0BzD9Zlb0edkUoau5c1bInWSICqXAGrpwEltkncUwcxJIGEcVryZhLgb0p/3PkKaLIWkjhHRtLe9yiA7Q== - -"@redis/search@1.0.6": - version "1.0.6" - resolved "https://registry.yarnpkg.com/@redis/search/-/search-1.0.6.tgz#53d7451c2783f011ebc48ec4c2891264e0b22f10" - integrity sha512-pP+ZQRis5P21SD6fjyCeLcQdps+LuTzp2wdUbzxEmNhleighDDTD5ck8+cYof+WLec4csZX7ks+BuoMw0RaZrA== - -"@redis/time-series@1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@redis/time-series/-/time-series-1.0.3.tgz#4cfca8e564228c0bddcdf4418cba60c20b224ac4" - integrity sha512-OFp0q4SGrTH0Mruf6oFsHGea58u8vS/iI5+NpYdicaM+7BgqBZH8FFvNZ8rYYLrUO/QRqMq72NpXmxLVNcdmjA== - -"@request/api@^0.6.0": - version "0.6.0" - resolved "https://registry.yarnpkg.com/@request/api/-/api-0.6.0.tgz#e46e4c32e21db9ca72639701cba1ebfee06c1666" - integrity sha512-8V82isKYfLhSerVU1oof5TtYv3vimweF0PBqk313rJVcu7GPzX8B/qH1cTw2fMgjoo3smFbf91p3tS1CiOYczA== - dependencies: - "@request/interface" "^0.1.0" - deep-copy "^1.1.2" - extend "^3.0.0" - -"@request/interface@^0.1.0": - version "0.1.0" - resolved "https://registry.yarnpkg.com/@request/interface/-/interface-0.1.0.tgz#c913504d3dc2810afad555b599aeaec2cc4c6768" - integrity sha512-eU+ccrwfht1uqoYN/fpDnjYFHm7MJJDCkUbEZHvVTdUR6PqDvfNuYkhRIQ/peIm3Jzq94duZgX5l2yTEToXfbw== - -"@sailshq/lodash@^3.10.2", "@sailshq/lodash@^3.10.3": - version "3.10.4" - resolved "https://registry.yarnpkg.com/@sailshq/lodash/-/lodash-3.10.4.tgz#2299648a81a67f4c6ee222c6cf8e261bd9c3fa50" - integrity sha512-YXJqp9gdHcZKAmBY/WnwFpPtNQp2huD/ME2YMurH2YHJvxrVzYsmpKw/pb7yINArRpp8E++fwbQd3ajYXGA45Q== + "@types/argparse" "1.0.38" + argparse "~1.0.9" + colors "~1.2.1" + string-argv "~0.3.1" "@selderee/plugin-htmlparser2@^0.6.0": version "0.6.0"

@@ -1812,171 +1885,86 @@ dependencies:

domhandler "^4.2.0" selderee "^0.6.0" -"@sendgrid/client@^6.4.0": - version "6.5.5" - resolved "https://registry.yarnpkg.com/@sendgrid/client/-/client-6.5.5.tgz#66cf569445d98a795998a894bb432a9939ead7c3" - integrity sha512-Nbfgo94gbWSL8PIgJfuHoifyOJJepvV8NQkkglctAEfb1hyozKhrzE6v1kPG/z4j0RodaTtXD5LJj/t0q/VhLA== +"@sendgrid/client@^7.7.0": + version "7.7.0" + resolved "https://registry.yarnpkg.com/@sendgrid/client/-/client-7.7.0.tgz#f8f67abd604205a0d0b1af091b61517ef465fdbf" + integrity sha512-SxH+y8jeAQSnDavrTD0uGDXYIIkFylCo+eDofVmZLQ0f862nnqbC3Vd1ej6b7Le7lboyzQF6F7Fodv02rYspuA== dependencies: - "@sendgrid/helpers" "^6.5.5" - "@types/request" "^2.48.4" - request "^2.88.0" + "@sendgrid/helpers" "^7.7.0" + axios "^0.26.0" -"@sendgrid/helpers@^6.4.0", "@sendgrid/helpers@^6.5.5": - version "6.5.5" - resolved "https://registry.yarnpkg.com/@sendgrid/helpers/-/helpers-6.5.5.tgz#de6de9b94794fbf834b4f66a7d44af84bf736459" - integrity sha512-uRFEanalfss5hDsuzVXZ1wm7i7eEXHh1py80piOXjobiQ+MxmtR19EU+gDSXZ+uMcEehBGhxnb7QDNN0q65qig== +"@sendgrid/helpers@^7.7.0": + version "7.7.0" + resolved "https://registry.yarnpkg.com/@sendgrid/helpers/-/helpers-7.7.0.tgz#93fb4b6e2f0dc65080440d6a784cc93e8e148757" + integrity sha512-3AsAxfN3GDBcXoZ/y1mzAAbKzTtUZ5+ZrHOmWQ279AuaFXUNCh9bPnRpN504bgveTqoW+11IzPg3I0WVgDINpw== dependencies: - chalk "^2.0.1" deepmerge "^4.2.2" -"@sendgrid/mail@6.4.0": - version "6.4.0" - resolved "https://registry.yarnpkg.com/@sendgrid/mail/-/mail-6.4.0.tgz#21d022f7fae57dcdc5910eeca5ed318df21e5f51" - integrity sha512-pVzbqbxhZ4FUN6iSIksRLtyXRPurrcee1i0noPDStDCLlHVwUR+TofeeKIFWGpIvbbk5UR6S6iV/U5ie8Kdblw== - dependencies: - "@sendgrid/client" "^6.4.0" - "@sendgrid/helpers" "^6.4.0" - -"@sentry/core@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz#6b203664f69e75106ee8b5a2fe1d717379b331f3" - integrity sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg== +"@sentry/core@6.19.6": + version "6.19.6" + resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.19.6.tgz#7d4649d0148b5d0be1358ab02e2f869bf7363e9a" + integrity sha512-biEotGRr44/vBCOegkTfC9rwqaqRKIpFljKGyYU6/NtzMRooktqOhjmjmItNCMRknArdeaQwA8lk2jcZDXX3Og== dependencies: - "@sentry/hub" "5.30.0" - "@sentry/minimal" "5.30.0" - "@sentry/types" "5.30.0" - "@sentry/utils" "5.30.0" + "@sentry/hub" "6.19.6" + "@sentry/minimal" "6.19.6" + "@sentry/types" "6.19.6" + "@sentry/utils" "6.19.6" tslib "^1.9.3" -"@sentry/core@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.3.0.tgz#3b8db24918a00c0b77f1663fc6d9be925f66bb3e" - integrity sha512-voot/lJ9gRXB6bx6tVqbEbD6jOd4Sx6Rfmm6pzfpom9C0q+fjIZTatTLq8GdXj8DzxaH1MBDSwtaq/eC3NqYpA== +"@sentry/hub@6.19.6": + version "6.19.6" + resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.19.6.tgz#ada83ceca0827c49534edfaba018221bc1eb75e1" + integrity sha512-PuEOBZxvx3bjxcXmWWZfWXG+orojQiWzv9LQXjIgroVMKM/GG4QtZbnWl1hOckUj7WtKNl4hEGO2g/6PyCV/vA== dependencies: - "@sentry/hub" "6.3.0" - "@sentry/minimal" "6.3.0" - "@sentry/types" "6.3.0" - "@sentry/utils" "6.3.0" + "@sentry/types" "6.19.6" + "@sentry/utils" "6.19.6" tslib "^1.9.3" -"@sentry/hub@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-5.30.0.tgz#2453be9b9cb903404366e198bd30c7ca74cdc100" - integrity sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ== +"@sentry/minimal@6.19.6": + version "6.19.6" + resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.19.6.tgz#b6cced3708e25d322039e68ebdf8fadfa445bf7d" + integrity sha512-T1NKcv+HTlmd8EbzUgnGPl4ySQGHWMCyZ8a8kXVMZOPDzphN3fVIzkYzWmSftCWp0rpabXPt9aRF2mfBKU+mAQ== dependencies: - "@sentry/types" "5.30.0" - "@sentry/utils" "5.30.0" - tslib "^1.9.3" - -"@sentry/hub@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.3.0.tgz#4225b3b0f31fe47f24d80753b257a4b57de5d651" - integrity sha512-lAnW3Om66t9IR+t1wya1NpOF9lGbvYG6Ca8wxJJGJ1t2PxKwyxpZKzRx0q8M1QFhlZ5cETCzxmM7lBEZ4QVCBg== - dependencies: - "@sentry/types" "6.3.0" - "@sentry/utils" "6.3.0" - tslib "^1.9.3" - -"@sentry/minimal@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-5.30.0.tgz#ce3d3a6a273428e0084adcb800bc12e72d34637b" - integrity sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw== - dependencies: - "@sentry/hub" "5.30.0" - "@sentry/types" "5.30.0" + "@sentry/hub" "6.19.6" + "@sentry/types" "6.19.6" tslib "^1.9.3" -"@sentry/minimal@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.3.0.tgz#e64d87c92a4676a11168672a96589f46985f2b22" - integrity sha512-ZdPUwdPQkaKroy67NkwQRqmnfKyd/C1OyouM9IqYKyBjAInjOijwwc/Rd91PMHalvCOGfp1scNZYbZ+YFs/qQQ== +"@sentry/node@6.19.6": + version "6.19.6" + resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.19.6.tgz#d63c4ffcf0150b4175a2e4e5021b53af46e5946f" + integrity sha512-kHQMfsy40ZxxdS9zMPmXCOOLWOJbQj6/aVSHt/L1QthYcgkAi7NJQNXnQIPWQDe8eP3DfNIWM7dc446coqjXrQ== dependencies: - "@sentry/hub" "6.3.0" - "@sentry/types" "6.3.0" - tslib "^1.9.3" - -"@sentry/node@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.3.0.tgz#8d55f32930d531b9a2a3b594754392925b1e3816" - integrity sha512-n3RemuJsMpSbrIopJ2TxeECwQy/Dvho59SePAVQzK0s6dpG3Ak6YWQSh1XESbFbgLi4KzkbMdeBgznmmEbZPgg== - dependencies: - "@sentry/core" "6.3.0" - "@sentry/hub" "6.3.0" - "@sentry/tracing" "6.3.0" - "@sentry/types" "6.3.0" - "@sentry/utils" "6.3.0" + "@sentry/core" "6.19.6" + "@sentry/hub" "6.19.6" + "@sentry/types" "6.19.6" + "@sentry/utils" "6.19.6" cookie "^0.4.1" https-proxy-agent "^5.0.0" lru_map "^0.3.3" tslib "^1.9.3" -"@sentry/node@^5.26.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@sentry/node/-/node-5.30.0.tgz#4ca479e799b1021285d7fe12ac0858951c11cd48" - integrity sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg== - dependencies: - "@sentry/core" "5.30.0" - "@sentry/hub" "5.30.0" - "@sentry/tracing" "5.30.0" - "@sentry/types" "5.30.0" - "@sentry/utils" "5.30.0" - cookie "^0.4.1" - https-proxy-agent "^5.0.0" - lru_map "^0.3.3" - tslib "^1.9.3" - -"@sentry/tracing@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-5.30.0.tgz#501d21f00c3f3be7f7635d8710da70d9419d4e1f" - integrity sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw== - dependencies: - "@sentry/hub" "5.30.0" - "@sentry/minimal" "5.30.0" - "@sentry/types" "5.30.0" - "@sentry/utils" "5.30.0" - tslib "^1.9.3" - -"@sentry/tracing@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.3.0.tgz#5da2ce67bb5f9cf4f3aa9b6dff06089478f0c501" - integrity sha512-3UNGgQOrDKBoDqLc4vt+0n27Zv3lbNEoCbBydq4IvGfuYq7ozWMsaTcelsotMsd4ckDuOEh8V/nJTqrDjvL76g== - dependencies: - "@sentry/hub" "6.3.0" - "@sentry/minimal" "6.3.0" - "@sentry/types" "6.3.0" - "@sentry/utils" "6.3.0" - tslib "^1.9.3" - -"@sentry/types@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@sentry/types/-/types-5.30.0.tgz#19709bbe12a1a0115bc790b8942917da5636f402" - integrity sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw== - -"@sentry/types@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.3.0.tgz#919cc1870f34b7126546c77e3c695052795d3add" - integrity sha512-xWyCYDmFPjS5ex60kxOOHbHEs4vs00qHbm0iShQfjl4OSg9S2azkcWofDmX8Xbn0FSOUXgdPCjNJW1B0bPVhCA== +"@sentry/types@6.19.6": + version "6.19.6" + resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.19.6.tgz#70513f9dca05d23d7ab9c2a6cb08d4db6763ca67" + integrity sha512-QH34LMJidEUPZK78l+Frt3AaVFJhEmIi05Zf8WHd9/iTt+OqvCHBgq49DDr1FWFqyYWm/QgW/3bIoikFpfsXyQ== -"@sentry/utils@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.30.0.tgz#9a5bd7ccff85ccfe7856d493bffa64cabc41e980" - integrity sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww== +"@sentry/utils@6.19.6": + version "6.19.6" + resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.19.6.tgz#2ddc9ef036c3847084c43d0e5a55e4646bdf9021" + integrity sha512-fAMWcsguL0632eWrROp/vhPgI7sBj/JROWVPzpabwVkm9z3m1rQm6iLFn4qfkZL8Ozy6NVZPXOQ7EXmeU24byg== dependencies: - "@sentry/types" "5.30.0" + "@sentry/types" "6.19.6" tslib "^1.9.3" -"@sentry/utils@6.3.0": - version "6.3.0" - resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.3.0.tgz#e28645b6d4acd03a478e58bfe112ea02f81e94a0" - integrity sha512-NZzw4oLelgvCsVBG2e+ZtFtaBvgA7rZYtcGFbZTphhAlYoJ6JMCQUzYk0iwJK79yR1quh510x4UE0jynvvToWg== - dependencies: - "@sentry/types" "6.3.0" - tslib "^1.9.3" +"@simov/deep-extend@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@simov/deep-extend/-/deep-extend-1.0.0.tgz#dff17d38305614e296eb80bf4898b9d10b061325" + integrity sha512-Arv8/ZPcdKAMJnNF8cks35mPq1y3JnwH1lWpfWDKlJoj+Vw2xmA4+oL7m9GVHTgdX0mGFR7bCPTBTGbxhnfJJw== -"@sindresorhus/is@^0.14.0": - version "0.14.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" - integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== +"@sindresorhus/is@^4.0.0": + version "4.6.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" + integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== "@sindresorhus/slugify@1.1.0": version "1.1.0"

@@ -2008,12 +1996,435 @@ integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==

dependencies: "@sinonjs/commons" "^1.7.0" -"@szmarczak/http-timer@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" - integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== +"@strapi/admin@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/admin/-/admin-4.3.4.tgz#68f79534487ac13e80b40ddfa191a089cee6d963" + integrity sha512-rHQcvYJZI6IZuEIFzFgICwHiVGzRGppC4GXk4+2os/9XdbncxbwdQRr3cvxfXUPVjiESvRJntUe4nbTr3j3Sxw== + dependencies: + "@babel/core" "7.18.10" + "@babel/plugin-transform-runtime" "7.18.10" + "@babel/polyfill" "7.12.1" + "@babel/preset-env" "7.18.10" + "@babel/preset-react" "7.18.6" + "@babel/runtime" "7.18.9" + "@casl/ability" "^5.4.3" + "@fingerprintjs/fingerprintjs" "3.3.3" + "@fortawesome/fontawesome-free" "^5.15.3" + "@fortawesome/fontawesome-svg-core" "^1.2.35" + "@fortawesome/free-brands-svg-icons" "^5.15.3" + "@fortawesome/free-solid-svg-icons" "^5.15.3" + "@fortawesome/react-fontawesome" "^0.2.0" + "@pmmmwh/react-refresh-webpack-plugin" "0.5.7" + "@strapi/babel-plugin-switch-ee-ce" "4.3.4" + "@strapi/design-system" "1.2.1" + "@strapi/helper-plugin" "4.3.4" + "@strapi/icons" "1.2.1" + "@strapi/typescript-utils" "4.3.4" + "@strapi/utils" "4.3.4" + axios "0.24.0" + babel-loader "8.2.5" + babel-plugin-styled-components "2.0.2" + bcryptjs "2.4.3" + chalk "^4.1.1" + chokidar "^3.5.1" + codemirror "^5.65.6" + cross-env "^7.0.3" + css-loader "6.7.1" + date-fns "2.28.0" + dotenv "8.5.1" + esbuild-loader "^2.19.0" + execa "^1.0.0" + fast-deep-equal "3.1.3" + font-awesome "^4.7.0" + fork-ts-checker-webpack-plugin "7.2.1" + formik "^2.2.6" + fs-extra "10.0.0" + highlight.js "^10.4.1" + history "^4.9.0" + hoist-non-react-statics "^3.3.0" + html-loader "3.1.2" + html-webpack-plugin "5.5.0" + immer "9.0.15" + invariant "^2.2.4" + js-cookie "2.2.1" + jsonwebtoken "8.5.1" + koa-compose "4.1.0" + koa-passport "5.0.0" + koa-static "5.0.0" + lodash "4.17.21" + markdown-it "^12.3.2" + markdown-it-abbr "^1.0.4" + markdown-it-container "^3.0.0" + markdown-it-deflist "^2.1.0" + markdown-it-emoji "^2.0.0" + markdown-it-footnote "^3.0.3" + markdown-it-ins "^3.0.1" + markdown-it-mark "^3.0.1" + markdown-it-sub "^1.0.0" + markdown-it-sup "1.0.0" + match-sorter "^4.0.2" + mini-css-extract-plugin "2.4.4" + node-polyfill-webpack-plugin "1.1.4" + p-map "4.0.0" + passport-local "1.0.0" + prop-types "^15.7.2" + qs "6.10.1" + react "^17.0.2" + react-copy-to-clipboard "^5.1.0" + react-dnd "^14.0.2" + react-dnd-html5-backend "^14.0.0" + react-dom "^17.0.2" + react-error-boundary "3.1.1" + react-fast-compare "^3.2.0" + react-helmet "^6.1.0" + react-intl "5.20.2" + react-query "3.24.3" + react-redux "7.2.8" + react-refresh "0.11.0" + react-router "5.2.0" + react-router-dom "5.2.0" + react-window "1.8.7" + redux "^4.0.1" + redux-saga "^0.16.0" + reselect "^4.0.0" + rimraf "3.0.2" + sanitize-html "2.7.0" + semver "7.3.7" + sift "13.5.4" + style-loader "3.3.1" + styled-components "5.3.3" + webpack "^5.73.0" + webpack-cli "^4.10.0" + webpack-dev-server "^4.9.3" + webpackbar "^5.0.2" + yup "^0.32.9" + +"@strapi/babel-plugin-switch-ee-ce@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/babel-plugin-switch-ee-ce/-/babel-plugin-switch-ee-ce-4.3.4.tgz#c4fb02209dbf2ec78234ad434a7e6b60d2f09f31" + integrity sha512-oljisPRgnGV6Qlf7UtWNd3mC9rg4iMxJIy2Xab5zT7TO026+40ig6ntA9pq3vs1hN5PdphGi/0UZ3TTKYCfzww== + +"@strapi/database@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/database/-/database-4.3.4.tgz#1f2ab7157699ea0ea089a875106eff646b34060a" + integrity sha512-3OxmhkVS69OQytDBRb89mloy5JDaTzIVPJZcMledAHdOkZW9PZUSkVBLr7rL73WHHdkDDg6deB+2P51XRAaIHw== + dependencies: + date-fns "2.28.0" + debug "4.3.1" + fs-extra "10.0.0" + knex "1.0.7" + lodash "4.17.21" + umzug "3.1.1" + +"@strapi/design-system@1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@strapi/design-system/-/design-system-1.2.1.tgz#d0e611709ab10930e8723960813b60ce1ef80890" + integrity sha512-Jrlk3xzwM+Cskt1hjgYy0MwN0NQ7lramBoS6lAvHW1AFOGv2vnshU+jcZNXtIYU1N7/Xjko4oimBWXxXry0g/Q== + dependencies: + "@internationalized/number" "^3.1.1" + compute-scroll-into-view "^1.0.17" + prop-types "^15.7.2" + +"@strapi/generate-new@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/generate-new/-/generate-new-4.3.4.tgz#2131032e84a21e1ae13bb16ab55c28a2b9bb3232" + integrity sha512-Dov4N47BepUtbXFyZlyGszLiwTiqwsrFzqnSHcjG47BTYTQaj4o7JwCu4sbokxJI94TJ5RBFVFQeTLFnHBvWiA== + dependencies: + "@sentry/node" "6.19.6" + chalk "^4.1.1" + execa "^1.0.0" + fs-extra "10.0.0" + inquirer "8.2.4" + lodash "4.17.21" + node-fetch "^2.6.1" + node-machine-id "^1.1.10" + ora "^5.4.1" + tar "6.1.11" + uuid "^8.3.2" + +"@strapi/generators@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/generators/-/generators-4.3.4.tgz#be60a482b23dd4b5346595fb65596f5ceed8f5a2" + integrity sha512-yQ9s0WDbFVFb+96pqPfvi+NWzJMlLAURR0fCRblXGF09W4xHOlqFe99qswDXlcJXnM/MXlBcwj0VlI2xvukmZg== + dependencies: + "@sindresorhus/slugify" "1.1.0" + "@strapi/typescript-utils" "4.3.4" + "@strapi/utils" "4.3.4" + chalk "4.1.2" + fs-extra "10.0.0" + node-plop "0.26.3" + plop "2.7.6" + pluralize "8.0.0" + +"@strapi/helper-plugin@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/helper-plugin/-/helper-plugin-4.3.4.tgz#16e2527a7d0b5b1aa0e5737fb0cb6213bd45558a" + integrity sha512-j7oHciyETS5NkozhCPZpcgz+b7IxgOtL/V1Ifr6ftPz/vhJqZTxODwZ/NF6cTEhxxdj0opQVCbvN0HAOz4PJYw== + dependencies: + "@fortawesome/fontawesome-free" "^5.15.2" + "@fortawesome/fontawesome-svg-core" "^1.2.35" + "@fortawesome/free-brands-svg-icons" "^5.15.2" + "@fortawesome/free-solid-svg-icons" "^5.15.3" + "@fortawesome/react-fontawesome" "^0.2.0" + axios "0.25.0" + formik "2.2.9" + invariant "^2.2.1" + lodash "4.17.21" + match-sorter "^4.0.2" + react "^17.0.2" + react-dom "^17.0.2" + react-helmet "^6.1.0" + react-intl "5.20.2" + react-router "^5.2.0" + react-router-dom "5.2.0" + react-select "4.0.2" + styled-components "5.3.3" + whatwg-fetch "^3.6.2" + +"@strapi/icons@1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@strapi/icons/-/icons-1.2.1.tgz#780e74a8284bc18c268e61b37ff8a1b75d49c9b3" + integrity sha512-MJ3GAHfsKwviR/ZxfCs7AA2uZ4nZ7It9NT9JTUOatR3H0ehG8TIh1ky7NgwN26KPbqBWHqXd1zSb/Wbpo5KqVQ== + dependencies: + rimraf "^3.0.2" + +"@strapi/logger@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/logger/-/logger-4.3.4.tgz#03f25295df17298d51e0f0cf2f0b9225c73200f1" + integrity sha512-UAM3unqHpeA83jM7DWTzbqgkfiogo5f/5sMy+oppsgODIS120XLTILIumR0ZwLny7aA12b+I7v5WD9FLneeqnA== + dependencies: + lodash "4.17.21" + winston "3.3.3" + +"@strapi/plugin-content-manager@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/plugin-content-manager/-/plugin-content-manager-4.3.4.tgz#d9100dec0409d947120797c0776724ea2942451d" + integrity sha512-ILfBmBU4uIiLAvwMIX7vx20EgB9iBs6CKd0v+9XIxVlbcuzjGKY15x2n+T9ciHZy4htv1hHijaq5tKZopR0F6A== + dependencies: + "@sindresorhus/slugify" "1.1.0" + "@strapi/utils" "4.3.4" + lodash "4.17.21" + +"@strapi/plugin-content-type-builder@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/plugin-content-type-builder/-/plugin-content-type-builder-4.3.4.tgz#1d29f1bce3ab2a6d24e82bab4c08460388d4fdbc" + integrity sha512-NI6qbKaFRZd4y1/eYymELOdrZ6JCfbahBpSSokW7Li27Nk9ilNfjAlY/im2USOR6/YEuiUiEmCgXvyowvB5vng== + dependencies: + "@sindresorhus/slugify" "1.1.0" + "@strapi/generators" "4.3.4" + "@strapi/helper-plugin" "4.3.4" + "@strapi/utils" "4.3.4" + fs-extra "10.0.0" + lodash "4.17.21" + pluralize "^8.0.0" + react "^17.0.2" + react-dom "^17.0.2" + react-intl "5.20.2" + react-redux "7.2.8" + react-router "^5.2.0" + react-router-dom "5.2.0" + redux "^4.0.1" + reselect "^4.0.0" + yup "^0.32.9" + +"@strapi/plugin-email@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/plugin-email/-/plugin-email-4.3.4.tgz#d185fc4645f80f2421b04f57bd196960195b3b24" + integrity sha512-rCnjuXL2vu36XT2WI3cmmydc5QZ0G11WUnRO80PoJqnTnfeaQmuWhjedXvqMi/aw89VHhS+7w/KYeLElug94PA== + dependencies: + "@strapi/provider-email-sendmail" "4.3.4" + "@strapi/utils" "4.3.4" + lodash "4.17.21" + +"@strapi/plugin-graphql@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/plugin-graphql/-/plugin-graphql-4.3.4.tgz#1d0ee4d3874b5f77b922ec8a0855e18294fbc655" + integrity sha512-u+eb2bNc/VHmlGP279UCn2yvK8d5nWwvMbb1J60KcRtbxTmMPPcgT3BF8G+38Fky0tpBVwEYPEwOnjK+2Dpjzw== + dependencies: + "@graphql-tools/schema" "8.1.2" + "@graphql-tools/utils" "^8.9.0" + "@strapi/utils" "4.3.4" + apollo-server-core "3.1.2" + apollo-server-koa "3.10.0" + glob "^7.1.7" + graphql "^15.5.1" + graphql-depth-limit "^1.1.0" + graphql-playground-middleware-koa "^1.6.21" + graphql-scalars "1.17.0" + graphql-upload "^13.0.0" + koa-compose "^4.1.0" + lodash "4.17.21" + nexus "1.2.0" + pluralize "^8.0.0" + subscriptions-transport-ws "0.9.19" + +"@strapi/plugin-i18n@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/plugin-i18n/-/plugin-i18n-4.3.4.tgz#09bbac2c315f3bdd5056404a6bc20443024e6db4" + integrity sha512-A1N/adkNZPMHLdSbZxT/VJ6Mey7J3Q87+PsdaoYQnXcHgUmvWSzaa8/EwlajNRraykjI5jGfGUHlzxA8IHAK7g== + dependencies: + "@strapi/utils" "4.3.4" + lodash "4.17.21" + +"@strapi/plugin-sentry@^4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/plugin-sentry/-/plugin-sentry-4.3.4.tgz#4bd297c96b1839c25291214c296dbf5ed9bbd773" + integrity sha512-MKNfVWR2iPRea+22cWr88/h6gHPBbKl3l8e7C0ErApz6nXJwcw3AiXHA9Q79nhd6KU7q2yeyL5hS+fnUq7S9Dw== + dependencies: + "@sentry/node" "6.19.6" + +"@strapi/plugin-upload@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/plugin-upload/-/plugin-upload-4.3.4.tgz#324bb79f6e18c784d257ba84815f45a6a332fe75" + integrity sha512-N1/1LSvXmz51EXY4YFcJZrPxEomaEvP01fw9o1gG/yXIdi0dwrtfUy5xuWMHKkX6yPIaIyhjn2Bnfquc1KHLNA== + dependencies: + "@strapi/helper-plugin" "4.3.4" + "@strapi/provider-upload-local" "4.3.4" + "@strapi/utils" "4.3.4" + byte-size "7.0.1" + cropperjs "1.5.12" + date-fns "2.28.0" + fs-extra "10.0.0" + immer "9.0.15" + koa-range "0.3.0" + koa-static "5.0.0" + lodash "4.17.21" + mime-types "2.1.35" + react "^17.0.2" + react-copy-to-clipboard "^5.1.0" + react-dom "^17.0.2" + react-intl "5.20.2" + react-redux "7.2.8" + react-router "^5.2.0" + react-router-dom "5.2.0" + sharp "0.30.7" + +"@strapi/plugin-users-permissions@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/plugin-users-permissions/-/plugin-users-permissions-4.3.4.tgz#2fc30716948b23dc9509d4ccdf66829af57ae7a2" + integrity sha512-2FU+dktdQVqH39qXjQ3MqAq7c6JyqK/aB6EySZD1jUL4ZBkzwkp4N9Vq/Aj+nay3je4WtLza8bdY/60oBlpyWw== + dependencies: + "@strapi/helper-plugin" "4.3.4" + "@strapi/utils" "4.3.4" + bcryptjs "2.4.3" + grant-koa "5.4.8" + jsonwebtoken "^8.1.0" + koa2-ratelimit "^1.1.1" + lodash "4.17.21" + purest "4.0.2" + react "^17.0.2" + react-dom "^17.0.2" + react-intl "5.20.2" + react-redux "7.2.8" + react-router "^5.2.0" + react-router-dom "5.2.0" + redux-saga "^0.16.0" + request "^2.83.0" + url-join "4.0.1" + +"@strapi/provider-email-sendmail@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/provider-email-sendmail/-/provider-email-sendmail-4.3.4.tgz#19ee701e09c1e3f936cbed9e0bb291ea76d3d4a5" + integrity sha512-9JTNLCRl5Dl1gVfQaelxcGex6j2+HLZjNw+oIl0XynLSg/VpcEmHK/6kB7vzIGo/oDMa3EtFWp8Ff0MDi9qQ+A== + dependencies: + "@strapi/utils" "4.3.4" + sendmail "^1.6.1" + +"@strapi/provider-upload-local@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/provider-upload-local/-/provider-upload-local-4.3.4.tgz#7705c31bf2b49a2f05be8f7bdd7f82303366a1d4" + integrity sha512-n7LX/gsOtKTJvFWeZe/c8P32flRnv2be70sYnAfdnZTncRzVGllLGI95Q9aOpmSWu4k30zIvERs+YF3pGtZ9Pg== dependencies: - defer-to-connect "^1.0.1" + "@strapi/utils" "4.3.4" + fs-extra "10.0.0" + +"@strapi/strapi@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/strapi/-/strapi-4.3.4.tgz#8756c5e81b5d1affa6792e73c9b31923139290cd" + integrity sha512-2RqLtPK4WV0Hf2pnkJwpq9sFQXZEER9EtM2mOjZ4DQfYrhXjol24FkkWyN/nwKlAu4EYcG8SyqR40ZEsTJITxA== + dependencies: + "@koa/cors" "3.1.0" + "@koa/router" "10.1.1" + "@strapi/admin" "4.3.4" + "@strapi/database" "4.3.4" + "@strapi/generate-new" "4.3.4" + "@strapi/generators" "4.3.4" + "@strapi/logger" "4.3.4" + "@strapi/plugin-content-manager" "4.3.4" + "@strapi/plugin-content-type-builder" "4.3.4" + "@strapi/plugin-email" "4.3.4" + "@strapi/plugin-upload" "4.3.4" + "@strapi/typescript-utils" "4.3.4" + "@strapi/utils" "4.3.4" + bcryptjs "2.4.3" + boxen "5.1.2" + chalk "4.1.2" + chokidar "3.5.2" + ci-info "3.3.2" + cli-table3 "0.6.2" + commander "8.2.0" + configstore "5.0.1" + debug "4.3.2" + delegates "1.0.0" + dotenv "10.0.0" + execa "5.1.1" + fs-extra "10.0.0" + glob "7.2.0" + http-errors "1.8.1" + inquirer "8.2.4" + is-docker "2.2.1" + koa "2.13.4" + koa-body "4.2.0" + koa-compose "4.1.0" + koa-compress "5.1.0" + koa-favicon "2.1.0" + koa-helmet "6.1.0" + koa-ip "2.1.0" + koa-session "6.2.0" + koa-static "5.0.0" + lodash "4.17.21" + mime-types "2.1.35" + node-fetch "2.6.7" + node-machine-id "1.1.12" + node-schedule "2.1.0" + open "8.4.0" + ora "5.4.1" + package-json "7.0.0" + qs "6.10.1" + resolve-cwd "3.0.0" + semver "7.3.7" + statuses "2.0.1" + uuid "^8.3.2" + +"@strapi/typescript-utils@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/typescript-utils/-/typescript-utils-4.3.4.tgz#1cabf813db416c1b9862fda3725d50d0b8bf4a99" + integrity sha512-w9mEor0QG8vT9SXZKPV73xInlojW8w1WpaMIeQ3oRkGKc5f3JnOnkvJraKFli/CojOGzYypoHGtkEe1jtLKl5g== + dependencies: + chalk "4.1.2" + cli-table3 "0.6.2" + fs-extra "10.0.1" + lodash "4.17.21" + prettier "2.7.1" + typescript "4.6.2" + +"@strapi/utils@4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@strapi/utils/-/utils-4.3.4.tgz#8cd150c4ad356a2ea33aed7f41a4e6bfef7aeff1" + integrity sha512-7qQL6SQ78RKJgtDxaIcL/aDci8F0R2AgclLry30BcCHb/qRNv9IMIBQ0z/v+lHKP7eVU5rp77nF+RjbpKp3GcQ== + dependencies: + "@sindresorhus/slugify" "1.1.0" + date-fns "2.28.0" + http-errors "1.8.1" + lodash "4.17.21" + yup "0.32.9" + +"@szmarczak/http-timer@^4.0.5": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz#b4a914bb62e7c272d4e5989fe4440f812ab1d807" + integrity sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w== + dependencies: + defer-to-connect "^2.0.0" "@tootallnate/once@1": version "1.1.2"

@@ -2026,6 +2437,11 @@ resolved "https://registry.yarnpkg.com/@types/accepts/-/accepts-1.3.5.tgz#c34bec115cfc746e04fe5a059df4ce7e7b391575"

integrity sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ== dependencies: "@types/node" "*" + +"@types/argparse@1.0.38": + version "1.0.38" + resolved "https://registry.yarnpkg.com/@types/argparse/-/argparse-1.0.38.tgz#a81fd8606d481f873a3800c6ebae4f1d768a56a9" + integrity sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA== "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": version "7.1.19"

@@ -2054,9 +2470,9 @@ "@babel/parser" "^7.1.0"

"@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": - version "7.17.1" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.17.1.tgz#1a0e73e8c28c7e832656db372b779bfd2ef37314" - integrity sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA== + version "7.18.0" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.0.tgz#8134fd78cb39567465be65b9fdc16d378095f41f" + integrity sha512-v4Vwdko+pgymgS+A2UIaJru93zQd85vIGWObM5ekZNdXCKtDYqATlEYnWgfo86Q6I1Lh0oXnksDnMU1cwmlPDw== dependencies: "@babel/types" "^7.3.0"

@@ -2068,24 +2484,30 @@ dependencies:

"@types/connect" "*" "@types/node" "*" -"@types/bson@*": - version "4.2.0" - resolved "https://registry.yarnpkg.com/@types/bson/-/bson-4.2.0.tgz#a2f71e933ff54b2c3bf267b67fa221e295a33337" - integrity sha512-ELCPqAdroMdcuxqwMgUpifQyRoTpyYCNr1V9xKyF40VsBobsj+BbWNRvwGchMgBPGqkw655ypkjj2MEF5ywVwg== +"@types/bonjour@^3.5.9": + version "3.5.10" + resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275" + integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== dependencies: - bson "*" + "@types/node" "*" -"@types/bson@1.x || 4.0.x": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@types/bson/-/bson-4.0.5.tgz#9e0e1d1a6f8866483f96868a9b33bc804926b1fc" - integrity sha512-vVLwMUqhYJSQ/WKcE60eFqcyuWse5fGH+NMAXHuKrUAPoryq3ATxk5o4bgYNtg5aOM4APVg7Hnb3ASqUYG0PKg== +"@types/cacheable-request@^6.0.1": + version "6.0.2" + resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.2.tgz#c324da0197de0a98a2312156536ae262429ff6b9" + integrity sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA== dependencies: + "@types/http-cache-semantics" "*" + "@types/keyv" "*" "@types/node" "*" + "@types/responselike" "*" -"@types/caseless@*": - version "0.12.2" - resolved "https://registry.yarnpkg.com/@types/caseless/-/caseless-0.12.2.tgz#f65d3d6389e01eeb458bd54dc8f52b95a9463bc8" - integrity sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w== +"@types/connect-history-api-fallback@^1.3.5": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz#d1f7a8a09d0ed5a57aee5ae9c18ab9b803205dae" + integrity sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw== + dependencies: + "@types/express-serve-static-core" "*" + "@types/node" "*" "@types/connect@*": version "3.4.35"

@@ -2109,16 +2531,42 @@ "@types/express" "*"

"@types/keygrip" "*" "@types/node" "*" -"@types/express-serve-static-core@^4.17.18": - version "4.17.29" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz#2a1795ea8e9e9c91b4a4bbe475034b20c1ec711c" - integrity sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q== +"@types/eslint-scope@^3.7.3": + version "3.7.4" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" + integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + +"@types/eslint@*": + version "8.4.6" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.6.tgz#7976f054c1bccfcf514bff0564c0c41df5c08207" + integrity sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2" + integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ== + +"@types/estree@^0.0.51": + version "0.0.51" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40" + integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== + +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18": + version "4.17.30" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz#0f2f99617fa8f9696170c46152ccf7500b34ac04" + integrity sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ== dependencies: "@types/node" "*" "@types/qs" "*" "@types/range-parser" "*" -"@types/express@*": +"@types/express@*", "@types/express@^4.17.13": version "4.17.13" resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.13.tgz#a76e2995728999bab51a33fabce1d705a3709034" integrity sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==

@@ -2128,17 +2576,15 @@ "@types/express-serve-static-core" "^4.17.18"

"@types/qs" "*" "@types/serve-static" "*" +"@types/fined@*": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@types/fined/-/fined-1.1.3.tgz#83f03e8f0a8d3673dfcafb18fce3571f6250e1bc" + integrity sha512-CWYnSRnun3CGbt6taXeVo2lCbuaj4mchVJ4UF/BdU5TSuIn3AmS13pGMwCsBUoehGbhZrBrpNJZSZI5EVilXww== + "@types/formidable@^1.0.31": version "1.2.5" resolved "https://registry.yarnpkg.com/@types/formidable/-/formidable-1.2.5.tgz#561d026e5f09179e5c8ef7b31e8f4652e11abe4c" integrity sha512-zu3mQJa4hDNubEMViSj937602XdDGzK7Q5pJ5QmLUbNxclbo9tZGt5jtwM352ssZ+pqo5V4H14TBvT/ALqQQcA== - dependencies: - "@types/node" "*" - -"@types/fs-capacitor@*": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@types/fs-capacitor/-/fs-capacitor-2.0.0.tgz#17113e25817f584f58100fb7a08eed288b81956e" - integrity sha512-FKVPOCFbhCvZxpVAMhdBdTfVfXUpsh15wFHgqOKxh9N9vzWZVuWCSijZ5T4U34XYNnuj2oduh6xcs1i+LPI+BQ== dependencies: "@types/node" "*"

@@ -2172,20 +2618,47 @@ dependencies:

"@types/react" "*" hoist-non-react-statics "^3.3.0" +"@types/html-minifier-terser@^6.0.0": + version "6.1.0" + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" + integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== + "@types/http-assert@*": version "1.5.3" resolved "https://registry.yarnpkg.com/@types/http-assert/-/http-assert-1.5.3.tgz#ef8e3d1a8d46c387f04ab0f2e8ab8cb0c5078661" integrity sha512-FyAOrDuQmBi8/or3ns4rwPno7/9tJTijVW6aQQjK02+kOQ8zmoNg2XJtAuQhvQcy1ASJq38wirX5//9J1EqoUA== + +"@types/http-cache-semantics@*": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" + integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== "@types/http-errors@*": version "1.8.2" resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-1.8.2.tgz#7315b4c4c54f82d13fa61c228ec5c2ea5cc9e0e1" integrity sha512-EqX+YQxINb+MeXaIqYDASb6U6FCHbWjkj4a1CKDBks3d/QiB2+PqBLyO72vLDgAO1wUI4O+9gweRcQK11bTL/w== -"@types/invariant@^2.2.31": - version "2.2.35" - resolved "https://registry.yarnpkg.com/@types/invariant/-/invariant-2.2.35.tgz#cd3ebf581a6557452735688d8daba6cf0bd5a3be" - integrity sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg== +"@types/http-proxy@^1.17.8": + version "1.17.9" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.9.tgz#7f0e7931343761efde1e2bf48c40f02f3f75705a" + integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw== + dependencies: + "@types/node" "*" + +"@types/inquirer@^6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-6.5.0.tgz#b83b0bf30b88b8be7246d40e51d32fe9d10e09be" + integrity sha512-rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw== + dependencies: + "@types/through" "*" + rxjs "^6.4.0" + +"@types/interpret@*": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@types/interpret/-/interpret-1.1.1.tgz#b1bf85b0420e2414b989ce237658ad20dc03719b" + integrity sha512-HZ4d0m2Ebl8DmrOdYZHgYyipj/8Ftq1/ssB/oQR7fqfUrwtTP7IW3BDi2V445nhPBLzZjEkApaPVp83moSCXlA== + dependencies: + "@types/node" "*" "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.4"

@@ -2206,7 +2679,12 @@ integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==

dependencies: "@types/istanbul-lib-report" "*" -"@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8": +"@types/json-buffer@~3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/json-buffer/-/json-buffer-3.0.0.tgz#85c1ff0f0948fc159810d4b5be35bf8c20875f64" + integrity sha512-3YP80IxxFJB4b5tYC2SUPwkg0XQLiu0nWvhRgEatgjf+29IcWO9X1k8xRv5DGssJ/lCrjYTjQPcobJr2yWIVuQ== + +"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": version "7.0.11" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==

@@ -2216,24 +2694,31 @@ version "1.0.2"

resolved "https://registry.yarnpkg.com/@types/keygrip/-/keygrip-1.0.2.tgz#513abfd256d7ad0bf1ee1873606317b33b1b2a72" integrity sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw== -"@types/koa-bodyparser@^4.2.1": +"@types/keyv@*": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6" + integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== + dependencies: + "@types/node" "*" + +"@types/koa-bodyparser@^4.3.0": version "4.3.7" resolved "https://registry.yarnpkg.com/@types/koa-bodyparser/-/koa-bodyparser-4.3.7.tgz#3ac41f2dec9d97db7a6f798bbb2e2368be762714" integrity sha512-21NhEp7LjZm4zbNV5alHHmrNY4J+S7B8lYTO6CzRL8ShTMnl20Gd14dRgVhAxraLaW5iZMofox+BycbuiDvj2Q== dependencies: "@types/koa" "*" -"@types/koa-compose@*", "@types/koa-compose@^3.2.2": +"@types/koa-compose@*", "@types/koa-compose@^3.2.5": version "3.2.5" resolved "https://registry.yarnpkg.com/@types/koa-compose/-/koa-compose-3.2.5.tgz#85eb2e80ac50be95f37ccf8c407c09bbe3468e9d" integrity sha512-B8nG/OoE1ORZqCkBVsup/AKcvjdgoHnfi4pZMn5UwAPCbhk/96xyv284eBYW8JlQbQ7zDmnpFr68I/40mFoIBQ== dependencies: "@types/koa" "*" -"@types/koa@*", "@types/koa@^2.0.46": - version "2.13.4" - resolved "https://registry.yarnpkg.com/@types/koa/-/koa-2.13.4.tgz#10620b3f24a8027ef5cbae88b393d1b31205726b" - integrity sha512-dfHYMfU+z/vKtQB7NUrthdAEiSvnLebvBjwHtfFmpZmB7em2N3WVQdHgnFq+xvyVgxW5jKDmjWfLD3lw4g4uTw== +"@types/koa@*", "@types/koa@^2.11.6": + version "2.13.5" + resolved "https://registry.yarnpkg.com/@types/koa/-/koa-2.13.5.tgz#64b3ca4d54e08c0062e89ec666c9f45443b21a61" + integrity sha512-HSUOdzKz3by4fnqagwthW/1w/yJspTgppyyalPVbgZf8jQWvdIXcVW5h2DGtw4zYntOaeRGx49r1hxoPWrD4aA== dependencies: "@types/accepts" "*" "@types/content-disposition" "*"

@@ -2244,53 +2729,46 @@ "@types/keygrip" "*"

"@types/koa-compose" "*" "@types/node" "*" -"@types/koa__cors@^2.2.1": - version "2.2.3" - resolved "https://registry.yarnpkg.com/@types/koa__cors/-/koa__cors-2.2.3.tgz#227154b4c70439083b33c89627eb780a517cd05b" - integrity sha512-RfG2EuSc+nv/E+xbDSLW8KCoeri/3AkqwVPuENfF/DctllRoXhooboO//Sw7yFtkLvj7nG7O1H3JcZmoTQz8nQ== +"@types/koa__cors@^3.0.1": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@types/koa__cors/-/koa__cors-3.3.0.tgz#2986b320d3d7ddf05c4e2e472b25a321cb16bd3b" + integrity sha512-FUN8YxcBakIs+walVe3+HcNP+Bxd0SB8BJHBWkglZ5C1XQWljlKcEFDG/dPiCIqwVCUbc5X0nYDlH62uEhdHMA== dependencies: "@types/koa" "*" -"@types/lodash@^4.14.175": - version "4.14.182" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.182.tgz#05301a4d5e62963227eaafe0ce04dd77c54ea5c2" - integrity sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q== +"@types/liftoff@^2.5.1": + version "2.5.1" + resolved "https://registry.yarnpkg.com/@types/liftoff/-/liftoff-2.5.1.tgz#2eb4c1f86e9d5ee85571e56db0084b26af129ced" + integrity sha512-nB3R6Q9CZcM07JgiTK6ibxqrG1reiHE+UX7em/W1DKwVBxDlfKWOefQjk4jubY5xX+GDxVsWR2KD1SenPby8ow== + dependencies: + "@types/fined" "*" + "@types/interpret" "*" + "@types/node" "*" + +"@types/lodash@^4.14.165", "@types/lodash@^4.14.175": + version "4.14.184" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.184.tgz#23f96cd2a21a28e106dc24d825d4aa966de7a9fe" + integrity sha512-RoZphVtHbxPZizt4IcILciSWiC6dcn+eZ8oX9IWEYfDMcocdd42f7NPI6fQj+6zI8y4E0L7gu2pcZKLGTRaV9Q== "@types/long@^4.0.0": version "4.0.2" resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== -"@types/mime@^1": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" - integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== +"@types/mime@*": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" + integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== "@types/minimatch@*": version "3.0.5" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== -"@types/mongodb@^3.5.27": - version "3.6.20" - resolved "https://registry.yarnpkg.com/@types/mongodb/-/mongodb-3.6.20.tgz#b7c5c580644f6364002b649af1c06c3c0454e1d2" - integrity sha512-WcdpPJCakFzcWWD9juKoZbRtQxKIMYF/JIAM4JrNHrMcnJL6/a2NWjXxW7fo9hxboxxkg+icff8d7+WIEvKgYQ== - dependencies: - "@types/bson" "*" - "@types/node" "*" - -"@types/node-fetch@2.5.7": - version "2.5.7" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.7.tgz#20a2afffa882ab04d44ca786449a276f9f6bbf3c" - integrity sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw== - dependencies: - "@types/node" "*" - form-data "^3.0.0" - "@types/node@*": - version "18.0.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.0.tgz#67c7b724e1bcdd7a8821ce0d5ee184d3b4dd525a" - integrity sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA== + version "18.7.9" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.9.tgz#180bfc495c91dc62573967edf047e15dbdce1491" + integrity sha512-0N5Y1XAdcl865nDdjbO0m3T6FdmQ4ijE89/urOHLREyTXbpMWbSafx9y7XIsgWGtwUP2iYTinLyyW3FatAxBLQ== "@types/node@^10.1.0": version "10.17.60"

@@ -2303,9 +2781,9 @@ resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"

integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== "@types/prettier@^2.1.5": - version "2.6.3" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.3.tgz#68ada76827b0010d0db071f739314fa429943d0a" - integrity sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg== + version "2.7.0" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.0.tgz#ea03e9f0376a4446f44797ca19d9c46c36e352dc" + integrity sha512-RI1L7N4JnW5gQw2spvL7Sllfuf1SaHdrZpCHiBlCXjIlufi1SMNnbu2teze3/QE67Fg2tBlH7W+mi4hVNk4p0A== "@types/prop-types@*": version "15.7.5"

@@ -2322,7 +2800,7 @@ version "1.2.4"

resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== -"@types/react-redux@^7.1.16": +"@types/react-redux@^7.1.20": version "7.1.24" resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.24.tgz#6caaff1603aba17b27d20f8ad073e4c077e975c0" integrity sha512-7FkurKcS1k0FHZEtdbbgN8Oc6b+stGSfZYjQGicofJ0j4U0qIn/jaSvnP2pLwZKiai3/17xqqxkkrxTgN8UNbQ==

@@ -2333,35 +2811,51 @@ hoist-non-react-statics "^3.3.0"

redux "^4.0.0" "@types/react@*": - version "18.0.12" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.12.tgz#cdaa209d0a542b3fcf69cf31a03976ec4cdd8840" - integrity sha512-duF1OTASSBQtcigUvhuiTB1Ya3OvSy+xORCiEf20H0P0lzx+/KeVsA99U5UjLXSbyo1DRJDlLKqTeM1ngosqtg== + version "18.0.17" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.17.tgz#4583d9c322d67efe4b39a935d223edcc7050ccf4" + integrity sha512-38ETy4tL+rn4uQQi7mB81G7V1g0u2ryquNmsVIOKUAEIDK+3CUjZ6rSRpdvS99dNBnkLFL83qfmtLacGOTIhwQ== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" csstype "^3.0.2" -"@types/request@^2.48.4": - version "2.48.8" - resolved "https://registry.yarnpkg.com/@types/request/-/request-2.48.8.tgz#0b90fde3b655ab50976cb8c5ac00faca22f5a82c" - integrity sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ== +"@types/responselike@*", "@types/responselike@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29" + integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== dependencies: - "@types/caseless" "*" "@types/node" "*" - "@types/tough-cookie" "*" - form-data "^2.5.0" + +"@types/retry@0.12.0": + version "0.12.0" + resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" + integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== "@types/scheduler@*": version "0.16.2" resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== -"@types/serve-static@*": - version "1.13.10" - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.10.tgz#f5e0ce8797d2d7cc5ebeda48a52c96c4fa47a8d9" - integrity sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ== +"@types/serve-index@^1.9.1": + version "1.9.1" + resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278" + integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== + dependencies: + "@types/express" "*" + +"@types/serve-static@*", "@types/serve-static@^1.13.10": + version "1.15.0" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.0.tgz#c7930ff61afb334e121a9da780aac0d9b8f34155" + integrity sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg== + dependencies: + "@types/mime" "*" + "@types/node" "*" + +"@types/sockjs@^0.3.33": + version "0.3.33" + resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f" + integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== dependencies: - "@types/mime" "^1" "@types/node" "*" "@types/stack-utils@^2.0.0":

@@ -2369,20 +2863,27 @@ version "2.0.1"

resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== -"@types/tough-cookie@*": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.2.tgz#6286b4c7228d58ab7866d19716f3696e03a09397" - integrity sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw== +"@types/through@*": + version "0.0.30" + resolved "https://registry.yarnpkg.com/@types/through/-/through-0.0.30.tgz#e0e42ce77e897bd6aead6f6ea62aeb135b8a3895" + integrity sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg== + dependencies: + "@types/node" "*" "@types/unist@*": version "2.0.6" resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== -"@types/ws@^7.0.0": - version "7.4.7" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" - integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== +"@types/uuid@^8.3.4": + version "8.3.4" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc" + integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw== + +"@types/ws@^8.5.1": + version "8.5.3" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.3.tgz#7d25a1ffbecd3c4f2d35068d0b283c037003274d" + integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== dependencies: "@types/node" "*"

@@ -2398,157 +2899,171 @@ integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==

dependencies: "@types/yargs-parser" "*" -"@webassemblyjs/ast@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" - integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA== +"@ucast/core@^1.0.0", "@ucast/core@^1.4.1", "@ucast/core@^1.6.1": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@ucast/core/-/core-1.10.1.tgz#03a77a7804bcb5002a5cad3681e86cd1897e2e1f" + integrity sha512-sXKbvQiagjFh2JCpaHUa64P4UdJbOxYeC5xiZFn8y6iYdb0WkismduE+RmiJrIjw/eLDYmIEXiQeIYYowmkcAw== + +"@ucast/js@^3.0.0": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@ucast/js/-/js-3.0.2.tgz#862838ee68112c6c262d4f4693cc592ba83157e0" + integrity sha512-zxNkdIPVvqJjHI7D/iK8Aai1+59yqU+N7bpHFodVmiTN7ukeNiGGpNmmSjQgsUw7eNcEBnPrZHNzp5UBxwmaPw== dependencies: - "@webassemblyjs/helper-module-context" "1.9.0" - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" - "@webassemblyjs/wast-parser" "1.9.0" + "@ucast/core" "^1.0.0" -"@webassemblyjs/floating-point-hex-parser@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4" - integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA== +"@ucast/mongo2js@^1.3.0": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@ucast/mongo2js/-/mongo2js-1.3.3.tgz#a683a59cea22887a72e4302f3826e41ccf51dbbe" + integrity sha512-sBPtMUYg+hRnYeVYKL+ATm8FaRPdlU9PijMhGYKgsPGjV9J4Ks41ytIjGayvKUnBOEhiCaKUUnY4qPeifdqATw== + dependencies: + "@ucast/core" "^1.6.1" + "@ucast/js" "^3.0.0" + "@ucast/mongo" "^2.4.0" -"@webassemblyjs/helper-api-error@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2" - integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw== +"@ucast/mongo@^2.4.0": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@ucast/mongo/-/mongo-2.4.2.tgz#a8a1c32e65ccab623be023e6cedb11d136d50f19" + integrity sha512-/zH1TdBJlYGKKD+Wh0oyD+aBvDSWrwHcD8b4tUL9UgHLhzHtkEnMVFuxbw3SRIRsAa01wmy06+LWt+WoZdj1Bw== + dependencies: + "@ucast/core" "^1.4.1" -"@webassemblyjs/helper-buffer@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00" - integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA== +"@webassemblyjs/ast@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7" + integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" -"@webassemblyjs/helper-code-frame@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27" - integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA== - dependencies: - "@webassemblyjs/wast-printer" "1.9.0" +"@webassemblyjs/floating-point-hex-parser@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f" + integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ== + +"@webassemblyjs/helper-api-error@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16" + integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== -"@webassemblyjs/helper-fsm@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8" - integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw== +"@webassemblyjs/helper-buffer@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5" + integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== -"@webassemblyjs/helper-module-context@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07" - integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g== +"@webassemblyjs/helper-numbers@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae" + integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ== dependencies: - "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/floating-point-hex-parser" "1.11.1" + "@webassemblyjs/helper-api-error" "1.11.1" + "@xtuc/long" "4.2.2" -"@webassemblyjs/helper-wasm-bytecode@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790" - integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw== +"@webassemblyjs/helper-wasm-bytecode@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1" + integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== -"@webassemblyjs/helper-wasm-section@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346" - integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw== +"@webassemblyjs/helper-wasm-section@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a" + integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg== dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/helper-buffer" "1.9.0" - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" - "@webassemblyjs/wasm-gen" "1.9.0" + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-buffer" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/wasm-gen" "1.11.1" -"@webassemblyjs/ieee754@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4" - integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg== +"@webassemblyjs/ieee754@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614" + integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== dependencies: "@xtuc/ieee754" "^1.2.0" -"@webassemblyjs/leb128@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95" - integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw== +"@webassemblyjs/leb128@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5" + integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== dependencies: "@xtuc/long" "4.2.2" -"@webassemblyjs/utf8@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab" - integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w== +"@webassemblyjs/utf8@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff" + integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== -"@webassemblyjs/wasm-edit@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf" - integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw== +"@webassemblyjs/wasm-edit@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6" + integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/helper-buffer" "1.9.0" - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" - "@webassemblyjs/helper-wasm-section" "1.9.0" - "@webassemblyjs/wasm-gen" "1.9.0" - "@webassemblyjs/wasm-opt" "1.9.0" - "@webassemblyjs/wasm-parser" "1.9.0" - "@webassemblyjs/wast-printer" "1.9.0" + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-buffer" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/helper-wasm-section" "1.11.1" + "@webassemblyjs/wasm-gen" "1.11.1" + "@webassemblyjs/wasm-opt" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" + "@webassemblyjs/wast-printer" "1.11.1" -"@webassemblyjs/wasm-gen@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c" - integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA== +"@webassemblyjs/wasm-gen@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76" + integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" - "@webassemblyjs/ieee754" "1.9.0" - "@webassemblyjs/leb128" "1.9.0" - "@webassemblyjs/utf8" "1.9.0" + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/ieee754" "1.11.1" + "@webassemblyjs/leb128" "1.11.1" + "@webassemblyjs/utf8" "1.11.1" -"@webassemblyjs/wasm-opt@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61" - integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A== +"@webassemblyjs/wasm-opt@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2" + integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/helper-buffer" "1.9.0" - "@webassemblyjs/wasm-gen" "1.9.0" - "@webassemblyjs/wasm-parser" "1.9.0" + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-buffer" "1.11.1" + "@webassemblyjs/wasm-gen" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" -"@webassemblyjs/wasm-parser@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e" - integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA== +"@webassemblyjs/wasm-parser@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199" + integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/helper-api-error" "1.9.0" - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" - "@webassemblyjs/ieee754" "1.9.0" - "@webassemblyjs/leb128" "1.9.0" - "@webassemblyjs/utf8" "1.9.0" + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-api-error" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/ieee754" "1.11.1" + "@webassemblyjs/leb128" "1.11.1" + "@webassemblyjs/utf8" "1.11.1" -"@webassemblyjs/wast-parser@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914" - integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw== +"@webassemblyjs/wast-printer@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0" + integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/floating-point-hex-parser" "1.9.0" - "@webassemblyjs/helper-api-error" "1.9.0" - "@webassemblyjs/helper-code-frame" "1.9.0" - "@webassemblyjs/helper-fsm" "1.9.0" + "@webassemblyjs/ast" "1.11.1" "@xtuc/long" "4.2.2" -"@webassemblyjs/wast-printer@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899" - integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA== - dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/wast-parser" "1.9.0" - "@xtuc/long" "4.2.2" +"@webpack-cli/configtest@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.2.0.tgz#7b20ce1c12533912c3b217ea68262365fa29a6f5" + integrity sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg== -"@wry/equality@^0.1.2": - version "0.1.11" - resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.1.11.tgz#35cb156e4a96695aa81a9ecc4d03787bc17f1790" - integrity sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA== +"@webpack-cli/info@^1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.5.0.tgz#6c78c13c5874852d6e2dd17f08a41f3fe4c261b1" + integrity sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ== dependencies: - tslib "^1.9.3" + envinfo "^7.7.3" + +"@webpack-cli/serve@^1.7.0": + version "1.7.0" + resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.7.0.tgz#e1993689ac42d2b16e9194376cfb6753f6254db1" + integrity sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q== "@xtuc/ieee754@^1.2.0": version "1.2.0"

@@ -2570,7 +3085,7 @@ version "1.1.1"

resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== -accepts@^1.3.5, accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: +accepts@^1.3.5, accepts@^1.3.7, accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: version "1.3.8" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==

@@ -2586,6 +3101,11 @@ dependencies:

acorn "^7.1.1" acorn-walk "^7.1.1" +acorn-import-assertions@^1.7.6: + version "1.8.0" + resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" + integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== + acorn-jsx@^5.3.1: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"

@@ -2596,27 +3116,15 @@ version "7.2.0"

resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== -acorn@^6.4.1: - version "6.4.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" - integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== - acorn@^7.1.1, acorn@^7.4.0: version "7.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.2.4: - version "8.7.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30" - integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== - -add-dom-event-listener@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz#6a92db3a0dd0abc254e095c0f1dc14acbbaae310" - integrity sha512-WCxx1ixHT0GQU9hb0KI/mhgRQhnU+U3GvwY6ZvVjYq8rsihIGoaIOUbY0yMPBxLH5MDtr0kz3fisWGNcbWW7Jw== - dependencies: - object-assign "4.x" +acorn@^8.2.4, acorn@^8.5.0, acorn@^8.7.1: + version "8.8.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== addressparser@1.0.1: version "1.0.1"

@@ -2647,32 +3155,26 @@ dependencies:

clean-stack "^2.0.0" indent-string "^4.0.0" -airbnb-prop-types@^2.14.0, airbnb-prop-types@^2.15.0, airbnb-prop-types@^2.16.0: - version "2.16.0" - resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz#b96274cefa1abb14f623f804173ee97c13971dc2" - integrity sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg== +ajv-formats@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== dependencies: - array.prototype.find "^2.1.1" - function.prototype.name "^1.1.2" - is-regex "^1.1.0" - object-is "^1.1.2" - object.assign "^4.1.0" - object.entries "^1.1.2" - prop-types "^15.7.2" - prop-types-exact "^1.2.0" - react-is "^16.13.1" + ajv "^8.0.0" -ajv-errors@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" - integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== - -ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: +ajv-keywords@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== -ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: +ajv-keywords@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + dependencies: + fast-deep-equal "^3.1.3" + +ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==

@@ -2682,7 +3184,7 @@ fast-json-stable-stringify "^2.0.0"

json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ajv@^8.0.1: +ajv@^8.0.0, ajv@^8.0.1, ajv@^8.8.0: version "8.11.0" resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==

@@ -2699,21 +3201,11 @@ integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==

dependencies: string-width "^4.1.0" -ansi-colors@^3.0.0: - version "3.2.4" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" - integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== - ansi-colors@^4.1.1: version "4.1.3" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== -ansi-escapes@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== - ansi-escapes@^4.2.1: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"

@@ -2721,7 +3213,7 @@ integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==

dependencies: type-fest "^0.21.3" -ansi-html-community@0.0.8: +ansi-html-community@^0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==

@@ -2731,11 +3223,6 @@ version "2.1.1"

resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== -ansi-regex@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" - integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== - ansi-regex@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed"

@@ -2751,7 +3238,7 @@ version "2.2.1"

resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== -ansi-styles@^3.2.0, ansi-styles@^3.2.1: +ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==

@@ -2770,20 +3257,12 @@ version "5.2.0"

resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== -any-promise@^1.0.0, any-promise@^1.1.0, any-promise@^1.3.0: +any-promise@^1.0.0: version "1.3.0" resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== -anymatch@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" - -anymatch@^3.0.3, anymatch@~3.1.1, anymatch@~3.1.2: +anymatch@^3.0.3, anymatch@~3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==

@@ -2791,39 +3270,13 @@ dependencies:

normalize-path "^3.0.0" picomatch "^2.0.4" -apollo-cache-control@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/apollo-cache-control/-/apollo-cache-control-0.14.0.tgz#95f20c3e03e7994e0d1bd48c59aeaeb575ed0ce7" - integrity sha512-qN4BCq90egQrgNnTRMUHikLZZAprf3gbm8rC5Vwmc6ZdLolQ7bFsa769Hqi6Tq/lS31KLsXBLTOsRbfPHph12w== +apollo-datasource@^3.0.3, apollo-datasource@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/apollo-datasource/-/apollo-datasource-3.3.2.tgz#5711f8b38d4b7b53fb788cb4dbd4a6a526ea74c8" + integrity sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg== dependencies: - apollo-server-env "^3.1.0" - apollo-server-plugin-base "^0.13.0" - -apollo-datasource@^0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/apollo-datasource/-/apollo-datasource-0.9.0.tgz#b0b2913257a6103a5f4c03cb56d78a30e9d850db" - integrity sha512-y8H99NExU1Sk4TvcaUxTdzfq2SZo6uSj5dyh75XSQvbpH6gdAXIW9MaBcvlNC7n0cVPsidHmOcHOWxJ/pTXGjA== - dependencies: - apollo-server-caching "^0.7.0" - apollo-server-env "^3.1.0" - -apollo-env@^0.6.6: - version "0.6.6" - resolved "https://registry.yarnpkg.com/apollo-env/-/apollo-env-0.6.6.tgz#d7880805c4e96ee3d4142900a405176a04779438" - integrity sha512-hXI9PjJtzmD34XviBU+4sPMOxnifYrHVmxpjykqI/dUD2G3yTiuRaiQqwRwB2RCdwC1Ug/jBfoQ/NHDTnnjndQ== - dependencies: - "@types/node-fetch" "2.5.7" - core-js "^3.0.1" - node-fetch "^2.2.0" - sha.js "^2.4.11" - -apollo-graphql@^0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/apollo-graphql/-/apollo-graphql-0.6.1.tgz#d0bf0aff76f445de3da10e08f6974f1bf65f5753" - integrity sha512-ZRXAV+k+hboCVS+FW86FW/QgnDR7gm/xMUwJPGXEbV53OLGuQQdIT0NCYK7AzzVkCfsbb7NJ3mmEclkZY9uuxQ== - dependencies: - apollo-env "^0.6.6" - lodash.sortby "^4.7.0" + "@apollo/utils.keyvaluecache" "^1.0.1" + apollo-server-env "^4.2.1" apollo-graphql@^0.9.0: version "0.9.7"

@@ -2834,158 +3287,120 @@ core-js-pure "^3.10.2"

lodash.sortby "^4.7.0" sha.js "^2.4.11" -apollo-link@^1.2.14: - version "1.2.14" - resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.14.tgz#3feda4b47f9ebba7f4160bef8b977ba725b684d9" - integrity sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg== +apollo-reporting-protobuf@^3.0.0, apollo-reporting-protobuf@^3.3.1, apollo-reporting-protobuf@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.2.tgz#2078c53d3140bc6221c6040c5326623e0c21c8d4" + integrity sha512-j1tx9tmkVdsLt1UPzBrvz90PdjAeKW157WxGn+aXlnnGfVjZLIRXX3x5t1NWtXvB7rVaAsLLILLtDHW382TSoQ== dependencies: - apollo-utilities "^1.3.0" - ts-invariant "^0.4.0" - tslib "^1.9.3" - zen-observable-ts "^0.8.21" + "@apollo/protobufjs" "1.2.4" -apollo-reporting-protobuf@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/apollo-reporting-protobuf/-/apollo-reporting-protobuf-0.7.0.tgz#622352d3eea943dff2647741a509b39d464f98a9" - integrity sha512-PC+zDqPPJcseemqmvUEqFiDi45pz6UaPWt6czgmrrbcQ+9VWp6IEkm08V5xBKk7V1WGUw19YwiJ7kqXpcgVNyw== - dependencies: - "@apollo/protobufjs" "1.2.2" - -apollo-reporting-protobuf@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/apollo-reporting-protobuf/-/apollo-reporting-protobuf-0.8.0.tgz#ae9d967934d3d8ed816fc85a0d8068ef45c371b9" - integrity sha512-B3XmnkH6Y458iV6OsA7AhfwvTgeZnFq9nPVjbxmLKnvfkEl8hYADtz724uPa0WeBiD7DSFcnLtqg9yGmCkBohg== - dependencies: - "@apollo/protobufjs" "1.2.2" - -apollo-server-caching@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/apollo-server-caching/-/apollo-server-caching-0.7.0.tgz#e6d1e68e3bb571cba63a61f60b434fb771c6ff39" - integrity sha512-MsVCuf/2FxuTFVhGLK13B+TZH9tBd2qkyoXKKILIiGcZ5CDUEBO14vIV63aNkMkS1xxvK2U4wBcuuNj/VH2Mkw== +apollo-server-caching@^3.0.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/apollo-server-caching/-/apollo-server-caching-3.3.0.tgz#f501cbeb820a4201d98c2b768c085f22848d9dc5" + integrity sha512-Wgcb0ArjZ5DjQ7ID+tvxUcZ7Yxdbk5l1MxZL8D8gkyjooOkhPNzjRVQ7ubPoXqO54PrOMOTm1ejVhsF+AfIirQ== dependencies: lru-cache "^6.0.0" -apollo-server-core@^2.24.0: - version "2.25.4" - resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-2.25.4.tgz#a564376496016713c7dceaac3d9e652c7a433260" - integrity sha512-1u3BnFKbCt6F9SPM7ZoWmtHK6ubme56H8hV5Mjv3KbfSairU76SU79IhO05BEJE57S6N+ddb1rm3Uk93X6YeGw== +apollo-server-core@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-3.1.2.tgz#a9d24b9453b7aad89df464f6527d80e2f46b0a6f" + integrity sha512-bFmzPDGBT97vMzdhhjlycL9Ey4YDa0eCVaHjI5TcYQM8Vphzvndd033DvvQFVRPWoZr8uwupeUyVa82Ne/iM6A== dependencies: - "@apollographql/apollo-tools" "^0.5.0" - "@apollographql/graphql-playground-html" "1.6.27" - "@apollographql/graphql-upload-8-fork" "^8.1.3" + "@apollographql/apollo-tools" "^0.5.1" + "@apollographql/graphql-playground-html" "1.6.29" + "@graphql-tools/mock" "^8.1.2" + "@graphql-tools/schema" "^8.0.0" + "@graphql-tools/utils" "^8.0.0" "@josephg/resolvable" "^1.0.0" - "@types/ws" "^7.0.0" - apollo-cache-control "^0.14.0" - apollo-datasource "^0.9.0" + apollo-datasource "^3.0.3" apollo-graphql "^0.9.0" - apollo-reporting-protobuf "^0.8.0" - apollo-server-caching "^0.7.0" - apollo-server-env "^3.1.0" - apollo-server-errors "^2.5.0" - apollo-server-plugin-base "^0.13.0" - apollo-server-types "^0.9.0" - apollo-tracing "^0.15.0" + apollo-reporting-protobuf "^3.0.0" + apollo-server-caching "^3.0.1" + apollo-server-env "^4.0.3" + apollo-server-errors "^3.0.1" + apollo-server-plugin-base "^3.1.1" + apollo-server-types "^3.1.1" async-retry "^1.2.1" - fast-json-stable-stringify "^2.0.0" - graphql-extensions "^0.15.0" + fast-json-stable-stringify "^2.1.0" graphql-tag "^2.11.0" - graphql-tools "^4.0.8" - loglevel "^1.6.7" + loglevel "^1.6.8" lru-cache "^6.0.0" sha.js "^2.4.11" - subscriptions-transport-ws "^0.9.19" uuid "^8.0.0" -apollo-server-env@^2.4.5: - version "2.4.5" - resolved "https://registry.yarnpkg.com/apollo-server-env/-/apollo-server-env-2.4.5.tgz#73730b4f0439094a2272a9d0caa4079d4b661d5f" - integrity sha512-nfNhmGPzbq3xCEWT8eRpoHXIPNcNy3QcEoBlzVMjeglrBGryLG2LXwBSPnVmTRRrzUYugX0ULBtgE3rBFNoUgA== +apollo-server-core@^3.10.0: + version "3.10.1" + resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-3.10.1.tgz#01f9ffc57c7d15c27bd7f89d65f45522aa3f3c3d" + integrity sha512-UFFziv6h15QbKRZOA6wLyr1Sle9kns3JuQ5DEB7OYe5AIoOJNjZkWXX/tmLFUrSmlnDDryi6Sf5pDzpYmUC/UA== dependencies: - node-fetch "^2.1.2" - util.promisify "^1.0.0" + "@apollo/utils.keyvaluecache" "^1.0.1" + "@apollo/utils.logger" "^1.0.0" + "@apollo/utils.usagereporting" "^1.0.0" + "@apollographql/apollo-tools" "^0.5.3" + "@apollographql/graphql-playground-html" "1.6.29" + "@graphql-tools/mock" "^8.1.2" + "@graphql-tools/schema" "^8.0.0" + "@josephg/resolvable" "^1.0.0" + apollo-datasource "^3.3.2" + apollo-reporting-protobuf "^3.3.2" + apollo-server-env "^4.2.1" + apollo-server-errors "^3.3.1" + apollo-server-plugin-base "^3.6.2" + apollo-server-types "^3.6.2" + async-retry "^1.2.1" + fast-json-stable-stringify "^2.1.0" + graphql-tag "^2.11.0" + loglevel "^1.6.8" + lru-cache "^6.0.0" + sha.js "^2.4.11" + uuid "^8.0.0" + whatwg-mimetype "^3.0.0" -apollo-server-env@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/apollo-server-env/-/apollo-server-env-3.1.0.tgz#0733c2ef50aea596cc90cf40a53f6ea2ad402cd0" - integrity sha512-iGdZgEOAuVop3vb0F2J3+kaBVi4caMoxefHosxmgzAbbSpvWehB8Y1QiSyyMeouYC38XNVk5wnZl+jdGSsWsIQ== +apollo-server-env@^4.0.3, apollo-server-env@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/apollo-server-env/-/apollo-server-env-4.2.1.tgz#ea5b1944accdbdba311f179e4dfaeca482c20185" + integrity sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g== dependencies: - node-fetch "^2.6.1" - util.promisify "^1.0.0" + node-fetch "^2.6.7" -apollo-server-errors@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/apollo-server-errors/-/apollo-server-errors-2.5.0.tgz#5d1024117c7496a2979e3e34908b5685fe112b68" - integrity sha512-lO5oTjgiC3vlVg2RKr3RiXIIQ5pGXBFxYGGUkKDhTud3jMIhs+gel8L8zsEjKaKxkjHhCQAA/bcEfYiKkGQIvA== +apollo-server-errors@^3.0.1, apollo-server-errors@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/apollo-server-errors/-/apollo-server-errors-3.3.1.tgz#ba5c00cdaa33d4cbd09779f8cb6f47475d1cd655" + integrity sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA== -apollo-server-koa@2.24.0: - version "2.24.0" - resolved "https://registry.yarnpkg.com/apollo-server-koa/-/apollo-server-koa-2.24.0.tgz#696673df68342e12abc036054759bcb460686168" - integrity sha512-cv1pWPd/gEuLdq3eXsvWDzuznIRkAlS4O+q0zKeldLQM9aEGa0Z0SeYMZ7zZcX/wBeGRrPx6Bn43bbWNcEHlfg== +apollo-server-koa@3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/apollo-server-koa/-/apollo-server-koa-3.10.0.tgz#6f5cf0d23ca9dc6d6c020322ded5ea213747889d" + integrity sha512-OHaQRz0vvsALT2q+j4uWnCLRrUl1sM0H6JZvB2PfQwANsjTdwm2Eo6FO5etVByvrU4K1iXD6wBWid0Fjk0/OMQ== dependencies: - "@apollographql/graphql-playground-html" "1.6.27" - "@koa/cors" "^2.2.1" + "@koa/cors" "^3.1.0" "@types/accepts" "^1.3.5" - "@types/koa" "^2.0.46" - "@types/koa-bodyparser" "^4.2.1" - "@types/koa-compose" "^3.2.2" - "@types/koa__cors" "^2.2.1" - accepts "^1.3.5" - apollo-server-core "^2.24.0" - apollo-server-types "^0.8.0" - graphql-subscriptions "^1.0.0" - graphql-tools "^4.0.8" - koa "2.13.1" - koa-bodyparser "^4.2.1" + "@types/koa" "^2.11.6" + "@types/koa-bodyparser" "^4.3.0" + "@types/koa-compose" "^3.2.5" + "@types/koa__cors" "^3.0.1" + accepts "^1.3.7" + apollo-server-core "^3.10.0" + apollo-server-types "^3.6.2" + koa-bodyparser "^4.3.0" koa-compose "^4.1.0" - type-is "^1.6.16" -apollo-server-plugin-base@^0.13.0: - version "0.13.0" - resolved "https://registry.yarnpkg.com/apollo-server-plugin-base/-/apollo-server-plugin-base-0.13.0.tgz#3f85751a420d3c4625355b6cb3fbdd2acbe71f13" - integrity sha512-L3TMmq2YE6BU6I4Tmgygmd0W55L+6XfD9137k+cWEBFu50vRY4Re+d+fL5WuPkk5xSPKd/PIaqzidu5V/zz8Kg== +apollo-server-plugin-base@^3.1.1, apollo-server-plugin-base@^3.6.2: + version "3.6.2" + resolved "https://registry.yarnpkg.com/apollo-server-plugin-base/-/apollo-server-plugin-base-3.6.2.tgz#f256e1f274c8fee0d7267b6944f402da71788fb3" + integrity sha512-erWXjLOO1u7fxQkbxJ2cwSO7p0tYzNied91I1SJ9tikXZ/2eZUyDyvrpI+4g70kOdEi+AmJ5Fo8ahEXKJ75zdg== dependencies: - apollo-server-types "^0.9.0" + apollo-server-types "^3.6.2" -apollo-server-types@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/apollo-server-types/-/apollo-server-types-0.8.0.tgz#5462c99e93c5b6896d686bc234c05850059b2efe" - integrity sha512-adHJnHbRV2kWUY0VQY1M2KpSdGfm+4mX4w+2lROPExqOnkyTI7CGfpJCdEwYMKrIn3aH8HIcOH0SnpWRet6TNw== +apollo-server-types@^3.1.1, apollo-server-types@^3.6.2: + version "3.6.2" + resolved "https://registry.yarnpkg.com/apollo-server-types/-/apollo-server-types-3.6.2.tgz#34bb0c335fcce3057cbdf72b3b63da182de6fc84" + integrity sha512-9Z54S7NB+qW1VV+kmiqwU2Q6jxWfX89HlSGCGOo3zrkrperh85LrzABgN9S92+qyeHYd72noMDg2aI039sF3dg== dependencies: - apollo-reporting-protobuf "^0.7.0" - apollo-server-caching "^0.7.0" - apollo-server-env "^3.1.0" - -apollo-server-types@^0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/apollo-server-types/-/apollo-server-types-0.9.0.tgz#ccf550b33b07c48c72f104fbe2876232b404848b" - integrity sha512-qk9tg4Imwpk732JJHBkhW0jzfG0nFsLqK2DY6UhvJf7jLnRePYsPxWfPiNkxni27pLE2tiNlCwoDFSeWqpZyBg== - dependencies: - apollo-reporting-protobuf "^0.8.0" - apollo-server-caching "^0.7.0" - apollo-server-env "^3.1.0" - -apollo-tracing@^0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/apollo-tracing/-/apollo-tracing-0.15.0.tgz#237fbbbf669aee4370b7e9081b685eabaa8ce84a" - integrity sha512-UP0fztFvaZPHDhIB/J+qGuy6hWO4If069MGC98qVs0I8FICIGu4/8ykpX3X3K6RtaQ56EDAWKykCxFv4ScxMeA== - dependencies: - apollo-server-env "^3.1.0" - apollo-server-plugin-base "^0.13.0" - -apollo-utilities@^1.0.1, apollo-utilities@^1.3.0: - version "1.3.4" - resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.3.4.tgz#6129e438e8be201b6c55b0f13ce49d2c7175c9cf" - integrity sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig== - dependencies: - "@wry/equality" "^0.1.2" - fast-json-stable-stringify "^2.0.0" - ts-invariant "^0.4.0" - tslib "^1.10.0" - -aproba@^1.0.3, aproba@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + "@apollo/utils.keyvaluecache" "^1.0.1" + "@apollo/utils.logger" "^1.0.0" + apollo-reporting-protobuf "^3.3.2" + apollo-server-env "^4.2.1" "aproba@^1.0.3 || ^2.0.0": version "2.0.0"

@@ -3008,15 +3423,7 @@ dependencies:

delegates "^1.0.0" readable-stream "^3.6.0" -are-we-there-yet@~1.1.2: - version "1.1.7" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146" - integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g== - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - -argparse@^1.0.7: +argparse@^1.0.7, argparse@~1.0.9: version "1.0.10" resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==

@@ -3043,74 +3450,41 @@ version "3.1.0"

resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== +array-each@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" + integrity sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA== + array-flatten@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== -array-flatten@^2.1.0: +array-flatten@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== -array-union@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" - integrity sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng== - dependencies: - array-uniq "^1.0.1" +array-slice@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" + integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== -array-uniq@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" - integrity sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q== +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== array-unique@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== -array.prototype.find@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.2.0.tgz#153b8a28ad8965cd86d3117b07e6596af6f2880d" - integrity sha512-sn40qmUiLYAcRb/1HsIQjTTZ1kCy8II8VtZJpMn2Aoen9twULhbWXisfh3HimGqMlHGUul0/TfKCnXg42LuPpQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.4" - es-shim-unscopables "^1.0.0" - -array.prototype.flat@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" - integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" - es-shim-unscopables "^1.0.0" - -array.prototype.reduce@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz#8167e80089f78bff70a99e20bd4201d4663b0a6f" - integrity sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" - es-array-method-boxes-properly "^1.0.0" - is-string "^1.0.7" - arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== -asap@~2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== - asn1.js@^5.2.0, asn1.js@^5.3.0: version "5.4.1" resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"

@@ -3133,39 +3507,26 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== -assert@^1.1.1: - version "1.5.0" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" - integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== +assert@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== dependencies: - object-assign "^4.1.1" - util "0.10.3" + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" assign-symbols@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== -ast-types@0.9.6: - version "0.9.6" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9" - integrity sha512-qEdtR2UH78yyHX/AUNfXmJTlM48XoFZKBdwi1nzkI1mJL21cmbu0cvjxjpkXJ5NENMq42H+hNs8VLJcqXLerBQ== - astral-regex@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== -async-each@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== - -async-limiter@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" - integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== - async-retry@^1.2.1: version "1.3.3" resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.3.3.tgz#0e7f36c04d8478e7a58bdbed80cedf977785f280"

@@ -3173,40 +3534,25 @@ integrity sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==

dependencies: retry "0.13.1" -async@^2.1.2, async@^2.6.2: - version "2.6.4" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" - integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== - dependencies: - lodash "^4.17.14" +async@^3.1.0: + version "3.2.4" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" + integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== -at-least-node@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" - integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== - atob@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== -autoprefixer@^9.8.6: - version "9.8.8" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.8.tgz#fd4bd4595385fa6f06599de749a4d5f7a474957a" - integrity sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA== - dependencies: - browserslist "^4.12.0" - caniuse-lite "^1.0.30001109" - normalize-range "^0.1.2" - num2fraction "^1.2.2" - picocolors "^0.2.1" - postcss "^7.0.32" - postcss-value-parser "^4.1.0" +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== aws-sign2@~0.7.0: version "0.7.0"

@@ -3218,19 +3564,26 @@ version "1.11.0"

resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== -axios@^0.19.2: - version "0.19.2" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.2.tgz#3ea36c5d8818d0d5f8a8a97a6d36b86cdc00cb27" - integrity sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA== +axios@0.24.0: + version "0.24.0" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.24.0.tgz#804e6fa1e4b9c5288501dd9dff56a7a0940d20d6" + integrity sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA== + dependencies: + follow-redirects "^1.14.4" + +axios@0.25.0: + version "0.25.0" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.25.0.tgz#349cfbb31331a9b4453190791760a8d35b093e0a" + integrity sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g== dependencies: - follow-redirects "1.5.10" + follow-redirects "^1.14.7" -axios@^0.21.1: - version "0.21.4" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" - integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== +axios@^0.26.0: + version "0.26.1" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9" + integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA== dependencies: - follow-redirects "^1.14.0" + follow-redirects "^1.14.8" babel-eslint@^10.1.0: version "10.1.0"

@@ -3258,7 +3611,7 @@ chalk "^4.0.0"

graceful-fs "^4.2.9" slash "^3.0.0" -babel-loader@^8.1.0: +babel-loader@8.2.5: version "8.2.5" resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.5.tgz#d45f585e654d5a5d90f5350a779d7647c5ed512e" integrity sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==

@@ -3296,38 +3649,48 @@ "@babel/types" "^7.3.3"

"@types/babel__core" "^7.0.0" "@types/babel__traverse" "^7.0.6" -babel-plugin-macros@^2.6.1: - version "2.8.0" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" - integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== +babel-plugin-macros@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" + integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== dependencies: - "@babel/runtime" "^7.7.2" - cosmiconfig "^6.0.0" - resolve "^1.12.0" + "@babel/runtime" "^7.12.5" + cosmiconfig "^7.0.0" + resolve "^1.19.0" -babel-plugin-polyfill-corejs2@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz#440f1b70ccfaabc6b676d196239b138f8a2cfba5" - integrity sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w== +babel-plugin-polyfill-corejs2@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz#e4c31d4c89b56f3cf85b92558954c66b54bd972d" + integrity sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q== dependencies: - "@babel/compat-data" "^7.13.11" - "@babel/helper-define-polyfill-provider" "^0.3.1" + "@babel/compat-data" "^7.17.7" + "@babel/helper-define-polyfill-provider" "^0.3.2" semver "^6.1.1" -babel-plugin-polyfill-corejs3@^0.5.0: - version "0.5.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz#aabe4b2fa04a6e038b688c5e55d44e78cd3a5f72" - integrity sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ== +babel-plugin-polyfill-corejs3@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz#d7e09c9a899079d71a8b670c6181af56ec19c5c7" + integrity sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw== dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.1" + "@babel/helper-define-polyfill-provider" "^0.3.2" core-js-compat "^3.21.0" -babel-plugin-polyfill-regenerator@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz#2c0678ea47c75c8cc2fbb1852278d8fb68233990" - integrity sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A== +babel-plugin-polyfill-regenerator@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.0.tgz#8f51809b6d5883e07e71548d75966ff7635527fe" + integrity sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw== dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.1" + "@babel/helper-define-polyfill-provider" "^0.3.2" + +babel-plugin-styled-components@2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.2.tgz#0fac11402dc9db73698b55847ab1dc73f5197c54" + integrity sha512-7eG5NE8rChnNTDxa6LQfynwgHTVOYYaHJbUYSlOhk8QBXIQiMBKq4gyfHBBKPrxUcVBXVJL61ihduCpCQbuNbw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.16.0" + "@babel/helper-module-imports" "^7.16.0" + babel-plugin-syntax-jsx "^6.18.0" + lodash "^4.17.11" "babel-plugin-styled-components@>= 1.12.0": version "2.0.7"

@@ -3381,7 +3744,7 @@ version "1.0.2"

resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base64-js@^1.0.2, base64-js@^1.3.1: +base64-js@^1.3.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==

@@ -3411,7 +3774,7 @@ integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==

dependencies: tweetnacl "^0.14.3" -bcryptjs@^2.4.3: +bcryptjs@2.4.3: version "2.4.3" resolved "https://registry.yarnpkg.com/bcryptjs/-/bcryptjs-2.4.3.tgz#9ab5627b93e60621ff7cdac5da9733027df1d0cb" integrity sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==

@@ -3421,41 +3784,16 @@ version "1.6.51"

resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== -big.js@^3.1.3: - version "3.2.0" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" - integrity sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q== - big.js@^5.2.2: version "5.2.2" resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== -binary-extensions@^1.0.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" - integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== - binary-extensions@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== -bindings@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -bl@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/bl/-/bl-2.2.1.tgz#8c11a7b730655c5d56898cdc871224f40fd901d5" - integrity sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g== - dependencies: - readable-stream "^2.3.5" - safe-buffer "^5.1.1" - bl@^4.0.3, bl@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"

@@ -3464,16 +3802,6 @@ dependencies:

buffer "^5.5.0" inherits "^2.0.4" readable-stream "^3.4.0" - -bluebird@3.5.1: - version "3.5.1" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" - integrity sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA== - -bluebird@^3.5.0, bluebird@^3.5.5, bluebird@^3.7.2: - version "3.7.2" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: version "4.12.0"

@@ -3503,58 +3831,34 @@ raw-body "2.5.1"

type-is "~1.6.18" unpipe "1.0.0" -bonjour@^3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" - integrity sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg== +bonjour-service@^1.0.11: + version "1.0.13" + resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.0.13.tgz#4ac003dc1626023252d58adf2946f57e5da450c1" + integrity sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA== dependencies: - array-flatten "^2.1.0" - deep-equal "^1.0.1" + array-flatten "^2.1.2" dns-equal "^1.0.0" - dns-txt "^2.0.2" - multicast-dns "^6.0.1" - multicast-dns-service-types "^1.1.0" - -bookshelf@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/bookshelf/-/bookshelf-1.2.0.tgz#cb972aa2316405d3a4af9cb1e2814895ab23283e" - integrity sha512-rm04YpHkLej6bkNezKUQjzuXV30rbyEHQoaKvfQ3fOyLYxPeB18uBL+h2t6SmeXjfsB+aReMmbhkMF/lUTbtMA== - dependencies: - bluebird "^3.7.2" - create-error "~0.3.1" - inflection "^1.12.0" - lodash "^4.17.15" + fast-deep-equal "^3.1.3" + multicast-dns "^7.2.5" boolbase@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== -boom@^7.3.0: - version "7.3.0" - resolved "https://registry.yarnpkg.com/boom/-/boom-7.3.0.tgz#733a6d956d33b0b1999da3fe6c12996950d017b9" - integrity sha512-Swpoyi2t5+GhOEGw8rEsKvTxFLIDiiKoUc2gsoV6Lyr43LHBIzch3k2MvYUs8RTROrIkVJ3Al0TkaOGjnb+B6A== - dependencies: - hoek "6.x.x" - -bootstrap@^4.6.0: - version "4.6.1" - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.6.1.tgz#bc25380c2c14192374e8dec07cf01b2742d222a2" - integrity sha512-0dj+VgI9Ecom+rvvpNZ4MUZJz8dcX7WCX+eTID9+/8HgOkv3dsRzi8BGeZJCQU6flWQVYxwTQnEZFrmJSEO7og== - -boxen@4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" - integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ== +boxen@5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50" + integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== dependencies: ansi-align "^3.0.0" - camelcase "^5.3.1" - chalk "^3.0.0" - cli-boxes "^2.2.0" - string-width "^4.1.0" - term-size "^2.1.0" - type-fest "^0.8.1" + camelcase "^6.2.0" + chalk "^4.1.0" + cli-boxes "^2.2.1" + string-width "^4.2.2" + type-fest "^0.20.2" widest-line "^3.1.0" + wrap-ansi "^7.0.0" brace-expansion@^1.1.7: version "1.1.11"

@@ -3564,7 +3868,7 @@ dependencies:

balanced-match "^1.0.0" concat-map "0.0.1" -braces@^2.3.1, braces@^2.3.2: +braces@^2.3.1: version "2.3.2" resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==

@@ -3586,11 +3890,6 @@ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"

integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" - -brcast@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/brcast/-/brcast-2.0.2.tgz#2db16de44140e418dc37fab10beec0369e78dcef" - integrity sha512-Tfn5JSE7hrUlFcOoaLzVvkbgIemIorMIyoMr3TgvszWW7jFt2C9PdeMLtysYD9RU0MmU17b69+XJG1eRY2OBRg== broadcast-channel@^3.4.1: version "3.7.0"

@@ -3677,16 +3976,15 @@ integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==

dependencies: pako "~1.0.5" -browserslist@^4.12.0, browserslist@^4.20.2, browserslist@^4.20.4: - version "4.20.4" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.4.tgz#98096c9042af689ee1e0271333dbc564b8ce4477" - integrity sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw== +browserslist@^4.14.5, browserslist@^4.20.2, browserslist@^4.21.3: + version "4.21.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.3.tgz#5df277694eb3c48bc5c4b05af3e8b7e09c5a6d1a" + integrity sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ== dependencies: - caniuse-lite "^1.0.30001349" - electron-to-chromium "^1.4.147" - escalade "^3.1.1" - node-releases "^2.0.5" - picocolors "^1.0.0" + caniuse-lite "^1.0.30001370" + electron-to-chromium "^1.4.202" + node-releases "^2.0.6" + update-browserslist-db "^1.0.5" bser@2.1.1: version "2.1.1"

@@ -3695,18 +3993,6 @@ integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==

dependencies: node-int64 "^0.4.0" -bson@*: - version "4.6.4" - resolved "https://registry.yarnpkg.com/bson/-/bson-4.6.4.tgz#e66d4a334f1ab230dfcfb9ec4ea9091476dd372e" - integrity sha512-TdQ3FzguAu5HKPPlr0kYQCyrYUYh8tFM+CMTpxjNzVzxeiJY00Rtuj3LXLHSgiGvmaWlZ8PE+4KyM2thqE38pQ== - dependencies: - buffer "^5.6.0" - -bson@^1.1.4: - version "1.1.6" - resolved "https://registry.yarnpkg.com/bson/-/bson-1.1.6.tgz#fb819be9a60cd677e0853aee4ca712a785d6618a" - integrity sha512-EvVNVeGo4tHxwi8L6bPj3y3itEvStdwvvlojVxxbyYfoaxJ6keLgrTuKdyfEAszFK+H3olzBuafE0yoh0D1gdg== - buffer-equal-constant-time@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819"

@@ -3717,11 +4003,6 @@ version "1.1.2"

resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== -buffer-indexof@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" - integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== - buffer-writer@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-2.0.0.tgz#ce7eb81a38f7829db09c873f2fbb792c0c98ec04"

@@ -3732,16 +4013,7 @@ version "1.0.3"

resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== -buffer@^4.3.0: - version "4.9.2" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" - integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" - -buffer@^5.1.0, buffer@^5.5.0, buffer@^5.6.0: +buffer@^5.1.0, buffer@^5.5.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==

@@ -3749,6 +4021,14 @@ dependencies:

base64-js "^1.3.1" ieee754 "^1.1.13" +buffer@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + buildmail@3.10.0: version "3.10.0" resolved "https://registry.yarnpkg.com/buildmail/-/buildmail-3.10.0.tgz#c6826d716e7945bb6f6b1434b53985e029a03159"

@@ -3773,7 +4053,7 @@ integrity sha512-y7tTxhGKXcyBxRKAni+awqx8uqaJKrSFSNFSeRG5CsWNdmy2BIK+6VGWEW7TZnIO/533mtMEA4rOevQV815YJw==

dependencies: dicer "0.3.0" -byte-size@^7.0.1: +byte-size@7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-7.0.1.tgz#b1daf3386de7ab9d706b941a748dbfc71130dee3" integrity sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==

@@ -3788,27 +4068,6 @@ version "3.1.2"

resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== -cacache@^12.0.2: - version "12.0.4" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" - integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== - dependencies: - bluebird "^3.5.5" - chownr "^1.1.1" - figgy-pudding "^3.5.1" - glob "^7.1.4" - graceful-fs "^4.1.15" - infer-owner "^1.0.3" - lru-cache "^5.1.1" - mississippi "^3.0.0" - mkdirp "^0.5.1" - move-concurrently "^1.0.1" - promise-inflight "^1.0.1" - rimraf "^2.6.3" - ssri "^6.0.1" - unique-filename "^1.1.1" - y18n "^4.0.0" - cacache@^15.2.0: version "15.3.0" resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"

@@ -3856,18 +4115,23 @@ dependencies:

mime-types "^2.1.18" ylru "^1.2.0" -cacheable-request@^6.0.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" - integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== +cacheable-lookup@^5.0.3: + version "5.0.4" + resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" + integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== + +cacheable-request@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.2.tgz#ea0d0b889364a25854757301ca12b2da77f91d27" + integrity sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew== dependencies: clone-response "^1.0.2" get-stream "^5.1.0" http-cache-semantics "^4.0.0" - keyv "^3.0.0" + keyv "^4.0.0" lowercase-keys "^2.0.0" - normalize-url "^4.1.0" - responselike "^1.0.2" + normalize-url "^6.0.1" + responselike "^2.0.0" call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2"

@@ -3882,7 +4146,7 @@ version "3.1.0"

resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -camel-case@3.0.x: +camel-case@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" integrity sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==

@@ -3890,7 +4154,7 @@ dependencies:

no-case "^2.2.0" upper-case "^1.1.1" -camel-case@4.1.2: +camel-case@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==

@@ -3898,7 +4162,7 @@ dependencies:

pascal-case "^3.1.2" tslib "^2.0.3" -camelcase@^5.0.0, camelcase@^5.2.0, camelcase@^5.3.1: +camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==

@@ -3913,27 +4177,25 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" integrity sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg== -caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001349: - version "1.0.30001355" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001355.tgz#e240b7177443ed0198c737a7f609536976701c77" - integrity sha512-Sd6pjJHF27LzCB7pT7qs+kuX2ndurzCzkpJl6Qct7LPSZ9jn0bkOA8mdgMgmqnQAWLVOOGjLpc+66V57eLtb1g== - -captains-log@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/captains-log/-/captains-log-2.0.3.tgz#4fa10b4f389a62299872826fc6736704e7483469" - integrity sha512-hKlNLw/4Qz1vPDhAbn3pRexi8fzY7d3SwX/BtI2lMG09UqK1W1mf2pYFslau3ZPWxdcwBBcsLLi9ngs+xhqD2Q== - dependencies: - "@sailshq/lodash" "^3.10.2" - chalk "1.1.3" - rc "1.2.8" - semver "5.4.1" +caniuse-lite@^1.0.30001370: + version "1.0.30001381" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001381.tgz#e62955310e6e69cdf4b40bc5bc0895aa24bc4b8b" + integrity sha512-fEnkDOKpvp6qc+olg7+NzE1SqyfiyKf4uci7fAU38M3zxs0YOyKOxW/nMZ2l9sJbt7KZHcDIxUnbI0Iime7V4w== caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== -chalk@1.1.3, chalk@^1.1.3: +chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==

@@ -3944,7 +4206,7 @@ has-ansi "^2.0.0"

strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2: +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==

@@ -3953,21 +4215,29 @@ ansi-styles "^3.2.1"

escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== +change-case@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-3.1.0.tgz#0e611b7edc9952df2e8513b27b42de72647dd17e" + integrity sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw== dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" + camel-case "^3.0.0" + constant-case "^2.0.0" + dot-case "^2.1.0" + header-case "^1.0.0" + is-lower-case "^1.1.0" + is-upper-case "^1.1.0" + lower-case "^1.1.1" + lower-case-first "^1.0.0" + no-case "^2.3.2" + param-case "^2.1.0" + pascal-case "^2.0.0" + path-case "^2.1.0" + sentence-case "^2.1.0" + snake-case "^2.1.0" + swap-case "^1.1.0" + title-case "^2.1.0" + upper-case "^1.1.1" + upper-case-first "^1.1.0" char-regex@^1.0.2: version "1.0.2"

@@ -3994,41 +4264,22 @@ version "0.7.0"

resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== -chokidar@3.5.1: - version "3.5.1" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" - integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== +chokidar@3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" + integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== dependencies: - anymatch "~3.1.1" + anymatch "~3.1.2" braces "~3.0.2" - glob-parent "~5.1.0" + glob-parent "~5.1.2" is-binary-path "~2.1.0" is-glob "~4.0.1" normalize-path "~3.0.0" - readdirp "~3.5.0" + readdirp "~3.6.0" optionalDependencies: - fsevents "~2.3.1" + fsevents "~2.3.2" -chokidar@^2.1.8: - version "2.1.8" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" - integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== - dependencies: - anymatch "^2.0.0" - async-each "^1.0.1" - braces "^2.3.2" - glob-parent "^3.1.0" - inherits "^2.0.3" - is-binary-path "^1.0.0" - is-glob "^4.0.0" - normalize-path "^3.0.0" - path-is-absolute "^1.0.0" - readdirp "^2.2.1" - upath "^1.1.1" - optionalDependencies: - fsevents "^1.2.7" - -chokidar@^3.4.1, chokidar@^3.5.1: +chokidar@^3.5.1, chokidar@^3.5.3: version "3.5.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==

@@ -4058,12 +4309,7 @@ version "1.0.3"

resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== -ci-info@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.1.1.tgz#9a32fcefdf7bcdb6f0a7e1c0f8098ec57897b80a" - integrity sha512-kdRWLBIJwdsYJWYJFtAFFYxybguqeF91qpZaggjG5Nf8QKdizFG2hjqvaTXbxFIcYbSaD74KpAXv6BSm17DHEQ== - -ci-info@^3.1.1, ci-info@^3.2.0: +ci-info@3.3.2, ci-info@^3.2.0: version "3.3.2" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.2.tgz#6d2967ffa407466481c6c90b6e16b3098f080128" integrity sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==

@@ -4091,15 +4337,10 @@ define-property "^0.2.5"

isobject "^3.0.0" static-extend "^0.1.1" -classnames@^2.2.0, classnames@^2.2.3, classnames@^2.2.6, classnames@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" - integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== - -clean-css@4.2.x: - version "4.2.4" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.4.tgz#733bf46eba4e607c6891ea57c24a989356831178" - integrity sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A== +clean-css@^5.2.2: + version "5.3.1" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.1.tgz#d0610b0b90d125196a2894d35366f734e5d7aa32" + integrity sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg== dependencies: source-map "~0.6.0"

@@ -4108,7 +4349,7 @@ version "2.2.0"

resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== -cli-boxes@^2.2.0: +cli-boxes@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==

@@ -4127,12 +4368,12 @@ integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==

dependencies: restore-cursor "^3.1.0" -cli-spinners@^2.5.0: - version "2.6.1" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d" - integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g== +cli-spinners@^2.0.0, cli-spinners@^2.5.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a" + integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw== -cli-table3@^0.6.0: +cli-table3@0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.2.tgz#aaf5df9d8b5bf12634dc8b3040806a0c07120d2a" integrity sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==

@@ -4141,19 +4382,10 @@ string-width "^4.2.0"

optionalDependencies: "@colors/colors" "1.5.0" -cli-width@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" - integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== - -cliui@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" - integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== - dependencies: - string-width "^3.1.0" - strip-ansi "^5.2.0" - wrap-ansi "^5.1.0" +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== cliui@^7.0.2: version "7.0.4"

@@ -4164,10 +4396,19 @@ string-width "^4.2.0"

strip-ansi "^6.0.0" wrap-ansi "^7.0.0" +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + clone-response@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" - integrity sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q== + version "1.0.3" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" + integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== dependencies: mimic-response "^1.0.0"

@@ -4176,24 +4417,6 @@ version "1.0.4"

resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== -cls-bluebird@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cls-bluebird/-/cls-bluebird-2.1.0.tgz#37ef1e080a8ffb55c2f4164f536f1919e7968aee" - integrity sha512-XVb0RPmHQyy35Tz9z34gvtUcBKUK8A/1xkGCyeFc9B0C7Zr5SysgFaswRVdwI5NEMcO+3JKlIDGIOgERSn9NdA== - dependencies: - is-bluebird "^1.0.2" - shimmer "^1.1.0" - -clsx@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" - integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== - -cluster-key-slot@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/cluster-key-slot/-/cluster-key-slot-1.1.0.tgz#30474b2a981fb12172695833052bc0d01336d10d" - integrity sha512-2Nii8p3RwAPiFwsnZvukotvow2rIHM+yQ6ZcBXGHdniadkYGZYiGmkHJIbZPIV9nfv7m/U1IPMVVcAhoWFeklw== - co-body@^5.1.1: version "5.2.0" resolved "https://registry.yarnpkg.com/co-body/-/co-body-5.2.0.tgz#5a0a658c46029131e0e3a306f67647302f71c124"

@@ -4219,15 +4442,10 @@ version "4.6.0"

resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== - -codemirror@^5.61.0: - version "5.65.5" - resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.65.5.tgz#f38f0e29945c3464df0c81f946fcd9a063fa2024" - integrity sha512-HNyhvGLnYz5c+kIsB9QKVitiZUevha3ovbIYaQiGzKo7ECSL/elWD9RXt3JgNr0NdnyqE9/Rc/7uLfkJQL638w== +codemirror@^5.65.6: + version "5.65.8" + resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.65.8.tgz#50f145ba7eb725091110c31f3a7c1fdef6bdc721" + integrity sha512-TNGkSkkoAsmZSf6W6g35LMVQJBHKasc2CKwhr/fTxSYun7cn6J+CbtyNjV/MYlFVkNTsqZoviegyCZimWhoMMA== collect-v8-coverage@^1.0.0: version "1.0.1"

@@ -4242,7 +4460,7 @@ dependencies:

map-visit "^1.0.0" object-visit "^1.0.0" -color-convert@^1.9.0: +color-convert@^1.9.0, color-convert@^1.9.3: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==

@@ -4266,7 +4484,7 @@ version "1.1.4"

resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -color-string@^1.9.0: +color-string@^1.6.0, color-string@^1.9.0: version "1.9.1" resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==

@@ -4279,7 +4497,15 @@ version "1.1.3"

resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== -color@^4.0.1: +color@^3.1.3: + version "3.2.1" + resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" + integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== + dependencies: + color-convert "^1.9.3" + color-string "^1.6.0" + +color@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a" integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==

@@ -4292,6 +4518,24 @@ version "2.0.16"

resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.16.tgz#713b9af84fdb000139f04546bd4a93f62a5085da" integrity sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g== +colorette@^2.0.10, colorette@^2.0.14: + version "2.0.19" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" + integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== + +colors@~1.2.1: + version "1.2.5" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.2.5.tgz#89c7ad9a374bc030df8013241f68136ed8835afc" + integrity sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg== + +colorspace@1.1.x: + version "1.1.4" + resolved "https://registry.yarnpkg.com/colorspace/-/colorspace-1.1.4.tgz#8d442d1186152f60453bf8070cd66eb364e59243" + integrity sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w== + dependencies: + color "^3.1.3" + text-hex "1.0.x" + combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"

@@ -4304,30 +4548,35 @@ version "1.0.8"

resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea" integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== -commander@2.17.x: - version "2.17.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" - integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== - -commander@6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-6.1.0.tgz#f8d722b78103141006b66f4c7ba1e97315ba75bc" - integrity sha512-wl7PNrYWd2y5mp1OK/LhTlv8Ff4kQJQRXXAvF+uU/TPNiVJUxZLRYGj/B0y/lPGAVcSbJqH2Za/cvHmrPMC8mA== +commander@8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.2.0.tgz#37fe2bde301d87d47a53adeff8b5915db1381ca8" + integrity sha512-LLKxDvHeL91/8MIyTAD5BFMNtoIwztGPMiM/7Bl8rIPmHCZXRxmSWr91h57dpOpnQ6jIUqEWdXE/uBYMfiVZDA== commander@^2.19.0, commander@^2.20.0, commander@^2.20.3: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== -commander@^7.1.0: +commander@^7.0.0: version "7.2.0" resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== -commander@~2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" - integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== +commander@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== + +commander@^9.1.0: + version "9.4.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.0.tgz#bc4a40918fefe52e22450c111ecd6b7acce6f11c" + integrity sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw== + +common-path-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" + integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== commondir@^1.0.1: version "1.0.1"

@@ -4339,6 +4588,14 @@ version "1.3.0"

resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== +compress-brotli@^1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/compress-brotli/-/compress-brotli-1.3.8.tgz#0c0a60c97a989145314ec381e84e26682e7b38db" + integrity sha512-lVcQsjhxhIXsuupfy9fmZUFtAIdBmXA7EGY6GBdgZ++qkM9zG4YFT8iU7FoBxzryNDMOpD1HIFHUSX4D87oqhQ== + dependencies: + "@types/json-buffer" "~3.0.0" + json-buffer "~3.0.1" + compressible@^2.0.0, compressible@~2.0.16: version "2.0.18" resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"

@@ -4359,21 +4616,16 @@ on-headers "~1.0.2"

safe-buffer "5.1.2" vary "~1.1.2" +compute-scroll-into-view@^1.0.17: + version "1.0.17" + resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab" + integrity sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg== + concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -concat-stream@^1.5.0: - version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - configstore@5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96"

@@ -4386,30 +4638,33 @@ unique-string "^2.0.0"

write-file-atomic "^3.0.0" xdg-basedir "^4.0.0" -connect-history-api-fallback@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" - integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== +connect-history-api-fallback@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" + integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== -consola@^2.10.0: +consola@^2.15.3: version "2.15.3" resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz#2e11f98d6a4be71ff72e0bdf07bd23e12cb61550" integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== -console-browserify@^1.1.0: +console-browserify@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== -console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-strings@~1.1.0: +console-control-strings@^1.0.0, console-control-strings@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== -"consolidated-events@^1.1.1 || ^2.0.0": - version "2.0.2" - resolved "https://registry.yarnpkg.com/consolidated-events/-/consolidated-events-2.0.2.tgz#da8d8f8c2b232831413d9e190dc11669c79f4a91" - integrity sha512-2/uRVMdRypf5z/TW/ncD/66l75P5hH2vM/GR8Jf8HLc2xnfJtmina6F6du8+v4Z2vTrMo7jC+W1tmEEuuELgkQ== +constant-case@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-2.0.0.tgz#4175764d389d3fa9c8ecd29186ed6005243b6a46" + integrity sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ== + dependencies: + snake-case "^2.1.0" + upper-case "^1.1.1" constants-browserify@^1.0.0: version "1.0.0"

@@ -4463,27 +4718,15 @@ dependencies:

depd "~2.0.0" keygrip "~1.1.0" -copy-concurrently@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" - integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== - dependencies: - aproba "^1.1.1" - fs-write-stream-atomic "^1.0.8" - iferr "^0.1.5" - mkdirp "^0.5.1" - rimraf "^2.5.4" - run-queue "^1.0.0" - copy-descriptor@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== copy-to-clipboard@^3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae" - integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw== + version "3.3.2" + resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.2.tgz#5b263ec2366224b100181dded7ce0579b340c107" + integrity sha512-Vme1Z6RUDzrb6xAI7EZlVZ5uvOk2F//GaxKUxajDqm9LhOVM1inxNAD2vy+UZDYsd0uyA9s7b3/FVZPSxqrCfg== dependencies: toggle-selection "^1.0.6"

@@ -4493,28 +4736,23 @@ resolved "https://registry.yarnpkg.com/copy-to/-/copy-to-2.0.1.tgz#2680fbb8068a48d08656b6098092bdafc906f4a5"

integrity sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w== core-js-compat@^3.21.0, core-js-compat@^3.22.1: - version "3.23.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.23.1.tgz#23d44d9f209086e60dabf9130cea7719af6e199b" - integrity sha512-KeYrEc8t6FJsKYB2qnDwRHWaC0cJNaqlHfCpMe5q3j/W1nje3moib/txNklddLPCtGb+etcBIyJ8zuMa/LN5/A== + version "3.24.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.24.1.tgz#d1af84a17e18dfdd401ee39da9996f9a7ba887de" + integrity sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw== dependencies: - browserslist "^4.20.4" + browserslist "^4.21.3" semver "7.0.0" -core-js-pure@^3.10.2: - version "3.23.1" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.23.1.tgz#0b27e4c3ad46178b84e790dbbb81987218ab82ad" - integrity sha512-3qNgf6TqI3U1uhuSYRzJZGfFd4T+YlbyVPl+jgRiKjdZopvG4keZQwWZDAWpu1UH9nCgTpUzIV3GFawC7cJsqg== +core-js-pure@^3.10.2, core-js-pure@^3.20.2, core-js-pure@^3.8.1: + version "3.24.1" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.24.1.tgz#8839dde5da545521bf282feb7dc6d0b425f39fd3" + integrity sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg== core-js@^2.6.5: version "2.6.12" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== -core-js@^3.0.1, core-js@^3.4.0, core-js@^3.6.4: - version "3.23.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.23.1.tgz#9f9a9255115f62c512db56d567f636da32ca0b78" - integrity sha512-wfMYHWi1WQjpgZNC9kAlN4ut04TM9fUTdi7CqIoTVM7yaiOUQTklOzfb+oWH3r9edQcT3F887swuVmxrV+CC8w== - core-util-is@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"

@@ -4525,16 +4763,16 @@ version "1.0.3"

resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== -cosmiconfig@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" - integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== +cosmiconfig@^7.0.0, cosmiconfig@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" + integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== dependencies: "@types/parse-json" "^4.0.0" - import-fresh "^3.1.0" + import-fresh "^3.2.1" parse-json "^5.0.0" path-type "^4.0.0" - yaml "^1.7.2" + yaml "^1.10.0" crc@^3.4.4: version "3.8.0"

@@ -4551,11 +4789,6 @@ dependencies:

bn.js "^4.1.0" elliptic "^6.5.3" -create-error@~0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/create-error/-/create-error-0.3.1.tgz#69810245a629e654432bf04377360003a5351a23" - integrity sha512-n/Q4aSCtYuuDneEW5Q+nd0IIZwbwmX/oF6wKcDUhXGJNwhmp2WHEoWKz7X+/H7rBtjimInW7f0ceouxU0SmuzQ== - create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"

@@ -4579,15 +4812,15 @@ ripemd160 "^2.0.0"

safe-buffer "^5.0.1" sha.js "^2.4.8" -cron-parser@^2.7.3: - version "2.18.0" - resolved "https://registry.yarnpkg.com/cron-parser/-/cron-parser-2.18.0.tgz#de1bb0ad528c815548371993f81a54e5a089edcf" - integrity sha512-s4odpheTyydAbTBQepsqd2rNWGa2iV3cyo8g7zbI2QQYGLVsfbhmwukayS1XHppe02Oy1fg7mg6xoaraVJeEcg== +cron-parser@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/cron-parser/-/cron-parser-3.5.0.tgz#b1a9da9514c0310aa7ef99c2f3f1d0f8c235257c" + integrity sha512-wyVZtbRs6qDfFd8ap457w3XVntdvqcwBGxBoTvJQH9KGVKL/fB+h2k3C8AqiVxvUQKN1Ps/Ns46CNViOpVDhfQ== dependencies: - is-nan "^1.3.0" - moment-timezone "^0.5.31" + is-nan "^1.3.2" + luxon "^1.26.0" -cropperjs@^1.5.11: +cropperjs@1.5.12: version "1.5.12" resolved "https://registry.yarnpkg.com/cropperjs/-/cropperjs-1.5.12.tgz#d9c0db2bfb8c0d769d51739e8f916bbc44e10f50" integrity sha512-re7UdjE5UnwdrovyhNzZ6gathI4Rs3KGCBSc8HCIjUo5hO42CtzyblmWLj6QWVw7huHyDMfpKxhiO2II77nhDw==

@@ -4599,14 +4832,7 @@ integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==

dependencies: cross-spawn "^7.0.1" -cross-fetch@^3.0.4: - version "3.1.5" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" - integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== - dependencies: - node-fetch "2.6.7" - -cross-spawn@^6.0.0, cross-spawn@^6.0.5: +cross-spawn@^6.0.0: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==

@@ -4626,7 +4852,7 @@ path-key "^3.1.0"

shebang-command "^2.0.0" which "^2.0.1" -crypto-browserify@^3.11.0: +crypto-browserify@^3.12.0: version "3.12.0" resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==

@@ -4653,22 +4879,19 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg== -css-loader@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea" - integrity sha512-OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w== +css-loader@6.7.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.1.tgz#e98106f154f6e1baf3fc3bc455cb9981c1d5fd2e" + integrity sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw== dependencies: - camelcase "^5.2.0" - icss-utils "^4.1.0" - loader-utils "^1.2.3" - normalize-path "^3.0.0" - postcss "^7.0.14" - postcss-modules-extract-imports "^2.0.0" - postcss-modules-local-by-default "^2.0.6" - postcss-modules-scope "^2.1.0" - postcss-modules-values "^2.0.0" - postcss-value-parser "^3.3.0" - schema-utils "^1.0.0" + icss-utils "^5.1.0" + postcss "^8.4.7" + postcss-modules-extract-imports "^3.0.0" + postcss-modules-local-by-default "^4.0.0" + postcss-modules-scope "^3.0.0" + postcss-modules-values "^4.0.0" + postcss-value-parser "^4.2.0" + semver "^7.3.5" css-select@^4.1.3: version "4.3.0"

@@ -4727,11 +4950,6 @@ version "3.1.0"

resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2" integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== -cyclist@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" - integrity sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A== - dashdash@^1.12.0: version "1.14.1" resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"

@@ -4748,22 +4966,15 @@ abab "^2.0.3"

whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" -dataloader@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-1.4.0.tgz#bca11d867f5d3f1b9ed9f737bd15970c65dff5c8" - integrity sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw== - -date-fns@^2.19.0: +date-fns@2.28.0: version "2.28.0" resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.28.0.tgz#9570d656f5fc13143e50c975a3b6bbeb46cd08b2" integrity sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw== -debug@*, debug@4, debug@4.3.4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" +dayjs@^1.10.7: + version "1.11.5" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.5.tgz#00e8cc627f231f9499c19b38af49f56dc0ac5e93" + integrity sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA== debug@2.6.9, debug@^2.2.0, debug@^2.3.3: version "2.6.9"

@@ -4772,12 +4983,19 @@ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==

dependencies: ms "2.0.0" -debug@3.1.0, debug@=3.1.0, debug@~3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" - integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== +debug@4, debug@4.3.4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +debug@4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== dependencies: - ms "2.0.0" + ms "^2.1.1" debug@4.3.1: version "4.3.1"

@@ -4793,22 +5011,17 @@ integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==

dependencies: ms "2.1.2" -debug@^3.1.0, debug@^3.1.1, debug@^3.2.7: +debug@^3.1.0: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== dependencies: ms "^2.1.1" -decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - decimal.js@^10.2.1: - version "10.3.1" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" - integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== + version "10.4.0" + resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.0.tgz#97a7448873b01e92e5ff9117d89a7bca8e63e0fe" + integrity sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg== decode-html@^2.0.0: version "2.0.0"

@@ -4820,42 +5033,18 @@ version "0.2.0"

resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== -decompress-response@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA== - dependencies: - mimic-response "^1.0.0" - -decompress-response@^4.2.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" - integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== dependencies: - mimic-response "^2.0.0" + mimic-response "^3.1.0" dedent@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== -deep-copy@^1.1.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/deep-copy/-/deep-copy-1.4.2.tgz#0622719257e4bd60240e401ea96718211c5c4697" - integrity sha512-VxZwQ/1+WGQPl5nE67uLhh7OqdrmqI1OazrraO9Bbw/M8Bt6Mol/RxzDA6N6ZgRXpsG/W9PgUj8E1LHHBEq2GQ== - -deep-equal@^1.0.1, deep-equal@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" - integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== - dependencies: - is-arguments "^1.0.4" - is-date-object "^1.0.1" - is-regex "^1.0.4" - object-is "^1.0.1" - object-keys "^1.1.1" - regexp.prototype.flags "^1.2.0" - deep-equal@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"

@@ -4871,11 +5060,6 @@ version "0.1.4"

resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== -deepmerge@^1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753" - integrity sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ== - deepmerge@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-2.2.1.tgz#5d3ff22a01c00f645405a2fbc17d0778a1801170"

@@ -4886,13 +5070,12 @@ version "4.2.2"

resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== -default-gateway@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" - integrity sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA== +default-gateway@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" + integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== dependencies: - execa "^1.0.0" - ip-regex "^2.1.0" + execa "^5.0.0" defaults@^1.0.3: version "1.0.3"

@@ -4901,12 +5084,17 @@ integrity sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==

dependencies: clone "^1.0.2" -defer-to-connect@^1.0.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" - integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== +defer-to-connect@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" + integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== -define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.1.4: +define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + +define-properties@^1.1.3, define-properties@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==

@@ -4936,18 +5124,19 @@ dependencies:

is-descriptor "^1.0.2" isobject "^3.0.1" -del@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4" - integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ== +del@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/del/-/del-5.1.0.tgz#d9487c94e367410e6eff2925ee58c0c84a75b3a7" + integrity sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA== dependencies: - "@types/glob" "^7.1.1" - globby "^6.1.0" - is-path-cwd "^2.0.0" - is-path-in-cwd "^2.0.0" - p-map "^2.0.0" - pify "^4.0.1" - rimraf "^2.6.3" + globby "^10.0.1" + graceful-fs "^4.2.2" + is-glob "^4.0.1" + is-path-cwd "^2.2.0" + is-path-inside "^3.0.1" + p-map "^3.0.0" + rimraf "^3.0.0" + slash "^3.0.0" delayed-stream@~1.0.0: version "1.0.0"

@@ -4959,11 +5148,6 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== -denque@^1.4.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/denque/-/denque-1.5.1.tgz#07f670e29c9a78f8faecb2566a1e2c11929c5cbf" - integrity sha512-XwE+iZ4D6ZUB7mfYRMb5wByE8L74HCn30FBN7sWnXksWc1LO1bPDl67pBR9o/kC4z/xSNAwkMYcGgqDV3BE3Hw== - depd@2.0.0, depd@^2.0.0, depd@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"

@@ -4973,11 +5157,6 @@ depd@^1.1.2, depd@~1.1.2:

version "1.1.2" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== - -deprecated-decorator@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/deprecated-decorator/-/deprecated-decorator-0.1.6.tgz#00966317b7a12fe92f3cc831f7583af329b86c37" - integrity sha512-MHidOOnCHGlZDKsI21+mbIIhf4Fff+hhCTB7gtVg4uoIqjcrTZc5v6M+GS2zVI0sV7PqK415rb8XaOSQsQkHOw== des.js@^1.0.0: version "1.0.1"

@@ -4997,12 +5176,7 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" integrity sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q== -detect-libc@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" - integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== - -detect-libc@^2.0.0: +detect-libc@^2.0.0, detect-libc@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==

@@ -5038,10 +5212,12 @@ bn.js "^4.1.0"

miller-rabin "^4.0.0" randombytes "^2.0.0" -direction@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/direction/-/direction-1.0.4.tgz#2b86fb686967e987088caf8b89059370d4837442" - integrity sha512-GYqKi1aH7PJXxdhTeZBFrg8vUBeKXi+cNprXsC1kpJcbcVnV9wBsrOu1cQEdG0WeQwlfHiy3XvnKfIrJ2R0NzQ== +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" discontinuous-range@1.0.0: version "1.0.0"

@@ -5055,34 +5231,26 @@ integrity sha512-24OZ3cCA30UTRz+Plpg+ibfPq3h7tDtsJRg75Bo0pGakZePXcPBddY80bKi1Bi7Jsz7tL5Cw527mhCRDvNFgfg==

dependencies: libmime "^2.0.3" -dnd-core@^10.0.2: - version "10.0.2" - resolved "https://registry.yarnpkg.com/dnd-core/-/dnd-core-10.0.2.tgz#051dc119682ea1185622f954667670d3d5f6a574" - integrity sha512-PrxEjxF0+6Y1n1n1Z9hSWZ1tvnDXv9syL+BccV1r1RC08uWNsyetf8AnWmUF3NgYPwy0HKQJwTqGkZK+1NlaFA== +dnd-core@14.0.1: + version "14.0.1" + resolved "https://registry.yarnpkg.com/dnd-core/-/dnd-core-14.0.1.tgz#76d000e41c494983210fb20a48b835f81a203c2e" + integrity sha512-+PVS2VPTgKFPYWo3vAFEA8WPbTf7/xo43TifH9G8S1KqnrQu0o77A3unrF5yOugy4mIz7K5wAVFHUcha7wsz6A== dependencies: "@react-dnd/asap" "^4.0.0" "@react-dnd/invariant" "^2.0.0" - redux "^4.0.4" + redux "^4.1.1" dns-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== -dns-packet@^1.3.1: - version "1.3.4" - resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.4.tgz#e3455065824a2507ba886c55a89963bb107dec6f" - integrity sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA== +dns-packet@^5.2.2: + version "5.4.0" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.4.0.tgz#1f88477cf9f27e78a213fb6d118ae38e759a879b" + integrity sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g== dependencies: - ip "^1.1.0" - safe-buffer "^5.0.1" - -dns-txt@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" - integrity sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ== - dependencies: - buffer-indexof "^1.0.0" + "@leichtgewicht/ip-codec" "^2.0.1" doctrine@^3.0.0: version "3.0.0"

@@ -5091,13 +5259,6 @@ integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==

dependencies: esutils "^2.0.2" -document.contains@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/document.contains/-/document.contains-1.0.2.tgz#4260abad67a6ae9e135c1be83d68da0db169d5f0" - integrity sha512-YcvYFs15mX8m3AO1QNQy3BlIpSMfNRj3Ujk2BEJxsZG+HZf7/hZ6jr7mDpXrF8q+ff95Vef5yjhiZxm8CGJr6Q== - dependencies: - define-properties "^1.1.3" - dom-converter@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"

@@ -5105,14 +5266,7 @@ integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==

dependencies: utila "~0.4" -dom-helpers@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8" - integrity sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA== - dependencies: - "@babel/runtime" "^7.1.2" - -dom-helpers@^5.0.1, dom-helpers@^5.1.3: +dom-helpers@^5.0.1: version "5.2.1" resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==

@@ -5129,10 +5283,10 @@ domelementtype "^2.0.1"

domhandler "^4.2.0" entities "^2.0.0" -domain-browser@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" - integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== +domain-browser@^4.19.0: + version "4.22.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-4.22.0.tgz#6ddd34220ec281f9a65d3386d267ddd35c491f9f" + integrity sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw== domelementtype@^2.0.1, domelementtype@^2.2.0: version "2.3.0"

@@ -5162,6 +5316,21 @@ dom-serializer "^1.0.1"

domelementtype "^2.2.0" domhandler "^4.2.0" +dot-case@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-2.1.1.tgz#34dcf37f50a8e93c2b3bca8bb7fb9155c7da3bee" + integrity sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug== + dependencies: + no-case "^2.2.0" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + dot-prop@^5.2.0: version "5.3.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"

@@ -5169,49 +5338,15 @@ integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==

dependencies: is-obj "^2.0.0" -dotenv@8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" - integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== - -dottie@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/dottie/-/dottie-2.0.2.tgz#cc91c0726ce3a054ebf11c55fbc92a7f266dd154" - integrity sha512-fmrwR04lsniq/uSr8yikThDTrM7epXHBAAjH9TbeH3rEA8tdCO7mRzB9hdmdGyJCxF8KERo9CITcm3kGuoyMhg== - -draft-js@^0.11.5: - version "0.11.7" - resolved "https://registry.yarnpkg.com/draft-js/-/draft-js-0.11.7.tgz#be293aaa255c46d8a6647f3860aa4c178484a206" - integrity sha512-ne7yFfN4sEL82QPQEn80xnADR8/Q6ALVworbC5UOSzOvjffmYfFsr3xSZtxbIirti14R7Y33EZC5rivpLgIbsg== - dependencies: - fbjs "^2.0.0" - immutable "~3.7.4" - object-assign "^4.1.1" - -duplexer3@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" - integrity sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA== - -duplexify@^3.4.2, duplexify@^3.6.0: - version "3.7.1" - resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" - integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== - dependencies: - end-of-stream "^1.0.0" - inherits "^2.0.1" - readable-stream "^2.0.0" - stream-shift "^1.0.0" +dotenv@10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== -duplicate-package-checker-webpack-plugin@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/duplicate-package-checker-webpack-plugin/-/duplicate-package-checker-webpack-plugin-3.0.0.tgz#78bb89e625fa7cf8c2a59c53f62b495fda9ba287" - integrity sha512-aO50/qPC7X2ChjRFniRiscxBLT/K01bALqfcDaf8Ih5OqQ1N4iT/Abx9Ofu3/ms446vHTm46FACIuJUmgUQcDQ== - dependencies: - chalk "^2.3.0" - find-root "^1.0.0" - lodash "^4.17.4" - semver "^5.4.1" +dotenv@8.5.1: + version "8.5.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.5.1.tgz#e3a4c7862daba51b92bce0da5c349f11faa28663" + integrity sha512-qC1FbhCH7UH7B+BcRNUDhAk04d/n+tnGGB1ctwndZkVFeehYJOn39pRWWzmdzpFqImyX1KB8tO0DCHLf8yRaYQ== ecc-jsbn@~0.1.1: version "0.1.2"

@@ -5233,10 +5368,10 @@ version "1.1.1"

resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -electron-to-chromium@^1.4.147: - version "1.4.158" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.158.tgz#abbdaaf64676bfa4bc0307522125db34424a0ada" - integrity sha512-gppO3/+Y6sP432HtvwvuU8S+YYYLH4PmAYvQwqUtt9HDOmEsBwQfLnK9T8+1NIKwAS1BEygIjTaATC4H5EzvxQ== +electron-to-chromium@^1.4.202: + version "1.4.225" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.225.tgz#3e27bdd157cbaf19768141f2e0f0f45071e52338" + integrity sha512-ICHvGaCIQR3P88uK8aRtx8gmejbVJyC6bB4LEC3anzBrIzdzC7aiZHY4iFfXhN4st6I7lMO0x4sgBHf/7kBvRw== elliptic@^6.5.3, elliptic@^6.5.4: version "6.5.4"

@@ -5251,30 +5386,30 @@ inherits "^2.0.4"

minimalistic-assert "^1.0.1" minimalistic-crypto-utils "^1.0.1" +emittery@^0.10.2: + version "0.10.2" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933" + integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw== + emittery@^0.8.1: version "0.8.1" resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -emojis-list@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" - integrity sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng== - emojis-list@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +enabled@2.0.x: + version "2.0.0" + resolved "https://registry.yarnpkg.com/enabled/-/enabled-2.0.0.tgz#f9dd92ec2d6f4bbc0d5d1e64e21d61cd4665e7c2" + integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== encodeurl@^1.0.2, encodeurl@~1.0.2: version "1.0.2"

@@ -5288,21 +5423,20 @@ integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==

dependencies: iconv-lite "^0.6.2" -end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: +end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== dependencies: once "^1.4.0" -enhanced-resolve@^4.1.1, enhanced-resolve@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec" - integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== +enhanced-resolve@^5.10.0: + version "5.10.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6" + integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ== dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.5.0" - tapable "^1.0.0" + graceful-fs "^4.2.4" + tapable "^2.2.0" enquirer@^2.3.5: version "2.3.6"

@@ -5326,26 +5460,16 @@ version "2.2.1"

resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== -enzyme-shallow-equal@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.4.tgz#b9256cb25a5f430f9bfe073a84808c1d74fced2e" - integrity sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q== - dependencies: - has "^1.0.3" - object-is "^1.1.2" +envinfo@^7.7.3: + version "7.8.1" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" + integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== err-code@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== -errno@^0.1.3, errno@~0.1.7: - version "0.1.8" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" - integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== - dependencies: - prr "~1.0.1" - error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"

@@ -5353,14 +5477,14 @@ integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==

dependencies: is-arrayish "^0.2.1" -error-stack-parser@^2.0.0: +error-stack-parser@^2.0.6: version "2.1.4" resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== dependencies: stackframe "^1.3.4" -es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.4, es-abstract@^1.19.5, es-abstract@^1.20.1: +es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0: version "1.20.1" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814" integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==

@@ -5389,17 +5513,10 @@ string.prototype.trimend "^1.0.5"

string.prototype.trimstart "^1.0.5" unbox-primitive "^1.0.2" -es-array-method-boxes-properly@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" - integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== - -es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== - dependencies: - has "^1.0.3" +es-module-lexer@^0.9.0: + version "0.9.3" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" + integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== es-to-primitive@^1.2.1: version "1.2.1"

@@ -5410,13 +5527,149 @@ is-callable "^1.1.4"

is-date-object "^1.0.1" is-symbol "^1.0.2" -es6-templates@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/es6-templates/-/es6-templates-0.2.3.tgz#5cb9ac9fb1ded6eb1239342b81d792bbb4078ee4" - integrity sha512-sziUVwcvQ+lOsrTyUY0Q11ilAPj+dy7AQ1E1MgSaHTaaAFTffaa08QSlGNU61iyVaroyb6nYdBV6oD7nzn6i8w== +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +esbuild-android-64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz#505f41832884313bbaffb27704b8bcaa2d8616be" + integrity sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ== + +esbuild-android-arm64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz#8ce69d7caba49646e009968fe5754a21a9871771" + integrity sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg== + +esbuild-darwin-64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz#24ba67b9a8cb890a3c08d9018f887cc221cdda25" + integrity sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug== + +esbuild-darwin-arm64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz#3f7cdb78888ee05e488d250a2bdaab1fa671bf73" + integrity sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw== + +esbuild-freebsd-64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz#09250f997a56ed4650f3e1979c905ffc40bbe94d" + integrity sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg== + +esbuild-freebsd-arm64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz#bafb46ed04fc5f97cbdb016d86947a79579f8e48" + integrity sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q== + +esbuild-linux-32@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz#e2a8c4a8efdc355405325033fcebeb941f781fe5" + integrity sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw== + +esbuild-linux-64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz#de5fdba1c95666cf72369f52b40b03be71226652" + integrity sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg== + +esbuild-linux-arm64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz#dae4cd42ae9787468b6a5c158da4c84e83b0ce8b" + integrity sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig== + +esbuild-linux-arm@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz#a2c1dff6d0f21dbe8fc6998a122675533ddfcd59" + integrity sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw== + +esbuild-linux-mips64le@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz#d9918e9e4cb972f8d6dae8e8655bf9ee131eda34" + integrity sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw== + +esbuild-linux-ppc64le@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz#3f9a0f6d41073fb1a640680845c7de52995f137e" + integrity sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ== + +esbuild-linux-riscv64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz#618853c028178a61837bc799d2013d4695e451c8" + integrity sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg== + +esbuild-linux-s390x@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz#d1885c4c5a76bbb5a0fe182e2c8c60eb9e29f2a6" + integrity sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA== + +esbuild-loader@^2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/esbuild-loader/-/esbuild-loader-2.19.0.tgz#54f62d1da8262acfc3c5883c24da35af8324f116" + integrity sha512-urGNVE6Tl2rqx92ElKi/LiExXjGvcH6HfDBFzJ9Ppwqh4n6Jmx8x7RKAyMzSM78b6CAaJLhDncG5sPrL0ROh5Q== dependencies: - recast "~0.11.12" - through "~2.3.6" + esbuild "^0.14.39" + joycon "^3.0.1" + json5 "^2.2.0" + loader-utils "^2.0.0" + tapable "^2.2.0" + webpack-sources "^2.2.0" + +esbuild-netbsd-64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz#69ae917a2ff241b7df1dbf22baf04bd330349e81" + integrity sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w== + +esbuild-openbsd-64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz#db4c8495287a350a6790de22edea247a57c5d47b" + integrity sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw== + +esbuild-sunos-64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz#54287ee3da73d3844b721c21bc80c1dc7e1bf7da" + integrity sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw== + +esbuild-windows-32@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz#f8aaf9a5667630b40f0fb3aa37bf01bbd340ce31" + integrity sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w== + +esbuild-windows-64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz#bf54b51bd3e9b0f1886ffdb224a4176031ea0af4" + integrity sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ== + +esbuild-windows-arm64@0.14.54: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz#937d15675a15e4b0e4fafdbaa3a01a776a2be982" + integrity sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg== + +esbuild@^0.14.39: + version "0.14.54" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.54.tgz#8b44dcf2b0f1a66fc22459943dccf477535e9aa2" + integrity sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA== + optionalDependencies: + "@esbuild/linux-loong64" "0.14.54" + esbuild-android-64 "0.14.54" + esbuild-android-arm64 "0.14.54" + esbuild-darwin-64 "0.14.54" + esbuild-darwin-arm64 "0.14.54" + esbuild-freebsd-64 "0.14.54" + esbuild-freebsd-arm64 "0.14.54" + esbuild-linux-32 "0.14.54" + esbuild-linux-64 "0.14.54" + esbuild-linux-arm "0.14.54" + esbuild-linux-arm64 "0.14.54" + esbuild-linux-mips64le "0.14.54" + esbuild-linux-ppc64le "0.14.54" + esbuild-linux-riscv64 "0.14.54" + esbuild-linux-s390x "0.14.54" + esbuild-netbsd-64 "0.14.54" + esbuild-openbsd-64 "0.14.54" + esbuild-sunos-64 "0.14.54" + esbuild-windows-32 "0.14.54" + esbuild-windows-64 "0.14.54" + esbuild-windows-arm64 "0.14.54" escalade@^3.1.1: version "3.1.1"

@@ -5455,15 +5708,7 @@ optionator "^0.8.1"

optionalDependencies: source-map "~0.6.1" -eslint-scope@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" - integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== - dependencies: - esrecurse "^4.1.0" - estraverse "^4.1.1" - -eslint-scope@^5.1.1: +eslint-scope@5.1.1, eslint-scope@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==

@@ -5553,11 +5798,6 @@ version "4.0.1"

resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esprima@~3.1.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - integrity sha512-AWwVMNxwhN8+NIPQzAQZCm7RkLC4RbM3B1OobMuyp3i+w73X57KCKaVIxaRZb+DYCojq7rspo+fmuQfAboyhFg== - esquery@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"

@@ -5565,7 +5805,7 @@ integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==

dependencies: estraverse "^5.1.0" -esrecurse@^4.1.0, esrecurse@^4.3.0: +esrecurse@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==

@@ -5602,16 +5842,11 @@ version "4.0.7"

resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== -events@^3.0.0: +events@^3.2.0, events@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== -eventsource@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-2.0.2.tgz#76dfcc02930fb2ff339520b6d290da573a9e8508" - integrity sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA== - evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"

@@ -5620,20 +5855,7 @@ dependencies:

md5.js "^1.3.4" safe-buffer "^5.1.1" -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^5.0.0: +execa@5.1.1, execa@^5.0.0: version "5.1.1" resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==

@@ -5647,6 +5869,19 @@ npm-run-path "^4.0.1"

onetime "^5.1.2" signal-exit "^3.0.3" strip-final-newline "^2.0.0" + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" exit@^0.1.2: version "0.1.2"

@@ -5688,7 +5923,7 @@ jest-get-type "^27.5.1"

jest-matcher-utils "^27.5.1" jest-message-util "^27.5.1" -express@^4.17.1: +express@^4.17.3: version "4.18.1" resolved "https://registry.yarnpkg.com/express/-/express-4.18.1.tgz#7797de8b9c72c857b9cd0e14a5eea80666267caf" integrity sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==

@@ -5783,17 +6018,23 @@ version "5.5.3"

resolved "https://registry.yarnpkg.com/faker/-/faker-5.5.3.tgz#c57974ee484431b25205c2c8dc09fda861e51e0e" integrity sha512-wLTv2a28wjUyWkbnX7u/ABZBkUkIF2fCd73V6P2oFqEGEktDfzWx4UxrSqtPRw0xPRAcjeAOIiJWqZm3pP4u3g== -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: +fast-deep-equal@3.1.3, fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-json-parse@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/fast-json-parse/-/fast-json-parse-1.0.3.tgz#43e5c61ee4efa9265633046b770fb682a7577c4d" - integrity sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw== +fast-glob@^3.0.3: + version "3.2.11" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" + integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" -fast-json-stable-stringify@^2.0.0: +fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==

@@ -5803,15 +6044,17 @@ version "2.0.6"

resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== -fast-safe-stringify@^1.0.8, fast-safe-stringify@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-1.2.3.tgz#9fe22c37fb2f7f86f06b8f004377dbf8f1ee7bc1" - integrity sha512-QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw== +fastest-levenshtein@^1.0.12: + version "1.0.16" + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== -fastparse@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" - integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== +fastq@^1.6.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" + integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + dependencies: + reusify "^1.0.4" fault@^1.0.0: version "1.0.4"

@@ -5820,7 +6063,7 @@ integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==

dependencies: format "^0.2.0" -faye-websocket@^0.11.3, faye-websocket@^0.11.4: +faye-websocket@^0.11.3: version "0.11.4" resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==

@@ -5834,36 +6077,10 @@ integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==

dependencies: bser "2.1.1" -fbjs-css-vars@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" - integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== - -fbjs@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-2.0.0.tgz#01fb812138d7e31831ed3e374afe27b9169ef442" - integrity sha512-8XA8ny9ifxrAWlyhAbexXcs3rRMtxWcs3M0lctLfB49jRDHiaxj+Mo0XxbwE7nKZYzgCFoq64FS+WFd4IycPPQ== - dependencies: - core-js "^3.6.4" - cross-fetch "^3.0.4" - fbjs-css-vars "^1.0.0" - loose-envify "^1.0.0" - object-assign "^4.1.0" - promise "^7.1.1" - setimmediate "^1.0.5" - ua-parser-js "^0.7.18" - -figgy-pudding@^3.5.1: - version "3.5.2" - resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" - integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== - -figures@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA== - dependencies: - escape-string-regexp "^1.0.5" +fecha@^4.2.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.3.tgz#4d9ccdbc61e8629b259fdca67e65891448d569fd" + integrity sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw== figures@^3.0.0: version "3.2.0"

@@ -5879,19 +6096,6 @@ integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==

dependencies: flat-cache "^3.0.4" -file-loader@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" - integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - fill-range@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"

@@ -5909,10 +6113,10 @@ integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==

dependencies: to-regex-range "^5.0.1" -filter-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" - integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== +filter-obj@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-2.0.2.tgz#fff662368e505d69826abb113f0f6a98f56e9d5f" + integrity sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg== finalhandler@1.2.0: version "1.2.0"

@@ -5927,15 +6131,6 @@ parseurl "~1.3.3"

statuses "2.0.1" unpipe "~1.0.0" -find-cache-dir@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" - integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== - dependencies: - commondir "^1.0.1" - make-dir "^2.0.0" - pkg-dir "^3.0.0" - find-cache-dir@^3.3.1: version "3.3.2" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b"

@@ -5945,18 +6140,11 @@ commondir "^1.0.1"

make-dir "^3.0.2" pkg-dir "^4.1.0" -find-root@^1.0.0, find-root@^1.1.0: +find-root@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"

@@ -5965,16 +6153,40 @@ dependencies:

locate-path "^5.0.0" path-exists "^4.0.0" -findup-sync@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" - integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +findup-sync@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" + integrity sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g== dependencies: detect-file "^1.0.0" - is-glob "^4.0.0" + is-glob "^3.1.0" micromatch "^3.0.4" resolve-dir "^1.0.1" +fined@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz#d00beccf1aa2b475d16d423b0238b713a2c4a37b" + integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng== + dependencies: + expand-tilde "^2.0.2" + is-plain-object "^2.0.3" + object.defaults "^1.1.0" + object.pick "^1.2.0" + parse-filepath "^1.0.1" + +flagged-respawn@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41" + integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q== + flat-cache@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"

@@ -5983,32 +6195,17 @@ dependencies:

flatted "^3.1.0" rimraf "^3.0.2" -flatstr@^1.0.5: - version "1.0.12" - resolved "https://registry.yarnpkg.com/flatstr/-/flatstr-1.0.12.tgz#c2ba6a08173edbb6c9640e3055b95e287ceb5931" - integrity sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw== - flatted@^3.1.0: - version "3.2.5" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" - integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== + version "3.2.7" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== -flush-write-stream@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" - integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== - dependencies: - inherits "^2.0.3" - readable-stream "^2.3.6" +fn.name@1.x.x: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fn.name/-/fn.name-1.1.0.tgz#26cad8017967aea8731bc42961d04a3d5988accc" + integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== -follow-redirects@1.5.10: - version "1.5.10" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" - integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ== - dependencies: - debug "=3.1.0" - -follow-redirects@^1.0.0, follow-redirects@^1.14.0: +follow-redirects@^1.0.0, follow-redirects@^1.14.4, follow-redirects@^1.14.7, follow-redirects@^1.14.8: version "1.15.1" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.1.tgz#0ca6a452306c9b276e4d3127483e29575e207ad5" integrity sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==

@@ -6025,24 +6222,39 @@ integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==

dependencies: is-callable "^1.1.3" -for-in@^1.0.2: +for-in@^1.0.1, for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== +for-own@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" + integrity sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg== + dependencies: + for-in "^1.0.1" + forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== -form-data@^2.5.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.1.tgz#f2cbec57b5e59e23716e128fe44d4e5dd23895f4" - integrity sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA== +fork-ts-checker-webpack-plugin@7.2.1: + version "7.2.1" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.1.tgz#c37a538e12730fe11fd725bcf0fce29487950833" + integrity sha512-uOfQdg/iQ8iokQ64qcbu8iZb114rOmaKLQFu7hU14/eJaKgsP91cQ7ts7v2iiDld6TzDe84Meksha8/MkWiCyw== dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" + "@babel/code-frame" "^7.16.7" + chalk "^4.1.2" + chokidar "^3.5.3" + cosmiconfig "^7.0.1" + deepmerge "^4.2.2" + fs-extra "^10.0.0" + memfs "^3.4.1" + minimatch "^3.0.4" + schema-utils "4.0.0" + semver "^7.3.5" + tapable "^2.2.1" form-data@^3.0.0: version "3.0.1"

@@ -6072,7 +6284,7 @@ version "1.2.6"

resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.2.6.tgz#d2a51d60162bbc9b4a055d8457a7c75315d1a168" integrity sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ== -formik@^2.2.6: +formik@2.2.9, formik@^2.2.6: version "2.2.9" resolved "https://registry.yarnpkg.com/formik/-/formik-2.2.9.tgz#8594ba9c5e2e5cf1f42c5704128e119fc46232d0" integrity sha512-LQLcISMmf1r5at4/gyJigGn0gOwFbeEAlji+N9InZF6LIMXnFNkO42sCI8Jt84YZggpD4cPWObAZaxpEFtSzNA==

@@ -6102,29 +6314,7 @@ version "0.5.2"

resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== -friendly-errors-webpack-plugin@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.7.0.tgz#efc86cbb816224565861a1be7a9d84d0aafea136" - integrity sha512-K27M3VK30wVoOarP651zDmb93R9zF28usW4ocaK3mfQeIEI5BPht/EzZs5E8QLLwbLRJQMwscAjDxYPb1FuNiw== - dependencies: - chalk "^1.1.3" - error-stack-parser "^2.0.0" - string-width "^2.0.0" - -from2@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== - dependencies: - inherits "^2.0.1" - readable-stream "^2.0.0" - -fs-capacitor@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/fs-capacitor/-/fs-capacitor-2.0.4.tgz#5a22e72d40ae5078b4fe64fe4d08c0d3fc88ad3c" - integrity sha512-8S4f4WsCryNw2mJJchi46YgB6CR5Ze+4L1h8ewl9tEpL4SJ3ZO+c/bS4BWhB8bK+O3TMqhuZarTitd0S0eh2pA== - -fs-capacitor@^6.1.0: +fs-capacitor@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/fs-capacitor/-/fs-capacitor-6.2.0.tgz#fa79ac6576629163cb84561995602d8999afb7f5" integrity sha512-nKcE1UduoSKX27NSZlg879LdQc94OtbOsEmKMN2MBNudXREvijRKx2GEBsTMTfws+BrbkJoEuynbGSVRSpauvw==

@@ -6134,16 +6324,41 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== -fs-extra@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" - integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== +fs-extra@10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1" + integrity sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ== dependencies: - at-least-node "^1.0.0" graceful-fs "^4.2.0" jsonfile "^6.0.1" universalify "^2.0.0" +fs-extra@10.0.1: + version "10.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.1.tgz#27de43b4320e833f6867cc044bfce29fdf0ef3b8" + integrity sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^10.0.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-jetpack@^4.1.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/fs-jetpack/-/fs-jetpack-4.3.1.tgz#cdfd4b64e6bfdec7c7dc55c76b39efaa7853bb20" + integrity sha512-dbeOK84F6BiQzk2yqqCVwCPWTxAvVGJ3fMQc6E2wuEohS28mR6yHngbrKuVCK1KHRx/ccByDylqu4H5PCP2urQ== + dependencies: + minimatch "^3.0.2" + rimraf "^2.6.3" + fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"

@@ -6151,30 +6366,17 @@ integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==

dependencies: minipass "^3.0.0" -fs-write-stream-atomic@^1.0.8: - version "1.0.10" - resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" - integrity sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA== - dependencies: - graceful-fs "^4.1.2" - iferr "^0.1.5" - imurmurhash "^0.1.4" - readable-stream "1 || 2" +fs-monkey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3" + integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@^1.2.7: - version "1.2.13" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" - integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== - dependencies: - bindings "^1.5.0" - nan "^2.12.1" - -fsevents@^2.3.2, fsevents@~2.3.1, fsevents@~2.3.2: +fsevents@^2.3.2, fsevents@~2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==

@@ -6184,7 +6386,7 @@ version "1.1.1"

resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== -function.prototype.name@^1.1.2, function.prototype.name@^1.1.5: +function.prototype.name@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==

@@ -6233,31 +6435,12 @@ string-width "^4.2.3"

strip-ansi "^6.0.1" wide-align "^1.1.5" -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg== - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - -generic-pool@3.8.2: - version "3.8.2" - resolved "https://registry.yarnpkg.com/generic-pool/-/generic-pool-3.8.2.tgz#aab4f280adb522fdfbdc5e5b64d718d3683f04e9" - integrity sha512-nGToKy6p3PAbYQ7p1UlWl6vSPwfwU6TMSWK7TTu+WUY4ZjyZQGniGGt2oNVvyNSpyZYSB43zMXVLcBm08MTMkg== - gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-caller-file@^2.0.1, get-caller-file@^2.0.5: +get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==

@@ -6276,7 +6459,7 @@ version "0.1.0"

resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== -get-stream@^4.0.0, get-stream@^4.1.0: +get-stream@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==

@@ -6308,10 +6491,10 @@ version "2.0.6"

resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== -getopts@2.2.5: - version "2.2.5" - resolved "https://registry.yarnpkg.com/getopts/-/getopts-2.2.5.tgz#67a0fe471cacb9c687d817cab6450b96dde8313b" - integrity sha512-9jb7AW5p3in+IiJWhQiZmmwkpLaR/ccTWdWQCtZM66HJcHHLegowh4q4tSD7gouUyeNvFWRavfK9GXosQHDpFA== +getopts@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/getopts/-/getopts-2.3.0.tgz#71e5593284807e03e2427449d4f6712a268666f4" + integrity sha512-5eDf9fuSXwxBL6q5HX+dhDj+dslFGWzU5thZ9kNKUkcPtaPdatmUFKwHFrLb/uf/WpA4BHET+AX3Scl56cAjpA== getpass@^0.1.1: version "0.1.7"

@@ -6320,47 +6503,41 @@ integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==

dependencies: assert-plus "^1.0.0" -git-up@^4.0.0: - version "4.0.5" - resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.5.tgz#e7bb70981a37ea2fb8fe049669800a1f9a01d759" - integrity sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA== - dependencies: - is-ssh "^1.3.0" - parse-url "^6.0.0" - -git-url-parse@^11.4.4: - version "11.6.0" - resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.6.0.tgz#c634b8de7faa66498a2b88932df31702c67df605" - integrity sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g== - dependencies: - git-up "^4.0.0" - github-buttons@^2.21.1: - version "2.21.1" - resolved "https://registry.yarnpkg.com/github-buttons/-/github-buttons-2.21.1.tgz#9e55eb83b70c9149a21c235db2e971c53d4d98a2" - integrity sha512-n9bCQ8sj+5oX1YH5NeyWGbAclRDtHEhMBzqw2ctsWpdEHOwVgfruRu0VIVy01Ah10dd/iFajMHYU71L7IBWBOw== + version "2.22.0" + resolved "https://registry.yarnpkg.com/github-buttons/-/github-buttons-2.22.0.tgz#b2669f8504ce5496ab37b7ce53e8ed01db9818bc" + integrity sha512-N5bk01s1WgK1FVtoeSUVkRkJpkaSu8yHMPcjye+PTa0jsRjMRNrYqVLgpUf2RA5Kvec05DfHYAT6/68fwkdqPw== github-from-package@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== -glob-parent@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" - integrity sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA== - dependencies: - is-glob "^3.1.0" - path-dirname "^1.0.0" - -glob-parent@^5.1.2, glob-parent@~5.1.0, glob-parent@~5.1.2: +glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" -glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.1.7: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==

@@ -6372,14 +6549,6 @@ minimatch "^3.1.1"

once "^1.3.0" path-is-absolute "^1.0.0" -global-cache@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/global-cache/-/global-cache-1.2.1.tgz#39ca020d3dd7b3f0934c52b75363f8d53312c16d" - integrity sha512-EOeUaup5DgWKlCMhA9YFqNRIlZwoxt731jCh47WBV9fQqHgXhr3Fa55hfgIUqilIcPsfdNKN7LHjrNY+Km40KA== - dependencies: - define-properties "^1.1.2" - is-symbol "^1.0.1" - global-modules@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"

@@ -6389,13 +6558,6 @@ global-prefix "^1.0.1"

is-windows "^1.0.1" resolve-dir "^1.0.0" -global-modules@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== - dependencies: - global-prefix "^3.0.0" - global-prefix@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe"

@@ -6407,56 +6569,50 @@ ini "^1.3.4"

is-windows "^1.0.1" which "^1.2.14" -global-prefix@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" - integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== - dependencies: - ini "^1.3.5" - kind-of "^6.0.2" - which "^1.3.1" - globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^13.6.0, globals@^13.9.0: - version "13.15.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.15.0.tgz#38113218c907d2f7e98658af246cef8b77e90bac" - integrity sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog== + version "13.17.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" + integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== dependencies: type-fest "^0.20.2" -globby@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" - integrity sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw== +globby@^10.0.1: + version "10.0.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543" + integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg== dependencies: - array-union "^1.0.1" - glob "^7.0.3" - object-assign "^4.0.1" - pify "^2.0.0" - pinkie-promise "^2.0.0" + "@types/glob" "^7.1.1" + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.0.3" + glob "^7.1.3" + ignore "^5.1.1" + merge2 "^1.2.3" + slash "^3.0.0" -got@^9.6.0: - version "9.6.0" - resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" - integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== +got@^11.8.2: + version "11.8.5" + resolved "https://registry.yarnpkg.com/got/-/got-11.8.5.tgz#ce77d045136de56e8f024bebb82ea349bc730046" + integrity sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ== dependencies: - "@sindresorhus/is" "^0.14.0" - "@szmarczak/http-timer" "^1.1.2" - cacheable-request "^6.0.0" - decompress-response "^3.3.0" - duplexer3 "^0.1.4" - get-stream "^4.1.0" - lowercase-keys "^1.0.1" - mimic-response "^1.0.1" - p-cancelable "^1.0.0" - to-readable-stream "^1.0.0" - url-parse-lax "^3.0.0" + "@sindresorhus/is" "^4.0.0" + "@szmarczak/http-timer" "^4.0.5" + "@types/cacheable-request" "^6.0.1" + "@types/responselike" "^1.0.0" + cacheable-lookup "^5.0.3" + cacheable-request "^7.0.2" + decompress-response "^6.0.0" + http2-wrapper "^1.0.0-beta.5.2" + lowercase-keys "^2.0.0" + p-cancelable "^2.0.0" + responselike "^2.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.6, graceful-fs@^4.2.9: +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: version "4.2.10" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==

@@ -6489,20 +6645,6 @@ integrity sha512-+3B2BaG8qQ8E18kzk9yiSdAa75i/hnnOwgSeAxVJctGQPvmeiLtqKOYF6HETCyRjiF7Xfsyal0HbLlxCQkgkrw==

dependencies: arrify "^1.0.1" -graphql-extensions@^0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.15.0.tgz#3f291f9274876b0c289fa4061909a12678bd9817" - integrity sha512-bVddVO8YFJPwuACn+3pgmrEg6I8iBuYLuwvxiE+lcQQ7POotVZxm2rgGw0PvVYmWWf3DT7nTVDZ5ROh/ALp8mA== - dependencies: - "@apollographql/apollo-tools" "^0.5.0" - apollo-server-env "^3.1.0" - apollo-server-types "^0.9.0" - -graphql-iso-date@^3.6.1: - version "3.6.1" - resolved "https://registry.yarnpkg.com/graphql-iso-date/-/graphql-iso-date-3.6.1.tgz#bd2d0dc886e0f954cbbbc496bbf1d480b57ffa96" - integrity sha512-AwFGIuYMJQXOEAgRlJlFL4H1ncFM8n8XmoVDTNypNOZyQ8LFDG2ppMFlsS862BSTCDcSUfHp8PD3/uJhv7t59Q== - graphql-playground-html@^1.6.30: version "1.6.30" resolved "https://registry.yarnpkg.com/graphql-playground-html/-/graphql-playground-html-1.6.30.tgz#14c2a8eb7fc17bfeb1a746bbb28a11e34bf0b391"

@@ -6517,12 +6659,12 @@ integrity sha512-soVUM76ecq5GHk12H69Ce7afzbYuWWc73oKMOcEkmtAn/G9NUdsNvLjLdCnHQX1V0cOUeSbmcYcrebyBOIYGMQ==

dependencies: graphql-playground-html "^1.6.30" -graphql-subscriptions@^1.0.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/graphql-subscriptions/-/graphql-subscriptions-1.2.1.tgz#2142b2d729661ddf967b7388f7cf1dd4cf2e061d" - integrity sha512-95yD/tKi24q8xYa7Q9rhQN16AYj5wPbrb8tmHGM3WRc9EBmWrG/0kkMl+tQG8wcEuE9ibR4zyOM31p5Sdr2v4g== +graphql-scalars@1.17.0: + version "1.17.0" + resolved "https://registry.yarnpkg.com/graphql-scalars/-/graphql-scalars-1.17.0.tgz#10e4f0fe44472d475dd72f14412c065fd1b7aff8" + integrity sha512-y1WtSu6jiW5QdDjK3RWMRTdK+xAAtSIq3IxmtnhxzH7bCkHV/z8VZa8fsSG4BcWbjQQtCQYQvMnvbQ+TBCyJRQ== dependencies: - iterall "^1.3.0" + tslib "~2.3.0" graphql-tag@^2.11.0: version "2.12.6"

@@ -6531,53 +6673,38 @@ integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==

dependencies: tslib "^2.1.0" -graphql-tools@4.0.8, graphql-tools@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-4.0.8.tgz#e7fb9f0d43408fb0878ba66b522ce871bafe9d30" - integrity sha512-MW+ioleBrwhRjalKjYaLQbr+920pHBgy9vM/n47sswtns8+96sRn5M/G+J1eu7IMeKWiN/9p6tmwCHU7552VJg== - dependencies: - apollo-link "^1.2.14" - apollo-utilities "^1.0.1" - deprecated-decorator "^0.1.6" - iterall "^1.1.3" - uuid "^3.1.0" - -graphql-type-json@0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/graphql-type-json/-/graphql-type-json-0.3.2.tgz#f53a851dbfe07bd1c8157d24150064baab41e115" - integrity sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg== - -graphql-type-long@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/graphql-type-long/-/graphql-type-long-0.1.1.tgz#c1b1323f7b3bb3fe48f05502b883145f90adbfd6" - integrity sha512-pIp/F3LR0qqfbF4TX3CwBwPskA7850KG6/DnzaYJtdgxxzw20dcKfutLbyk8okBGg8iHbFoXgnZWHgfwNmxSZw== - -graphql-upload@11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/graphql-upload/-/graphql-upload-11.0.0.tgz#24b245ff18f353bab6715e8a055db9fd73035e10" - integrity sha512-zsrDtu5gCbQFDWsNa5bMB4nf1LpKX9KDgh+f8oL1288ijV4RxeckhVozAjqjXAfRpxOHD1xOESsh6zq8SjdgjA== +graphql-upload@^13.0.0: + version "13.0.0" + resolved "https://registry.yarnpkg.com/graphql-upload/-/graphql-upload-13.0.0.tgz#1a255b64d3cbf3c9f9171fa62a8fb0b9b59bb1d9" + integrity sha512-YKhx8m/uOtKu4Y1UzBFJhbBGJTlk7k4CydlUUiNrtxnwZv0WigbRHP+DVhRNKt7u7DXOtcKZeYJlGtnMXvreXA== dependencies: busboy "^0.3.1" - fs-capacitor "^6.1.0" - http-errors "^1.7.3" - isobject "^4.0.0" - object-path "^0.11.4" + fs-capacitor "^6.2.0" + http-errors "^1.8.1" + object-path "^0.11.8" -graphql@15.5.0: - version "15.5.0" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.5.0.tgz#39d19494dbe69d1ea719915b578bf920344a69d5" - integrity sha512-OmaM7y0kaK31NKG31q4YbD2beNYa6jBBKtMFT6gLYJljHLJr42IqJ8KX08u3Li/0ifzTU5HjmoOOrwa5BRLeDA== - -gud@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" - integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== +graphql@^15.5.1: + version "15.8.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38" + integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw== handle-thing@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== +handlebars@^4.4.3: + version "4.7.7" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.0" + source-map "^0.6.1" + wordwrap "^1.0.0" + optionalDependencies: + uglify-js "^3.1.4" + har-schema@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"

@@ -6620,7 +6747,7 @@ integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==

dependencies: get-intrinsic "^1.1.1" -has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: +has-symbols@^1.0.2, has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==

@@ -6632,7 +6759,7 @@ integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==

dependencies: has-symbols "^1.0.2" -has-unicode@^2.0.0, has-unicode@^2.0.1: +has-unicode@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==

@@ -6708,11 +6835,24 @@ hast-util-parse-selector "^2.0.0"

property-information "^5.0.0" space-separated-tokens "^1.0.0" -he@1.2.x, he@^1.2.0: +he@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== +header-case@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/header-case/-/header-case-1.0.1.tgz#9535973197c144b09613cd65d317ef19963bd02d" + integrity sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ== + dependencies: + no-case "^2.2.0" + upper-case "^1.1.3" + +helmet@^4.4.1: + version "4.6.0" + resolved "https://registry.yarnpkg.com/helmet/-/helmet-4.6.0.tgz#579971196ba93c5978eb019e4e8ec0e50076b4df" + integrity sha512-HVqALKZlR95ROkrnesdhbbZJFi/rIVSoNq6f3jA/9u6MIbTsPh3xZwihjeI5+DO/2sOV6HMHooXcEOuwskHpTg== + highlight.js@^10.4.1, highlight.js@~10.7.0: version "10.7.3" resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531"

@@ -6739,12 +6879,7 @@ hash.js "^1.0.3"

minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.1" -hoek@6.x.x: - version "6.1.3" - resolved "https://registry.yarnpkg.com/hoek/-/hoek-6.1.3.tgz#73b7d33952e01fe27a38b0457294b79dd8da242c" - integrity sha512-YXXAAhmF9zpQbC7LEcREFtXfGq5K1fmd+4PHkBq8NUqmzW3G+Dq10bI/i0KucLRwss3YYFQ0fSfoxBZYiGUqtQ== - -hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.2.1, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2: +hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==

@@ -6775,44 +6910,41 @@ integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==

dependencies: whatwg-encoding "^1.0.5" -html-entities@^1.3.1: - version "1.4.0" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz#cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc" - integrity sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA== +html-entities@^2.1.0, html-entities@^2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.3.tgz#117d7626bece327fc8baace8868fa6f5ef856e46" + integrity sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA== html-escaper@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== -html-loader@^0.5.5: - version "0.5.5" - resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-0.5.5.tgz#6356dbeb0c49756d8ebd5ca327f16ff06ab5faea" - integrity sha512-7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog== +html-loader@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-3.1.2.tgz#5dc7e52d110b97c381468ac3354efd9bfa36c9fd" + integrity sha512-9WQlLiAV5N9fCna4MUmBW/ifaUbuFZ2r7IZmtXzhyfyi4zgPEjXsmsYCKs+yT873MzRj+f1WMjuAiPNA7C6Tcw== dependencies: - es6-templates "^0.2.3" - fastparse "^1.1.1" - html-minifier "^3.5.8" - loader-utils "^1.1.0" - object-assign "^4.1.1" + html-minifier-terser "^6.0.2" + parse5 "^6.0.1" -html-minifier@^3.2.3, html-minifier@^3.5.8: - version "3.5.21" - resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c" - integrity sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA== +html-minifier-terser@^6.0.2: + version "6.1.0" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" + integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== dependencies: - camel-case "3.0.x" - clean-css "4.2.x" - commander "2.17.x" - he "1.2.x" - param-case "2.1.x" - relateurl "0.2.x" - uglify-js "3.4.x" + camel-case "^4.1.2" + clean-css "^5.2.2" + commander "^8.3.0" + he "^1.2.0" + param-case "^3.0.4" + relateurl "^0.2.7" + terser "^5.10.0" html-to-text@^8.0.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/html-to-text/-/html-to-text-8.2.0.tgz#8b35e280ba7fc27710b7aa76d4500aab30731924" - integrity sha512-CLXExYn1b++Lgri+ZyVvbUEFwzkLZppjjZOwB7X1qv2jIi8MrMEvxWX5KQ7zATAzTvcqgmtO00M2kCRMtEdOKQ== + version "8.2.1" + resolved "https://registry.yarnpkg.com/html-to-text/-/html-to-text-8.2.1.tgz#4a75b8a1b646149bd71c50527adb568990bf459b" + integrity sha512-aN/3JvAk8qFsWVeE9InWAWueLXrbkoVZy0TkzaGhoRBC2gCFEeRLDDJN3/ijIGHohy6H+SZzUQWN/hcYtaPK8w== dependencies: "@selderee/plugin-htmlparser2" "^0.6.0" deepmerge "^4.2.2"

@@ -6821,18 +6953,16 @@ htmlparser2 "^6.1.0"

minimist "^1.2.6" selderee "^0.6.0" -html-webpack-plugin@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz#b01abbd723acaaa7b37b6af4492ebda03d9dd37b" - integrity sha512-Br4ifmjQojUP4EmHnRBoUIYcZ9J7M4bTMcm7u6xoIAIuq2Nte4TzXX0533owvkQKQD1WeMTTTyD4Ni4QKxS0Bg== +html-webpack-plugin@5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz#c3911936f57681c1f9f4d8b68c158cd9dfe52f50" + integrity sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw== dependencies: - html-minifier "^3.2.3" - loader-utils "^0.2.16" - lodash "^4.17.3" - pretty-error "^2.0.2" - tapable "^1.0.0" - toposort "^1.0.0" - util.promisify "1.0.0" + "@types/html-minifier-terser" "^6.0.0" + html-minifier-terser "^6.0.2" + lodash "^4.17.21" + pretty-error "^4.0.0" + tapable "^2.0.0" htmlparser2@^6.0.0, htmlparser2@^6.1.0: version "6.1.0"

@@ -6862,6 +6992,17 @@ version "1.2.7"

resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== +http-errors@1.8.1, http-errors@^1.6.3, http-errors@^1.7.3, http-errors@^1.8.0, http-errors@^1.8.1, http-errors@~1.8.0: + version "1.8.1" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" + integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.1" + http-errors@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3"

@@ -6873,17 +7014,6 @@ setprototypeof "1.2.0"

statuses "2.0.1" toidentifier "1.0.1" -http-errors@^1.3.1, http-errors@^1.6.3, http-errors@^1.7.3, http-errors@^1.8.0, http-errors@~1.8.0: - version "1.8.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" - integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== - dependencies: - depd "~1.1.2" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses ">= 1.5.0 < 2" - toidentifier "1.0.1" - http-errors@~1.6.2: version "1.6.3" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"

@@ -6895,9 +7025,9 @@ setprototypeof "1.1.0"

statuses ">= 1.4.0 < 2" http-parser-js@>=0.5.1: - version "0.5.6" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.6.tgz#2e02406ab2df8af8a7abfba62e0da01c62b95afd" - integrity sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA== + version "0.5.8" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" + integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== http-proxy-agent@^4.0.1: version "4.0.1"

@@ -6908,17 +7038,18 @@ "@tootallnate/once" "1"

agent-base "6" debug "4" -http-proxy-middleware@0.19.1: - version "0.19.1" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a" - integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q== +http-proxy-middleware@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" + integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== dependencies: - http-proxy "^1.17.0" - is-glob "^4.0.0" - lodash "^4.17.11" - micromatch "^3.1.10" + "@types/http-proxy" "^1.17.8" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" -http-proxy@^1.17.0: +http-proxy@^1.18.1: version "1.18.1" resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==

@@ -6935,6 +7066,14 @@ dependencies:

assert-plus "^1.0.0" jsprim "^1.2.2" sshpk "^1.7.0" + +http2-wrapper@^1.0.0-beta.5.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" + integrity sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg== + dependencies: + quick-lru "^5.1.1" + resolve-alpn "^1.0.0" https-browserify@^1.0.0: version "1.0.0"

@@ -6961,14 +7100,6 @@ integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==

dependencies: ms "^2.0.0" -i18n-2@*: - version "0.7.3" - resolved "https://registry.yarnpkg.com/i18n-2/-/i18n-2-0.7.3.tgz#c0dfd7793c7ae2c0d6ea00552dc6ee8651154d25" - integrity sha512-NiC0dd+VAVGq/hWsK19XCTwfx7Xr0KPtldQ11/9DHY8Ic4++bbgRhjCvRD1C/K09V7UZpwgVhQuzPPom9XVrOQ== - dependencies: - debug "^3.1.0" - sprintf-js "^1.1.1" - iconv-lite@0.4.13: version "0.4.13" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2"

@@ -6993,49 +7124,32 @@ integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==

dependencies: safer-buffer ">= 2.1.2 < 3.0.0" -icss-replace-symbols@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" - integrity sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg== - -icss-utils@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" - integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== - dependencies: - postcss "^7.0.14" +icss-utils@^5.0.0, icss-utils@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== -ieee754@^1.1.13, ieee754@^1.1.4: +ieee754@^1.1.13, ieee754@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -iferr@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" - integrity sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA== - ignore@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== -immer@^8.0.1: - version "8.0.4" - resolved "https://registry.yarnpkg.com/immer/-/immer-8.0.4.tgz#3a21605a4e2dded852fb2afd208ad50969737b7a" - integrity sha512-jMfL18P+/6P6epANRvRk6q8t+3gGhqsJ9EuJ25AXE+9bNTYtssvzeYbEd0mXRYWCmmXSIbnlpz6vd6iJlmGGGQ== - -immutable@^3.8.2: - version "3.8.2" - resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3" - integrity sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg== +ignore@^5.1.1: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== -immutable@~3.7.4: - version "3.7.6" - resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" - integrity sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw== +immer@9.0.15: + version "9.0.15" + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.15.tgz#0b9169e5b1d22137aba7d43f8a81a495dd1b62dc" + integrity sha512-2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ== -import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1: +import-fresh@^3.0.0, import-fresh@^3.2.1: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==

@@ -7043,14 +7157,6 @@ dependencies:

parent-module "^1.0.0" resolve-from "^4.0.0" -import-local@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" - integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== - dependencies: - pkg-dir "^3.0.0" - resolve-cwd "^2.0.0" - import-local@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4"

@@ -7069,7 +7175,7 @@ version "4.0.0"

resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== -infer-owner@^1.0.3, infer-owner@^1.0.4: +infer-owner@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==

@@ -7079,16 +7185,6 @@ version "2.0.0"

resolved "https://registry.yarnpkg.com/inflation/-/inflation-2.0.0.tgz#8b417e47c28f925a45133d914ca1fd389107f30f" integrity sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw== -inflection@1.12.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.12.0.tgz#a200935656d6f5f6bc4dc7502e1aecb703228416" - integrity sha512-lRy4DxuIFWXlJU7ed8UiTJOSTqStqYdEb4CEbtXfNbkdj3nH1L+reUWiE10VWcJS2yR7tge8Z74pJjtBjNwj0w== - -inflection@^1.12.0: - version "1.13.2" - resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.13.2.tgz#15e8c797c6c3dadf31aa658f8df8a4ea024798b0" - integrity sha512-cmZlljCRTBFouT8UzMzrGcVEvkv6D/wBdcdKG7J1QH5cXjtU75Dm+P27v9EKu/Y43UYyCJd1WC4zLebRrC8NBw== - inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"

@@ -7097,52 +7193,60 @@ dependencies:

once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - integrity sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA== - inherits@2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== -ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: +ini@^1.3.4, ini@~1.3.0: version "1.3.8" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== -inquirer@^6.2.1, inquirer@^6.3.1: - version "6.5.2" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" - integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== +inquirer@8.2.4: + version "8.2.4" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.4.tgz#ddbfe86ca2f67649a67daa6f1051c128f684f0b4" + integrity sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg== dependencies: - ansi-escapes "^3.2.0" - chalk "^2.4.2" - cli-cursor "^2.1.0" - cli-width "^2.0.0" + ansi-escapes "^4.2.1" + chalk "^4.1.1" + cli-cursor "^3.1.0" + cli-width "^3.0.0" external-editor "^3.0.3" - figures "^2.0.0" - lodash "^4.17.12" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^6.4.0" - string-width "^2.1.0" - strip-ansi "^5.1.0" + figures "^3.0.0" + lodash "^4.17.21" + mute-stream "0.0.8" + ora "^5.4.1" + run-async "^2.4.0" + rxjs "^7.5.5" + string-width "^4.1.0" + strip-ansi "^6.0.0" through "^2.3.6" + wrap-ansi "^7.0.0" -internal-ip@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" - integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg== +inquirer@^7.1.0: + version "7.3.3" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" + integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== dependencies: - default-gateway "^4.2.0" - ipaddr.js "^1.9.0" + ansi-escapes "^4.2.1" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.19" + mute-stream "0.0.8" + run-async "^2.4.0" + rxjs "^6.6.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" internal-slot@^1.0.3: version "1.0.3"

@@ -7153,7 +7257,7 @@ get-intrinsic "^1.1.0"

has "^1.0.3" side-channel "^1.0.4" -interpret@^1.4.0: +interpret@^1.2.0: version "1.4.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==

@@ -7163,25 +7267,14 @@ version "2.2.0"

resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== -intl-format-cache@^4.2.24, intl-format-cache@^4.2.43: - version "4.3.1" - resolved "https://registry.yarnpkg.com/intl-format-cache/-/intl-format-cache-4.3.1.tgz#484d31a9872161e6c02139349b259a6229ade377" - integrity sha512-OEUYNA7D06agqPOYhbTkl0T8HA3QKSuwWh1HiClEnpd9vw7N+3XsQt5iZ0GUEchp5CW1fQk/tary+NsbF3yQ1Q== - -intl-messageformat-parser@^5.0.0, intl-messageformat-parser@^5.2.1: - version "5.5.1" - resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-5.5.1.tgz#f09a692755813e6220081e3374df3fb1698bd0c6" - integrity sha512-TvB3LqF2VtP6yI6HXlRT5TxX98HKha6hCcrg9dwlPwNaedVNuQA9KgBdtWKgiyakyCTYHQ+KJeFEstNKfZr64w== - dependencies: - "@formatjs/intl-numberformat" "^5.5.2" - -intl-messageformat@^8.3.7: - version "8.4.1" - resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-8.4.1.tgz#f31c811efc561700b61ab4ee4716b870787c0fe5" - integrity sha512-N4jLt0KebfqXZZZQRwBwZMrqwccHzZnN6KSeUsfidIoHMPIlLIgq08KcYsn7bZS6adh1KKH4/99VODWDDDu85Q== +intl-messageformat@9.6.18: + version "9.6.18" + resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-9.6.18.tgz#785cc0c44a1a288fbbda63308907c3eab4eebe9f" + integrity sha512-phG2EtMS/J6C4pcbErPkTSoqJ+T6qNfPVWTv5cDnI/nuCDKRUHPLDp4QpMdxIWPSUYPj7Lq69vMEIqg91x+H1Q== dependencies: - intl-format-cache "^4.2.43" - intl-messageformat-parser "^5.2.1" + "@formatjs/fast-memoize" "1.1.1" + "@formatjs/icu-messageformat-parser" "2.0.6" + tslib "^2.1.0" invariant@^2.2.1, invariant@^2.2.4: version "2.2.4"

@@ -7189,31 +7282,29 @@ resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"

integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" - -ip-regex@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" - integrity sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw== - -ip@^1.1.0, ip@^1.1.5: - version "1.1.8" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48" - integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== ip@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== -ipaddr.js@1.9.1, ipaddr.js@^1.9.0: +ipaddr.js@1.9.1: version "1.9.1" resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== -is-absolute-url@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" - integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== +ipaddr.js@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0" + integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng== + +is-absolute@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" + integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== + dependencies: + is-relative "^1.0.0" + is-windows "^1.0.1" is-accessor-descriptor@^0.1.6: version "0.1.6"

@@ -7267,24 +7358,12 @@ integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==

dependencies: has-bigints "^1.0.1" -is-binary-path@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - integrity sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q== - dependencies: - binary-extensions "^1.0.0" - is-binary-path@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== dependencies: binary-extensions "^2.0.0" - -is-bluebird@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-bluebird/-/is-bluebird-1.0.2.tgz#096439060f4aa411abee19143a84d6a55346d6e2" - integrity sha512-PDRu1vVip5dGQg5tfn2qVCCyxbBYu5MhYUJwSfL/RoGBI97n1fxvilVazxzptZW0gcmsMH17H4EVZZI5E/RSeA== is-boolean-object@^1.1.0: version "1.1.2"

@@ -7309,10 +7388,10 @@ version "0.0.6"

resolved "https://registry.yarnpkg.com/is-class-hotfix/-/is-class-hotfix-0.0.6.tgz#a527d31fb23279281dde5f385c77b5de70a72435" integrity sha512-0n+pzCC6ICtVr/WXnN2f03TK/3BfXY7me4cjCAqT8TYXEl0+JBRoqBo94JJHXcyDSLUeWbNX8Fvy5g5RJdAstQ== -is-core-module@^2.8.1: - version "2.9.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" - integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== +is-core-module@^2.9.0: + version "2.10.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" + integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== dependencies: has "^1.0.3"

@@ -7360,7 +7439,7 @@ is-accessor-descriptor "^1.0.0"

is-data-descriptor "^1.0.0" kind-of "^6.0.2" -is-docker@2.2.1, is-docker@^2.0.0: +is-docker@2.2.1, is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==

@@ -7381,18 +7460,6 @@ is-extglob@^2.1.0, is-extglob@^2.1.1:

version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== is-fullwidth-code-point@^3.0.0: version "3.0.0"

@@ -7440,7 +7507,14 @@ version "1.0.1"

resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== -is-nan@^1.3.0: +is-lower-case@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/is-lower-case/-/is-lower-case-1.1.3.tgz#7e147be4768dc466db3bfb21cc60b31e6ad69393" + integrity sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA== + dependencies: + lower-case "^1.1.0" + +is-nan@^1.2.1, is-nan@^1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==

@@ -7477,24 +7551,20 @@ version "2.0.0"

resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== -is-path-cwd@^2.0.0: +is-path-cwd@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== -is-path-in-cwd@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb" - integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ== - dependencies: - is-path-inside "^2.1.0" +is-path-inside@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== -is-path-inside@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" - integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg== - dependencies: - path-is-inside "^1.0.2" +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4"

@@ -7513,7 +7583,7 @@ version "1.0.1"

resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== -is-regex@^1.0.4, is-regex@^1.1.0, is-regex@^1.1.4: +is-regex@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==

@@ -7521,6 +7591,13 @@ dependencies:

call-bind "^1.0.2" has-tostringtag "^1.0.0" +is-relative@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" + integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== + dependencies: + is-unc-path "^1.0.0" + is-shared-array-buffer@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"

@@ -7528,13 +7605,6 @@ integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==

dependencies: call-bind "^1.0.2" -is-ssh@^1.3.0: - version "1.3.3" - resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.3.tgz#7f133285ccd7f2c2c7fc897b771b53d95a2b2c7e" - integrity sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ== - dependencies: - protocols "^1.1.0" - is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"

@@ -7552,17 +7622,12 @@ integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==

dependencies: has-tostringtag "^1.0.0" -is-symbol@^1.0.1, is-symbol@^1.0.2, is-symbol@^1.0.3: +is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== dependencies: has-symbols "^1.0.2" - -is-touch-device@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-touch-device/-/is-touch-device-1.0.1.tgz#9a2fd59f689e9a9bf6ae9a86924c4ba805a42eab" - integrity sha512-LAYzo9kMT1b2p19L/1ATGt2XcSilnzNlyvq6c0pbPRVisLbAPpLqr53tIJS00kvrTkj0HtR8U7+u8X0yR8lPSw== is-type-of@^1.0.0: version "1.2.1"

@@ -7573,20 +7638,40 @@ core-util-is "^1.0.2"

is-class-hotfix "~0.0.6" isstream "~0.1.2" +is-typed-array@^1.1.3, is-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67" + integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typedarray@^1.0.0, is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +is-unc-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" + integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== + dependencies: + unc-path-regex "^0.1.2" is-unicode-supported@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== -is-valid-domain@0.0.17: - version "0.0.17" - resolved "https://registry.yarnpkg.com/is-valid-domain/-/is-valid-domain-0.0.17.tgz#2cc19d576b4feebcf4ce5edd99dc8f0280e9d058" - integrity sha512-w0UWEXyrgPeWWwj9FVT14y4/dSIqWgjDkzxbsGDFpT+QRbyS9HTwwNvGus2IOR/03GzCpeChzSWK9Bo9WlStDA== +is-upper-case@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-upper-case/-/is-upper-case-1.1.2.tgz#8d0b1fa7e7933a1e58483600ec7d9661cbaf756f" + integrity sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw== + dependencies: + upper-case "^1.1.0" is-weakref@^1.0.2: version "1.0.2"

@@ -7600,12 +7685,7 @@ version "1.0.2"

resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== -is-wsl@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" - integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== - -is-wsl@^2.0.0: +is-wsl@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==

@@ -7622,10 +7702,15 @@ version "0.0.1"

resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== -isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: +isarray@1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isbinaryfile@^4.0.2: + version "4.0.10" + resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3" + integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw== isexe@^2.0.0: version "2.0.0"

@@ -7644,12 +7729,7 @@ version "3.0.1"

resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== -isobject@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0" - integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA== - -isstream@~0.1.2: +isstream@^0.1.2, isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==

@@ -7689,14 +7769,14 @@ istanbul-lib-coverage "^3.0.0"

source-map "^0.6.1" istanbul-reports@^3.1.3: - version "3.1.4" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c" - integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== + version "3.1.5" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" + integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== dependencies: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" -iterall@^1.1.3, iterall@^1.2.1, iterall@^1.3.0: +iterall@^1.2.1, iterall@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea" integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==

@@ -8088,7 +8168,7 @@ chalk "^4.0.0"

jest-util "^27.5.1" string-length "^4.0.1" -jest-worker@^27.5.1: +jest-worker@^27.4.5, jest-worker@^27.5.1: version "27.5.1" resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==

@@ -8105,6 +8185,11 @@ dependencies:

"@jest/core" "^27.5.1" import-local "^3.0.2" jest-cli "^27.5.1" + +joycon@^3.0.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/joycon/-/joycon-3.1.1.tgz#bce8596d6ae808f8b68168f5fc69280996894f03" + integrity sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw== js-cookie@2.2.1: version "2.2.1"

@@ -8177,17 +8262,12 @@ version "0.5.0"

resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== -json-buffer@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" - integrity sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ== +json-buffer@3.0.1, json-buffer@~3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== -json-parse-better-errors@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-parse-even-better-errors@^2.3.0: +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==

@@ -8217,19 +8297,7 @@ version "5.0.1"

resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@^0.5.0: - version "0.5.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" - integrity sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw== - -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== - dependencies: - minimist "^1.2.0" - -json5@^2.1.2, json5@^2.2.1: +json5@^2.1.2, json5@^2.2.0, json5@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==

@@ -8312,11 +8380,6 @@ dependencies:

jwa "^2.0.0" safe-buffer "^5.0.1" -kareem@2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/kareem/-/kareem-2.3.2.tgz#78c4508894985b8d38a0dc15e1a8e11078f2ca93" - integrity sha512-STHz9P7X2L4Kwn72fA4rGyqyXdmrMSdxqHx9IXon/FXluXieaFA6KJ2upcHAHxQPQ0LeM/OjLrhFxifHewOALQ== - keygrip@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.1.0.tgz#871b1681d5e159c62a445b0c74b615e0917e7226"

@@ -8324,17 +8387,13 @@ integrity sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==

dependencies: tsscmp "1.0.6" -keyv@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" - integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== +keyv@^4.0.0: + version "4.4.1" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.4.1.tgz#5d97bae8dfbb6788ebc9330daf5eb6582e2d3d1c" + integrity sha512-PzByhNxfBLnSBW2MZi1DF+W5+qB/7BMpOokewqIvqS8GFtP7xHm2oeGU72Y1fhtfOv/FiEnI4+nyViYDmUChnw== dependencies: - json-buffer "3.0.0" - -killable@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892" - integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg== + compress-brotli "^1.3.8" + json-buffer "3.0.1" kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2"

@@ -8365,31 +8424,27 @@ version "3.0.3"

resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -klona@^2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" - integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== - -knex@^0.95.6: - version "0.95.15" - resolved "https://registry.yarnpkg.com/knex/-/knex-0.95.15.tgz#39d7e7110a6e2ad7de5d673d2dea94143015e0e7" - integrity sha512-Loq6WgHaWlmL2bfZGWPsy4l8xw4pOE+tmLGkPG0auBppxpI0UcK+GYCycJcqz9W54f2LiGewkCVLBm3Wq4ur/w== +knex@1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/knex/-/knex-1.0.7.tgz#965f4490efc451b140aac4c5c6efa39fd877597b" + integrity sha512-89jxuRATt4qJMb9ZyyaKBy0pQ4d5h7eOFRqiNFnUvsgU+9WZ2eIaZKrAPG1+F3mgu5UloPUnkVE5Yo2sKZUs6Q== dependencies: colorette "2.0.16" - commander "^7.1.0" - debug "4.3.2" + commander "^9.1.0" + debug "4.3.4" escalade "^3.1.1" esm "^3.2.25" - getopts "2.2.5" + get-package-type "^0.1.0" + getopts "2.3.0" interpret "^2.2.0" lodash "^4.17.21" pg-connection-string "2.5.0" - rechoir "0.7.0" + rechoir "^0.8.0" resolve-from "^5.0.0" - tarn "^3.0.1" + tarn "^3.0.2" tildify "2.0.0" -koa-body@^4.2.0: +koa-body@4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/koa-body/-/koa-body-4.2.0.tgz#37229208b820761aca5822d14c5fc55cee31b26f" integrity sha512-wdGu7b9amk4Fnk/ytH8GuWwfs4fsB5iNkY8kZPpgQVb04QZSv85T0M8reb+cJmvLE8cjPYvBzRikD3s6qz8OoA==

@@ -8398,7 +8453,7 @@ "@types/formidable" "^1.0.31"

co-body "^5.1.1" formidable "^1.1.1" -koa-bodyparser@^4.2.1: +koa-bodyparser@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/koa-bodyparser/-/koa-bodyparser-4.3.0.tgz#274c778555ff48fa221ee7f36a9fbdbace22759a" integrity sha512-uyV8G29KAGwZc4q/0WUAjH+Tsmuv9ImfBUF2oZVyZtaeo0husInagyn/JH85xMSxM0hEk/mbCII5ubLDuqW/Rw==

@@ -8411,19 +8466,7 @@ version "4.1.0"

resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-4.1.0.tgz#507306b9371901db41121c812e923d0d67d3e877" integrity sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw== -koa-compose@^3.0.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-3.2.1.tgz#a85ccb40b7d986d8e5a345b3a1ace8eabcf54de7" - integrity sha512-8gen2cvKHIZ35eDEik5WOo8zbVp9t4cP8p4hW4uE55waxolLRexKKrqfCpwhGVppnB40jWeF8bZeTVg99eZgPw== - dependencies: - any-promise "^1.1.0" - -koa-compose@~2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-2.3.0.tgz#4617fa832a16412a56967334304efd797d6ed35c" - integrity sha512-nnWA0chVm0d3ta1JRDSj6z7stsxPcfuydO912IgZ5QIZ6Z8qluMSX+kCkgcrJB5StRTnNqvRcy2yodh/UWOWuw== - -koa-compress@^5.0.1: +koa-compress@5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/koa-compress/-/koa-compress-5.1.0.tgz#7b9fe24f4c1b28d9cae90864597da472c2fcf701" integrity sha512-G3Ppo9jrUwlchp6qdoRgQNMiGZtM0TAHkxRZQ7EoVvIG8E47J4nAsMJxXHAUQ+0oc7t0MDxSdONWTFcbzX7/Bg==

@@ -8434,14 +8477,6 @@ http-errors "^1.8.0"

koa-is-json "^1.0.0" statuses "^2.0.1" -koa-convert@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/koa-convert/-/koa-convert-1.2.0.tgz#da40875df49de0539098d1700b50820cebcd21d0" - integrity sha512-K9XqjmEDStGX09v3oxR7t5uPRy0jqJdvodHa6wxWTHrTfDq0WUNnYTOOUZN6g8OM8oZQXprQASbiIXG2Ez8ehA== - dependencies: - co "^4.6.0" - koa-compose "^3.0.0" - koa-convert@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/koa-convert/-/koa-convert-2.0.0.tgz#86a0c44d81d40551bae22fee6709904573eea4f5"

@@ -8450,27 +8485,26 @@ dependencies:

co "^4.6.0" koa-compose "^4.1.0" -koa-favicon@^2.0.0: +koa-favicon@2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/koa-favicon/-/koa-favicon-2.1.0.tgz#c430cc594614fb494adcb5ee1196a2f7f53ea442" integrity sha512-LvukcooYjxKtnZq0RXdBup+JDhaHwLgnLlDHB/xvjwQEjbc4rbp/0WkmOzpOvaHujc+fIwPear0dpKX1V+dHVg== dependencies: mz "^2.7.0" -koa-i18n@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/koa-i18n/-/koa-i18n-2.1.0.tgz#c5d399218a5307c11be54313a038b1937e529362" - integrity sha512-pWxllaAv0aRN/07ImMYFDTbvyo9PtjzWULZS6YTdc+jTmJ6SFVe3tVDfRhPzFeQXNFOPh12eHVG7uHb431ci2w== +koa-helmet@6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/koa-helmet/-/koa-helmet-6.1.0.tgz#5ace72266b4b86c21c7a435ffcdaf3999e2d3a6d" + integrity sha512-WymEv4qo/7ghh15t+1qTjvZBmZkmVlTtfnpe5oxn8m8mO2Q2rKJ3eMvWuQGW/6yVxN9+hQ75evuWcg3XBbFLbg== dependencies: - debug "*" - i18n-2 "*" + helmet "^4.4.1" -koa-ip@^2.0.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/koa-ip/-/koa-ip-2.1.2.tgz#a7e64c3f8c0e6736565b8bc1229993c0b711788e" - integrity sha512-U9w+WkasaIeHRrPfAp/J7UsGCqdCOeavetq6ASMjXUvMmEboKAWGFUlt0c2QU3z6F6Q5NJloh8IwkgWzoaJ8Tg== +koa-ip@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/koa-ip/-/koa-ip-2.1.0.tgz#e684e8f8810a77321ee456c50d542216a4a9ccc1" + integrity sha512-3gpcu8i2YFR0jf8j98Mw2yUAglu3powVxFiYQGMe89n6JGGVIg6dv7zRMN+l8HF3wdiLseAfj2C97h+wlJAw4Q== dependencies: - debug "4.3.4" + debug "4.1.1" lodash.isplainobject "4.0.6" request-ip "2.1.3"

@@ -8479,35 +8513,12 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/koa-is-json/-/koa-is-json-1.0.0.tgz#273c07edcdcb8df6a2c1ab7d59ee76491451ec14" integrity sha512-+97CtHAlWDx0ndt0J8y3P12EWLwTLMXIfMnYDev3wOTwH/RpBGMlfn4bDXlMEg1u73K6XRE9BbUp+5ZAYoRYWw== -koa-locale@~1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/koa-locale/-/koa-locale-1.3.0.tgz#95289ae6fa4098804a1ee8aadd46b0af1c82cbcb" - integrity sha512-90g3/l0Xv44AiHKIXRS6oglMnFNF3c2Z/ycipVqVC5NAbC3qG5mOvjlHX+weCqxiZ5DTc8TiIgjWseiUD31Y+A== - dependencies: - delegates "1.0.0" - -koa-lusca@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/koa-lusca/-/koa-lusca-2.2.0.tgz#6eb96d3012458c697447f688200976bf49bb9bfc" - integrity sha512-l0SAGrwO1QE5HjFvBJscCEUQKarTNDsaHwg3ABj6k5Wa26oft3f547KsGvsyvnQsezZZbSoZJpJGPnkUMAVTUg== - dependencies: - koa-compose "~2.3.0" - -koa-passport@4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/koa-passport/-/koa-passport-4.1.4.tgz#5f1665c1c2a37ace79af9f970b770885ca30ccfa" - integrity sha512-dJBCkl4X+zdYxbI2V2OtoGy0PUenpvp2ZLLWObc8UJhsId0iQpTFT8RVcuA0709AL2txGwRHnSPoT1bYNGa6Kg== - dependencies: - passport "^0.4.0" - -koa-proxy@^1.0.0-alpha.3: - version "1.0.0-alpha.3" - resolved "https://registry.yarnpkg.com/koa-proxy/-/koa-proxy-1.0.0-alpha.3.tgz#afc61edc9dc6a195464664beccc162cfe994bf55" - integrity sha512-8ke0WoQKAsQ8BpkC9+I83lKsFaycE9fcLeTx12jQtEa5SrdTI6mNKR5M4LslHbvkX1hDhXreIszXsnom5Ej7RQ== +koa-passport@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/koa-passport/-/koa-passport-5.0.0.tgz#66c8e91b06358969ab6129d90368fa07a06fafc0" + integrity sha512-eNGg3TGgZ4ydm9DYCOqaa0ySSA/44BS6X+v4CKjP/nHOoXlADRonHsZvS3QWok6EV0ZL0V7FhfWxRYfD2B5kTQ== dependencies: - pause-stream "0.0.11" - request "^2.88.0" - request-promise-native "^1.0.5" + passport "^0.6.0" koa-range@0.3.0: version "0.3.0"

@@ -8516,18 +8527,6 @@ integrity sha512-Ich3pCz6RhtbajYXRWjIl6O5wtrLs6kE3nkXc9XmaWe+MysJyZO7K4L3oce1Jpg/iMgCbj+5UCiMm/rqVtcDIg==

dependencies: stream-slice "^0.1.2" -koa-router@^7.4.0: - version "7.4.0" - resolved "https://registry.yarnpkg.com/koa-router/-/koa-router-7.4.0.tgz#aee1f7adc02d5cb31d7d67465c9eacc825e8c5e0" - integrity sha512-IWhaDXeAnfDBEpWS6hkGdZ1ablgr6Q6pGdXCyK38RbzuH4LkUOpPqPw+3f8l8aTDrQmBQ7xJc0bs2yV4dzcO+g== - dependencies: - debug "^3.1.0" - http-errors "^1.3.1" - koa-compose "^3.0.0" - methods "^1.0.1" - path-to-regexp "^1.1.1" - urijs "^1.19.0" - koa-send@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/koa-send/-/koa-send-5.0.1.tgz#39dceebfafb395d0d60beaffba3a70b4f543fe79"

@@ -8537,7 +8536,7 @@ debug "^4.1.1"

http-errors "^1.7.3" resolve-path "^1.4.0" -koa-session@^6.2.0: +koa-session@6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/koa-session/-/koa-session-6.2.0.tgz#c0da2a808b520f62a25dac9f2914b580b2402078" integrity sha512-l2ZC6D1BnRkIXhWkRgpewdqKn38/9/2WScmxyShuN408TxX+J/gUzdzGBIvGZaRwmezOU819sNpGmfFGLeDckg==

@@ -8547,7 +8546,7 @@ debug "^3.1.0"

is-type-of "^1.0.0" uuid "^3.3.2" -koa-static@^5.0.0: +koa-static@5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/koa-static/-/koa-static-5.0.0.tgz#5e92fc96b537ad5219f425319c95b64772776943" integrity sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==

@@ -8555,45 +8554,12 @@ dependencies:

debug "^3.1.0" koa-send "^5.0.0" -koa2-ratelimit@^0.9.0: - version "0.9.1" - resolved "https://registry.yarnpkg.com/koa2-ratelimit/-/koa2-ratelimit-0.9.1.tgz#d8264517a7c29360485624fb9889aea416f8344e" - integrity sha512-9eYPcHN7OVE2VHi5Qpy3vreDUCCEfBbwGav6LfSEybxdYXJwNDc1If8nyexvNY2q4UsYLbFGIkHmSxiNTg8kug== - dependencies: - mongoose "^5.5.13" - redis "^4.0.0" - sequelize "^5.8.7" +koa2-ratelimit@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/koa2-ratelimit/-/koa2-ratelimit-1.1.1.tgz#9c1d8257770e4a0a08063ba2ddcaf690fd457d23" + integrity sha512-IpxGMdZqEhMykW0yYKGVB4vDEacPvSBH4hNpDL38ABj3W2KHNLujAljGEDg7eEjXvrRbXRSWXzANhV3c9v7nyg== -koa@2.13.1: - version "2.13.1" - resolved "https://registry.yarnpkg.com/koa/-/koa-2.13.1.tgz#6275172875b27bcfe1d454356a5b6b9f5a9b1051" - integrity sha512-Lb2Dloc72auj5vK4X4qqL7B5jyDPQaZucc9sR/71byg7ryoD1NCaCm63CShk9ID9quQvDEi1bGR/iGjCG7As3w== - dependencies: - accepts "^1.3.5" - cache-content-type "^1.0.0" - content-disposition "~0.5.2" - content-type "^1.0.4" - cookies "~0.8.0" - debug "~3.1.0" - delegates "^1.0.0" - depd "^2.0.0" - destroy "^1.0.4" - encodeurl "^1.0.2" - escape-html "^1.0.3" - fresh "~0.5.2" - http-assert "^1.3.0" - http-errors "^1.6.3" - is-generator-function "^1.0.7" - koa-compose "^4.1.0" - koa-convert "^1.2.0" - on-finished "^2.3.0" - only "~0.0.2" - parseurl "^1.3.2" - statuses "^1.5.0" - type-is "^1.6.16" - vary "^1.1.2" - -koa@^2.13.1: +koa@2.13.4: version "2.13.4" resolved "https://registry.yarnpkg.com/koa/-/koa-2.13.4.tgz#ee5b0cb39e0b8069c38d115139c774833d32462e" integrity sha512-43zkIKubNbnrULWlHdN5h1g3SEKXOEzoAlRsHOTFpnlDu8JlAOZSMJBLULusuXRequboiwJcj5vtYXKB3k7+2g==

@@ -8621,6 +8587,11 @@ parseurl "^1.3.2"

statuses "^1.5.0" type-is "^1.6.16" vary "^1.1.2" + +kuler@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" + integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== leven@^3.1.0: version "3.1.0"

@@ -8671,6 +8642,20 @@ version "1.1.0"

resolved "https://registry.yarnpkg.com/libqp/-/libqp-1.1.0.tgz#f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8" integrity sha512-4Rgfa0hZpG++t1Vi2IiqXG9Ad1ig4QTmtuZF946QJP4bPqOYC78ixUXgz5TW/wE7lNaNKlplSYTxQ+fR2KZ0EA== +liftoff@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.5.0.tgz#2009291bb31cea861bbf10a7c15a28caf75c31ec" + integrity sha512-01zfGFqfORP1CGmZZP2Zn51zsqz4RltDi0RDOhbGoLYdUT5Lw+I2gX6QdwXhPITF6hPOHEOp+At6/L24hIg9WQ== + dependencies: + extend "^3.0.0" + findup-sync "^2.0.0" + fined "^1.0.1" + flagged-respawn "^1.0.0" + is-plain-object "^2.0.4" + object.map "^1.0.0" + rechoir "^0.6.2" + resolve "^1.1.7" + lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"

@@ -8683,29 +8668,10 @@ integrity sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==

dependencies: uc.micro "^1.0.1" -loader-runner@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" - integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== - -loader-utils@^0.2.16: - version "0.2.17" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" - integrity sha512-tiv66G0SmiOx+pLWMtGEkfSEejxvb6N6uRrQjfWJIT79W9GMpgKeCAmm9aVBKtd4WEgntciI8CsGqjpDoCWJug== - dependencies: - big.js "^3.1.3" - emojis-list "^2.0.0" - json5 "^0.5.0" - object-assign "^4.0.1" - -loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" - integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^1.0.1" +loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== loader-utils@^2.0.0: version "2.0.2"

@@ -8716,14 +8682,6 @@ big.js "^5.2.2"

emojis-list "^3.0.0" json5 "^2.1.2" -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - locate-path@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"

@@ -8731,7 +8689,14 @@ integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==

dependencies: p-locate "^4.1.0" -lodash-es@^4.17.21: +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash-es@^4.17.15, lodash-es@^4.17.21: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==

@@ -8745,6 +8710,11 @@ lodash.deburr@^4.1.0:

version "4.1.0" resolved "https://registry.yarnpkg.com/lodash.deburr/-/lodash.deburr-4.1.0.tgz#ddb1bbb3ef07458c0177ba07de14422cb033ff9b" integrity sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ== + +lodash.get@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== lodash.includes@^4.3.0: version "4.3.0"

@@ -8791,26 +8761,23 @@ version "4.7.0"

resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== -lodash.throttle@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" - integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== - lodash.truncate@^4.4.2: version "4.4.2" resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== -lodash.xorby@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/lodash.xorby/-/lodash.xorby-4.7.0.tgz#9c19a6f9f063a6eb53dd03c1b6871799801463d7" - integrity sha512-gYiD6nvuQy0AEkMoUju+t4f4Rn18fjsLB/7x7YZFqtFT9kmegRLrj/uGEQVyVDy7otTmSrIMXNOk2wwuLcfHCQ== - -lodash@4.17.21, lodash@^4.1.1, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.7.0: +lodash@4.17.21, lodash@^4.17.11, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== +log-symbols@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== + dependencies: + chalk "^2.0.1" + log-symbols@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"

@@ -8819,7 +8786,18 @@ dependencies:

chalk "^4.1.0" is-unicode-supported "^0.1.0" -loglevel@^1.6.7, loglevel@^1.6.8: +logform@^2.2.0, logform@^2.3.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/logform/-/logform-2.4.2.tgz#a617983ac0334d0c3b942c34945380062795b47c" + integrity sha512-W4c9himeAwXEdZ05dQNerhFz2XG80P9Oj0loPUMV23VC2it0orMHQhJm4hdnnor3rd1HsGf6a2lPwBM1zeXHGw== + dependencies: + "@colors/colors" "1.5.0" + fecha "^4.2.0" + ms "^2.1.1" + safe-stable-stringify "^2.3.1" + triple-beam "^1.3.0" + +loglevel@^1.6.8: version "1.8.0" resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.8.0.tgz#e7ec73a57e1e7b419cb6c6ac06bf050b67356114" integrity sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==

@@ -8841,7 +8819,14 @@ integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==

dependencies: js-tokens "^3.0.0 || ^4.0.0" -lower-case@^1.1.1: +lower-case-first@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-1.0.2.tgz#e5da7c26f29a7073be02d52bac9980e5922adfa1" + integrity sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA== + dependencies: + lower-case "^1.1.2" + +lower-case@^1.1.0, lower-case@^1.1.1, lower-case@^1.1.2: version "1.1.4" resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" integrity sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==

@@ -8853,11 +8838,6 @@ integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==

dependencies: tslib "^2.0.3" -lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== - lowercase-keys@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479"

@@ -8871,25 +8851,28 @@ dependencies:

fault "^1.0.0" highlight.js "~10.7.0" -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" + +lru-cache@^7.10.1: + version "7.14.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.14.0.tgz#21be64954a4680e303a09e9468f880b98a0b3c7f" + integrity sha512-EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ== lru_map@^0.3.3: version "0.3.3" resolved "https://registry.yarnpkg.com/lru_map/-/lru_map-0.3.3.tgz#b5c8351b9464cbd750335a79650a0ec0e56118dd" integrity sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ== +luxon@^1.26.0: + version "1.28.0" + resolved "https://registry.yarnpkg.com/luxon/-/luxon-1.28.0.tgz#e7f96daad3938c06a62de0fb027115d251251fbf" + integrity sha512-TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ== + mailcomposer@3.12.0: version "3.12.0" resolved "https://registry.yarnpkg.com/mailcomposer/-/mailcomposer-3.12.0.tgz#9c5e1188aa8e1c62ec8b86bd43468102b639e8f9"

@@ -8897,14 +8880,6 @@ integrity sha512-zBeDoKUTNI8IAsazoMQFt3eVSVRtDtgrvBjBVdBjxDEX+5KLlKtEFCrBXnxPhs8aTYufUS1SmbFnGpjHS53deg==

dependencies: buildmail "3.10.0" libmime "2.1.0" - -make-dir@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - dependencies: - pify "^4.0.1" - semver "^5.6.0" make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: version "3.1.0"

@@ -8935,6 +8910,13 @@ promise-retry "^2.0.1"

socks-proxy-agent "^6.0.0" ssri "^8.0.0" +make-iterator@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" + integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw== + dependencies: + kind-of "^6.0.2" + makeerror@1.0.12: version "1.0.12" resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a"

@@ -8942,7 +8924,7 @@ integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==

dependencies: tmpl "1.0.5" -map-cache@^0.2.2: +map-cache@^0.2.0, map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==

@@ -8964,7 +8946,7 @@ version "3.0.0"

resolved "https://registry.yarnpkg.com/markdown-it-container/-/markdown-it-container-3.0.0.tgz#1d19b06040a020f9a827577bb7dbf67aa5de9a5b" integrity sha512-y6oKTq4BB9OQuY/KLfk/O3ysFhB3IMYoIWhGJEidXt1NQFocFK2sA2t0NYZAMyMShAGL6x5OPIbrmXPIqaN9rw== -markdown-it-deflist@^2.0.3: +markdown-it-deflist@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/markdown-it-deflist/-/markdown-it-deflist-2.1.0.tgz#50d7a56b9544cd81252f7623bd785e28a8dcef5c" integrity sha512-3OuqoRUlSxJiuQYu0cWTLHNhhq2xtoSFqsZK8plANg91+RJQU1ziQ6lA2LzmFAEes18uPBsHZpcX6We5l76Nzg==

@@ -8974,7 +8956,7 @@ version "2.0.2"

resolved "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-2.0.2.tgz#cd42421c2fda1537d9cc12b9923f5c8aeb9029c8" integrity sha512-zLftSaNrKuYl0kR5zm4gxXjHaOI3FAOEaloKmRA5hijmJZvSjmxcokOLlzycb/HXlUFWzXqpIEoyEMCE4i9MvQ== -markdown-it-footnote@^3.0.2: +markdown-it-footnote@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/markdown-it-footnote/-/markdown-it-footnote-3.0.3.tgz#e0e4c0d67390a4c5f0c75f73be605c7c190ca4d8" integrity sha512-YZMSuCGVZAjzKMn+xqIco9d1cLGxbELHZ9do/TSYVzraooV8ypsppKNmUJ0fVH5ljkCInQAtFpm8Rb3eXSrt5w==

@@ -8994,12 +8976,12 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/markdown-it-sub/-/markdown-it-sub-1.0.0.tgz#375fd6026eae7ddcb012497f6411195ea1e3afe8" integrity sha512-z2Rm/LzEE1wzwTSDrI+FlPEveAAbgdAdPhdWarq/ZGJrGW/uCQbKAnhoCsE4hAbc3SEym26+W2z/VQB0cQiA9Q== -markdown-it-sup@^1.0.0: +markdown-it-sup@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/markdown-it-sup/-/markdown-it-sup-1.0.0.tgz#cb9c9ff91a5255ac08f3fd3d63286e15df0a1fc3" integrity sha512-E32m0nV9iyhRR7CrhnzL5msqic7rL1juWre6TQNxsnApg7Uf+F97JOKxUijg5YwXz86lZ0mqfOnutoryyNdntQ== -markdown-it@^12.0.6: +markdown-it@^12.3.2: version "12.3.2" resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-12.3.2.tgz#bf92ac92283fe983fe4de8ff8abfb5ad72cd0c90" integrity sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==

@@ -9045,32 +9027,18 @@ version "0.3.0"

resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== -memoize-one@^5.0.0: +memfs@^3.4.1, memfs@^3.4.3: + version "3.4.7" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.7.tgz#e5252ad2242a724f938cb937e3c4f7ceb1f70e5a" + integrity sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw== + dependencies: + fs-monkey "^1.0.3" + +"memoize-one@>=3.1.1 <6", memoize-one@^5.0.0: version "5.2.1" resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e" integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q== -memory-fs@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" - integrity sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ== - dependencies: - errno "^0.1.3" - readable-stream "^2.0.1" - -memory-fs@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c" - integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== - dependencies: - errno "^0.1.3" - readable-stream "^2.0.1" - -memory-pager@^1.0.2: - version "1.5.0" - resolved "https://registry.yarnpkg.com/memory-pager/-/memory-pager-1.5.0.tgz#d8751655d22d384682741c972f2c3d6dfa3e66b5" - integrity sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg== - merge-descriptors@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"

@@ -9081,12 +9049,17 @@ version "2.0.0"

resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== -methods@^1.0.1, methods@~1.1.2: +merge2@^1.2.3, merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +methods@^1.1.2, methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== -micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: +micromatch@^3.0.4: version "3.1.10" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==

@@ -9105,7 +9078,7 @@ regex-not "^1.0.0"

snapdragon "^0.8.1" to-regex "^3.0.2" -micromatch@^4.0.4: +micromatch@^4.0.2, micromatch@^4.0.4: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==

@@ -9131,7 +9104,7 @@ version "1.52.0"

resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@^2.1.18, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: +mime-types@2.1.35, mime-types@^2.1.12, mime-types@^2.1.18, mime-types@^2.1.27, mime-types@^2.1.28, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: version "2.1.35" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==

@@ -9143,11 +9116,6 @@ version "1.6.0"

resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== -mime@^2.0.3, mime@^2.4.4: - version "2.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" - integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== - mimic-fn@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"

@@ -9158,15 +9126,15 @@ version "2.1.0"

resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -mimic-response@^1.0.0, mimic-response@^1.0.1: +mimic-response@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== -mimic-response@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" - integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== mini-create-react-context@^0.4.0: version "0.4.1"

@@ -9176,14 +9144,12 @@ dependencies:

"@babel/runtime" "^7.12.1" tiny-warning "^1.0.3" -mini-css-extract-plugin@^1.4.0: - version "1.6.2" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz#83172b4fd812f8fc4a09d6f6d16f924f53990ca8" - integrity sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q== +mini-css-extract-plugin@2.4.4: + version "2.4.4" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.4.tgz#c7e5d2d931dcf100ae50ae949ba757c506b54b0f" + integrity sha512-UJ+aNuFQaQaECu7AamlWOBLj2cJ6XSGU4zNiqXeZ7lZLe5VD0DoSPWFbWArXueo+6FZVbgHzpX9lUIaBIDLuYg== dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - webpack-sources "^1.1.0" + schema-utils "^3.1.0" minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: version "1.0.1"

@@ -9195,14 +9161,14 @@ version "1.0.1"

resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== -minimatch@^3.0.4, minimatch@^3.1.1: +minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" -minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6: +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==

@@ -9246,14 +9212,7 @@ integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==

dependencies: minipass "^3.0.0" -minipass@^3.0.0: - version "3.1.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.6.tgz#3b8150aa688a711a1521af5e8779c1d3bb4f45ee" - integrity sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ== - dependencies: - yallist "^4.0.0" - -minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3: +minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3: version "3.3.4" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.4.tgz#ca99f95dd77c43c7a76bf51e6d200025eee0ffae" integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==

@@ -9268,22 +9227,6 @@ dependencies:

minipass "^3.0.0" yallist "^4.0.0" -mississippi@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" - integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== - dependencies: - concat-stream "^1.5.0" - duplexify "^3.4.2" - end-of-stream "^1.1.0" - flush-write-stream "^1.0.0" - from2 "^2.1.0" - parallel-transform "^1.1.0" - pump "^3.0.0" - pumpify "^1.3.3" - stream-each "^1.1.0" - through2 "^2.0.0" - mixin-deep@^1.2.0: version "1.3.2" resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"

@@ -9297,7 +9240,7 @@ version "0.5.3"

resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== -mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5: +mkdirp@^0.5.1: version "0.5.6" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==

@@ -9309,89 +9252,11 @@ version "1.0.4"

resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -moment-timezone@^0.5.21, moment-timezone@^0.5.31: - version "0.5.34" - resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.34.tgz#a75938f7476b88f155d3504a9343f7519d9a405c" - integrity sha512-3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg== - dependencies: - moment ">= 2.9.0" - -"moment@>= 2.9.0", moment@>=1.6.0, moment@^2.24.0, moment@^2.27.0, moment@^2.29.1: - version "2.29.3" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.3.tgz#edd47411c322413999f7a5940d526de183c031f3" - integrity sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw== - -mongodb@3.7.3: - version "3.7.3" - resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.7.3.tgz#b7949cfd0adc4cc7d32d3f2034214d4475f175a5" - integrity sha512-Psm+g3/wHXhjBEktkxXsFMZvd3nemI0r3IPsE0bU+4//PnvNWKkzhZcEsbPcYiWqe8XqXJJEg4Tgtr7Raw67Yw== - dependencies: - bl "^2.2.1" - bson "^1.1.4" - denque "^1.4.1" - optional-require "^1.1.8" - safe-buffer "^5.1.2" - optionalDependencies: - saslprep "^1.0.0" - -mongoose-legacy-pluralize@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/mongoose-legacy-pluralize/-/mongoose-legacy-pluralize-1.0.2.tgz#3ba9f91fa507b5186d399fb40854bff18fb563e4" - integrity sha512-Yo/7qQU4/EyIS8YDFSeenIvXxZN+ld7YdV9LqFVQJzTLye8unujAWPZ4NWKfFA+RNjh+wvTWKY9Z3E5XM6ZZiQ== - -mongoose@^5.5.13: - version "5.13.14" - resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-5.13.14.tgz#ffc9704bd022dd018fbddcbe27dc802c77719fb4" - integrity sha512-j+BlQjjxgZg0iWn42kLeZTB91OejcxWpY2Z50bsZTiKJ7HHcEtcY21Godw496GMkBqJMTzmW7G/kZ04mW+Cb7Q== - dependencies: - "@types/bson" "1.x || 4.0.x" - "@types/mongodb" "^3.5.27" - bson "^1.1.4" - kareem "2.3.2" - mongodb "3.7.3" - mongoose-legacy-pluralize "1.0.2" - mpath "0.8.4" - mquery "3.2.5" - ms "2.1.2" - optional-require "1.0.x" - regexp-clone "1.0.0" - safe-buffer "5.2.1" - sift "13.5.2" - sliced "1.0.1" - moo@^0.5.0, moo@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4" integrity sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w== -move-concurrently@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" - integrity sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ== - dependencies: - aproba "^1.1.1" - copy-concurrently "^1.0.0" - fs-write-stream-atomic "^1.0.8" - mkdirp "^0.5.1" - rimraf "^2.5.4" - run-queue "^1.0.3" - -mpath@0.8.4: - version "0.8.4" - resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.8.4.tgz#6b566d9581621d9e931dd3b142ed3618e7599313" - integrity sha512-DTxNZomBcTWlrMW76jy1wvV37X/cNNxPW1y2Jzd4DZkAaC5ZGsm8bfGfNOthcDuRJujXLqiuS6o3Tpy0JEoh7g== - -mquery@3.2.5: - version "3.2.5" - resolved "https://registry.yarnpkg.com/mquery/-/mquery-3.2.5.tgz#8f2305632e4bb197f68f60c0cffa21aaf4060c51" - integrity sha512-VjOKHHgU84wij7IUoZzFRU07IAxd5kWJaDmyUzQlbjHjyoeK5TNeeo8ZsFDtTYnSgpW6n/nMNIHvE3u8Lbrf4A== - dependencies: - bluebird "3.5.1" - debug "3.1.0" - regexp-clone "^1.0.0" - safe-buffer "5.1.2" - sliced "1.0.1" - ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"

@@ -9407,23 +9272,26 @@ version "2.1.3"

resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -multicast-dns-service-types@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" - integrity sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ== - -multicast-dns@^6.0.1: - version "6.2.3" - resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229" - integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g== +multicast-dns@^7.2.5: + version "7.2.5" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" + integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== dependencies: - dns-packet "^1.3.1" + dns-packet "^5.2.2" thunky "^1.0.2" -mute-stream@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" - integrity sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ== +multistream@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/multistream/-/multistream-4.1.0.tgz#7bf00dfd119556fbc153cff3de4c6d477909f5a8" + integrity sha512-J1XDiAmmNpRCBfIWJv+n0ymC4ABcf/Pl+5YvC5B/D2f/2+8PtHvCNxMPKiQcZyi922Hq69J2YOpb1pTywfifyw== + dependencies: + once "^1.4.0" + readable-stream "^3.6.0" + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== mz@^2.7.0: version "2.7.0"

@@ -9433,11 +9301,6 @@ dependencies:

any-promise "^1.0.0" object-assign "^4.0.1" thenify-all "^1.0.0" - -nan@^2.12.1: - version "2.16.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.16.0.tgz#664f43e45460fb98faf00edca0bb0d7b8dce7916" - integrity sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA== nano-time@1.0.0: version "1.0.0"

@@ -9498,17 +9361,25 @@ version "0.6.3"

resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== -neo-async@^2.5.0, neo-async@^2.6.1: +neo-async@^2.6.0, neo-async@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +nexus@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/nexus/-/nexus-1.2.0.tgz#12c4611702184fac170c98c1a2c778a76a9e9827" + integrity sha512-7+0240LrQNnKKLTgbxM6KLLdfMgm4wp1TPAULim0lGmHfX7QsJK39i2KmFdMr3WdsAKoybMmwyrJtaYOq0q62g== + dependencies: + iterall "^1.3.0" + tslib "^2.0.3" nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -no-case@^2.2.0: +no-case@^2.2.0, no-case@^2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==

@@ -9523,34 +9394,34 @@ dependencies:

lower-case "^2.0.2" tslib "^2.0.3" -node-abi@^2.21.0: - version "2.30.1" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.30.1.tgz#c437d4b1fe0e285aaf290d45b45d4d7afedac4cf" - integrity sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w== +node-abi@^3.3.0: + version "3.24.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.24.0.tgz#b9d03393a49f2c7e147d0c99f180e680c27c1599" + integrity sha512-YPG3Co0luSu6GwOBsmIdGW6Wx0NyNDLg/hriIyDllVsNwnI6UeqaWShxC3lbH4LtEQUgoLP3XR1ndXiDAWvmRw== dependencies: - semver "^5.4.1" + semver "^7.3.5" -node-addon-api@^4.0.0, node-addon-api@^4.2.0: +node-addon-api@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== -node-fetch@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== +node-addon-api@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.0.0.tgz#7d7e6f9ef89043befdb20c1989c905ebde18c501" + integrity sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA== -node-fetch@2.6.7, node-fetch@^2.1.2, node-fetch@^2.2.0, node-fetch@^2.6.1, node-fetch@^2.6.7: +node-fetch@2.6.7, node-fetch@^2.6.1, node-fetch@^2.6.7: version "2.6.7" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== dependencies: whatwg-url "^5.0.0" -node-forge@^0.10.0: - version "0.10.0" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" - integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== +node-forge@^1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== node-gyp@8.x: version "8.4.1"

@@ -9573,53 +9444,71 @@ version "0.4.0"

resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-libs-browser@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" - integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== +node-machine-id@1.1.12, node-machine-id@^1.1.10: + version "1.1.12" + resolved "https://registry.yarnpkg.com/node-machine-id/-/node-machine-id-1.1.12.tgz#37904eee1e59b320bb9c5d6c0a59f3b469cb6267" + integrity sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ== + +node-plop@0.26.3, node-plop@^0.26.3: + version "0.26.3" + resolved "https://registry.yarnpkg.com/node-plop/-/node-plop-0.26.3.tgz#d6fa7e71393c8b940513ba8c4868f8aaa6dea9df" + integrity sha512-Cov028YhBZ5aB7MdMWJEmwyBig43aGL5WT4vdoB28Oitau1zZAcHUn8Sgfk9HM33TqhtLJ9PlM/O0Mv+QpV/4Q== + dependencies: + "@babel/runtime-corejs3" "^7.9.2" + "@types/inquirer" "^6.5.0" + change-case "^3.1.0" + del "^5.1.0" + globby "^10.0.1" + handlebars "^4.4.3" + inquirer "^7.1.0" + isbinaryfile "^4.0.2" + lodash.get "^4.4.2" + mkdirp "^0.5.1" + resolve "^1.12.0" + +node-polyfill-webpack-plugin@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-1.1.4.tgz#56bfa4d16e17addb9d6b1ef3d04e790c401f5f1d" + integrity sha512-Z0XTKj1wRWO8o/Vjobsw5iOJCN+Sua3EZEUc2Ziy9CyVvmHKu6o+t4gUH9GOE0czyPR94LI6ZCV/PpcM8b5yow== dependencies: - assert "^1.1.1" + assert "^2.0.0" browserify-zlib "^0.2.0" - buffer "^4.3.0" - console-browserify "^1.1.0" + buffer "^6.0.3" + console-browserify "^1.2.0" constants-browserify "^1.0.0" - crypto-browserify "^3.11.0" - domain-browser "^1.1.1" - events "^3.0.0" + crypto-browserify "^3.12.0" + domain-browser "^4.19.0" + events "^3.3.0" + filter-obj "^2.0.2" https-browserify "^1.0.0" os-browserify "^0.3.0" - path-browserify "0.0.1" + path-browserify "^1.0.1" process "^0.11.10" - punycode "^1.2.4" - querystring-es3 "^0.2.0" - readable-stream "^2.3.3" - stream-browserify "^2.0.1" - stream-http "^2.7.2" - string_decoder "^1.0.0" - timers-browserify "^2.0.4" - tty-browserify "0.0.0" + punycode "^2.1.1" + querystring-es3 "^0.2.1" + readable-stream "^3.6.0" + stream-browserify "^3.0.0" + stream-http "^3.2.0" + string_decoder "^1.3.0" + timers-browserify "^2.0.12" + tty-browserify "^0.0.1" url "^0.11.0" - util "^0.11.0" - vm-browserify "^1.0.1" + util "^0.12.4" + vm-browserify "^1.1.2" -node-machine-id@1.1.12, node-machine-id@^1.1.10: - version "1.1.12" - resolved "https://registry.yarnpkg.com/node-machine-id/-/node-machine-id-1.1.12.tgz#37904eee1e59b320bb9c5d6c0a59f3b469cb6267" - integrity sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ== +node-releases@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" + integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== -node-releases@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.5.tgz#280ed5bc3eba0d96ce44897d8aee478bfb3d9666" - integrity sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q== - -node-schedule@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/node-schedule/-/node-schedule-1.3.2.tgz#d774b383e2a6f6ade59eecc62254aea07cd758cb" - integrity sha512-GIND2pHMHiReSZSvS6dpZcDH7pGPGFfWBIEud6S00Q8zEIzAs9ommdyRK1ZbQt8y1LyZsJYZgPnyi7gpU2lcdw== +node-schedule@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/node-schedule/-/node-schedule-2.1.0.tgz#068ae38d7351c330616f7fe7cdb05036f977cbaf" + integrity sha512-nl4JTiZ7ZQDc97MmpTq9BQjYhq7gOtoh7SiPH069gBFBj0PzD8HI7zyFs6rzqL8Y5tTiEEYLxgtbx034YPrbyQ== dependencies: - cron-parser "^2.7.3" + cron-parser "^3.5.0" long-timeout "0.1.1" - sorted-array-functions "^1.0.0" + sorted-array-functions "^1.3.0" nodemailer-fetch@1.6.0: version "1.6.0"

@@ -9640,29 +9529,12 @@ integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==

dependencies: abbrev "1" -normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== - dependencies: - remove-trailing-separator "^1.0.1" - normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== - -normalize-url@^4.1.0: - version "4.5.1" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" - integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== - -normalize-url@^6.1.0: +normalize-url@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==

@@ -9681,16 +9553,6 @@ integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==

dependencies: path-key "^3.0.0" -npmlog@^4.0.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" - npmlog@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0"

@@ -9718,27 +9580,17 @@ integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==

dependencies: boolbase "^1.0.0" -num2fraction@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" - integrity sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg== - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== - nwsapi@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" - integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== + version "2.2.1" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.1.tgz#10a9f268fbf4c461249ebcfe38e359aa36e2577c" + integrity sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg== oauth-sign@^0.9.0, oauth-sign@~0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== -object-assign@4.x, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: +object-assign@^4.0.1, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==

@@ -9757,7 +9609,7 @@ version "1.12.2"

resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== -object-is@^1.0.1, object-is@^1.1.2: +object-is@^1.0.1: version "1.1.5" resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==

@@ -9770,7 +9622,7 @@ version "1.1.1"

resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object-path@^0.11.4: +object-path@^0.11.8: version "0.11.8" resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.11.8.tgz#ed002c02bbdd0070b78a27455e8ae01fc14d4742" integrity sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==

@@ -9783,50 +9635,40 @@ dependencies:

isobject "^3.0.0" object.assign@^4.1.0, object.assign@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" - integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - has-symbols "^1.0.1" + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" object-keys "^1.1.1" -object.entries@^1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" - integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== +object.defaults@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" + integrity sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA== dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" + array-each "^1.0.1" + array-slice "^1.0.0" + for-own "^1.0.0" + isobject "^3.0.0" -object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.1: - version "2.1.4" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz#7965e6437a57278b587383831a9b829455a4bc37" - integrity sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ== +object.map@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" + integrity sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w== dependencies: - array.prototype.reduce "^1.0.4" - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.1" + for-own "^1.0.0" + make-iterator "^1.0.0" -object.pick@^1.3.0: +object.pick@^1.2.0, object.pick@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== dependencies: isobject "^3.0.1" -object.values@^1.1.0, object.values@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" - integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - oblivious-set@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/oblivious-set/-/oblivious-set-1.0.0.tgz#c8316f2c2fb6ff7b11b6158db3234c49f733c566"

@@ -9856,6 +9698,13 @@ integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==

dependencies: wrappy "1" +one-time@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/one-time/-/one-time-1.0.0.tgz#e06bc174aed214ed58edede573b433bbf827cb45" + integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== + dependencies: + fn.name "1.x.x" + onetime@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"

@@ -9875,24 +9724,14 @@ version "0.0.2"

resolved "https://registry.yarnpkg.com/only/-/only-0.0.2.tgz#2afde84d03e50b9a8edc444e30610a70295edfb4" integrity sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ== -opn@^5.3.0, opn@^5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" - integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA== +open@8.4.0, open@^8.0.9: + version "8.4.0" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" + integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== dependencies: - is-wsl "^1.1.0" - -optional-require@1.0.x: - version "1.0.3" - resolved "https://registry.yarnpkg.com/optional-require/-/optional-require-1.0.3.tgz#275b8e9df1dc6a17ad155369c2422a440f89cb07" - integrity sha512-RV2Zp2MY2aeYK5G+B/Sps8lW5NHAzE5QClbFP15j+PWmP+T9PxlJXBOOLoSAdgwFvS4t0aMR4vpedMkbHfh0nA== - -optional-require@^1.1.8: - version "1.1.8" - resolved "https://registry.yarnpkg.com/optional-require/-/optional-require-1.1.8.tgz#16364d76261b75d964c482b2406cb824d8ec44b7" - integrity sha512-jq83qaUb0wNg9Krv1c5OQ+58EK+vHde6aBPzLvPPqJm89UQWsvSuFy9X/OSNJnFeSOKo7btE0n8Nl2+nE+z5nA== - dependencies: - require-at "^1.0.6" + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" optionator@^0.8.1: version "0.8.3"

@@ -9918,7 +9757,7 @@ prelude-ls "^1.2.1"

type-check "^0.4.0" word-wrap "^1.2.3" -ora@^5.4.0: +ora@5.4.1, ora@^5.4.1: version "5.4.1" resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==

@@ -9933,6 +9772,18 @@ log-symbols "^4.1.0"

strip-ansi "^6.0.0" wcwidth "^1.0.1" +ora@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" + integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== + dependencies: + chalk "^2.4.2" + cli-cursor "^2.1.0" + cli-spinners "^2.0.0" + log-symbols "^2.2.0" + strip-ansi "^5.2.0" + wcwidth "^1.0.1" + os-browserify@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"

@@ -9943,29 +9794,29 @@ version "1.0.2"

resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== -p-cancelable@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" - integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== +p-cancelable@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" + integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== -p-limit@^2.0.0, p-limit@^2.2.0: +p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: - p-limit "^2.0.0" + yocto-queue "^0.1.0" p-locate@^4.1.0: version "4.1.0"

@@ -9974,6 +9825,13 @@ integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==

dependencies: p-limit "^2.2.0" +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + p-map@4.0.0, p-map@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"

@@ -9981,32 +9839,35 @@ integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==

dependencies: aggregate-error "^3.0.0" -p-map@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" - integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== +p-map@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" + integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== + dependencies: + aggregate-error "^3.0.0" -p-retry@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328" - integrity sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w== +p-retry@^4.5.0: + version "4.6.2" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" + integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== dependencies: - retry "^0.12.0" + "@types/retry" "0.12.0" + retry "^0.13.1" p-try@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== -package-json@6.5.0: - version "6.5.0" - resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" - integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== +package-json@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-7.0.0.tgz#1355416e50a5c1b8f1a6f471197a3650d21186bf" + integrity sha512-CHJqc94AA8YfSLHGQT3DbvSIuE12NLFekpM4n7LRrAd3dOJtA911+4xe9q6nC3/jcKraq7nNS9VxgtT0KC+diA== dependencies: - got "^9.6.0" + got "^11.8.2" registry-auth-token "^4.0.0" registry-url "^5.0.0" - semver "^6.2.0" + semver "^7.3.5" packet-reader@1.0.0: version "1.0.0"

@@ -10018,21 +9879,20 @@ version "1.0.11"

resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== -parallel-transform@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" - integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== - dependencies: - cyclist "^1.0.1" - inherits "^2.0.3" - readable-stream "^2.1.5" - -param-case@2.1.x: +param-case@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" integrity sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w== dependencies: no-case "^2.2.0" + +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" parent-module@^1.0.0: version "1.0.1"

@@ -10064,6 +9924,15 @@ is-alphanumerical "^1.0.0"

is-decimal "^1.0.0" is-hexadecimal "^1.0.0" +parse-filepath@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" + integrity sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q== + dependencies: + is-absolute "^1.0.0" + map-cache "^0.2.0" + path-root "^0.1.1" + parse-json@^5.0.0, parse-json@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"

@@ -10078,33 +9947,13 @@ parse-passwd@^1.0.0:

version "1.0.0" resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q== - -parse-path@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.4.tgz#4bf424e6b743fb080831f03b536af9fc43f0ffea" - integrity sha512-Z2lWUis7jlmXC1jeOG9giRO2+FsuyNipeQ43HAjqAZjwSe3SEf+q/84FGPHoso3kyntbxa4c4i77t3m6fGf8cw== - dependencies: - is-ssh "^1.3.0" - protocols "^1.4.0" - qs "^6.9.4" - query-string "^6.13.8" parse-srcset@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1" integrity sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q== -parse-url@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-6.0.0.tgz#f5dd262a7de9ec00914939220410b66cff09107d" - integrity sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw== - dependencies: - is-ssh "^1.3.0" - normalize-url "^6.1.0" - parse-path "^4.0.0" - protocols "^1.4.0" - -parse5@6.0.1: +parse5@6.0.1, parse5@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==

@@ -10122,6 +9971,14 @@ version "1.3.3"

resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== +pascal-case@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-2.0.1.tgz#2d578d3455f660da65eca18ef95b4e0de912761e" + integrity sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ== + dependencies: + camel-case "^3.0.0" + upper-case-first "^1.1.0" + pascal-case@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb"

@@ -10147,28 +10004,26 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/passport-strategy/-/passport-strategy-1.0.0.tgz#b5539aa8fc225a3d1ad179476ddf236b440f52e4" integrity sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA== -passport@^0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/passport/-/passport-0.4.1.tgz#941446a21cb92fc688d97a0861c38ce9f738f270" - integrity sha512-IxXgZZs8d7uFSt3eqNjM9NQ3g3uQCW5avD8mRNoXV99Yig50vjuaez6dQK2qC0kVWPRTujxY0dWgGfT09adjYg== +passport@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/passport/-/passport-0.6.0.tgz#e869579fab465b5c0b291e841e6cc95c005fac9d" + integrity sha512-0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug== dependencies: passport-strategy "1.x.x" pause "0.0.1" + utils-merge "^1.0.1" -path-browserify@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" - integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== +path-browserify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== -path-dirname@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" - integrity sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q== - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== +path-case@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/path-case/-/path-case-2.1.1.tgz#94b8037c372d3fe2906e465bb45e25d226e8eea5" + integrity sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q== + dependencies: + no-case "^2.2.0" path-exists@^4.0.0: version "4.0.0"

@@ -10180,11 +10035,6 @@ version "1.0.1"

resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== -path-is-inside@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" - integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w== - path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"

@@ -10200,29 +10050,39 @@ version "1.0.7"

resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path-root-regex@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" + integrity sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ== + +path-root@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" + integrity sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg== + dependencies: + path-root-regex "^0.1.0" + path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== -path-to-regexp@^1.1.1, path-to-regexp@^1.7.0: +path-to-regexp@^1.7.0: version "1.8.0" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== dependencies: isarray "0.0.1" +path-to-regexp@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz#d54934d6798eb9e5ef14e7af7962c945906918e5" + integrity sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw== + path-type@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pause-stream@0.0.11: - version "0.0.11" - resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" - integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== - dependencies: - through "~2.3" pause@0.0.1: version "0.0.1"

@@ -10255,7 +10115,7 @@ version "1.0.1"

resolved "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz#943bd463bf5b71b4170115f80f8efc9a0c0eb78c" integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== -pg-pool@^3.5.1: +pg-pool@^3.3.0: version "3.5.1" resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.5.1.tgz#f499ce76f9bf5097488b3b83b19861f28e4ed905" integrity sha512-6iCR0wVrro6OOHFsyavV+i6KYL4lVNyYAB9RD18w66xSzN+d8b66HiwuP30Gp1SH5O9T82fckkzsRjlrhD0ioQ==

@@ -10276,15 +10136,15 @@ postgres-bytea "~1.0.0"

postgres-date "~1.0.4" postgres-interval "^1.1.0" -pg@^8.5.1: - version "8.7.3" - resolved "https://registry.yarnpkg.com/pg/-/pg-8.7.3.tgz#8a5bdd664ca4fda4db7997ec634c6e5455b27c44" - integrity sha512-HPmH4GH4H3AOprDJOazoIcpI49XFsHCe8xlrjHkWiapdbHK+HLtbm/GQzXYAZwmPju/kzKhjaSfMACG+8cgJcw== +pg@8.6.0: + version "8.6.0" + resolved "https://registry.yarnpkg.com/pg/-/pg-8.6.0.tgz#e222296b0b079b280cce106ea991703335487db2" + integrity sha512-qNS9u61lqljTDFvmk/N66EeGq3n6Ujzj0FFyNMGQr6XuEv4tgNTXvJQTfJdcvGit5p5/DWPu+wj920hAJFI+QQ== dependencies: buffer-writer "2.0.0" packet-reader "1.0.0" pg-connection-string "^2.5.0" - pg-pool "^3.5.1" + pg-pool "^3.3.0" pg-protocol "^1.5.0" pg-types "^2.1.0" pgpass "1.x"

@@ -10296,11 +10156,6 @@ integrity sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==

dependencies: split2 "^4.1.0" -picocolors@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" - integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== - picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"

@@ -10311,59 +10166,11 @@ version "2.3.1"

resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== -pify@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== - -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - -pinkie-promise@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - integrity sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw== - dependencies: - pinkie "^2.0.0" - -pinkie@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - integrity sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg== - -pino-std-serializers@^2.0.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-2.5.0.tgz#40ead781c65a0ce7ecd9c1c33f409d31fe712315" - integrity sha512-wXqbqSrIhE58TdrxxlfLwU9eDhrzppQDvGhBEr1gYbzzM4KKo3Y63gSjiDXRKLVS2UOXdPNR2v+KnQgNrs+xUg== - -pino@^4.7.1: - version "4.17.6" - resolved "https://registry.yarnpkg.com/pino/-/pino-4.17.6.tgz#8c237f3a29f4104f89321c25037deab6a7998fb4" - integrity sha512-LFDwmhyWLBnmwO/2UFbWu1jEGVDzaPupaVdx0XcZ3tIAx1EDEBauzxXf2S0UcFK7oe+X9MApjH0hx9U1XMgfCA== - dependencies: - chalk "^2.4.1" - fast-json-parse "^1.0.3" - fast-safe-stringify "^1.2.3" - flatstr "^1.0.5" - pino-std-serializers "^2.0.0" - pump "^3.0.0" - quick-format-unescaped "^1.1.2" - split2 "^2.2.0" - pirates@^4.0.4: version "4.0.5" resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== -pkg-dir@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" - integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== - dependencies: - find-up "^3.0.0" - pkg-dir@^4.1.0, pkg-dir@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"

@@ -10371,63 +10178,64 @@ integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==

dependencies: find-up "^4.0.0" +plop@2.7.6: + version "2.7.6" + resolved "https://registry.yarnpkg.com/plop/-/plop-2.7.6.tgz#1fa5360cd5b04e9932ce677bb6bd44750d97ae67" + integrity sha512-IgnYAsC3Ni7t1cDU7wH2151CD22YhMxH8PFh+iPzCf+WuGEWXslJ5t1Tpr0N/gjL23CAV/HbLAWug2IPM2YrHg== + dependencies: + "@types/liftoff" "^2.5.1" + chalk "^1.1.3" + interpret "^1.2.0" + liftoff "^2.5.0" + minimist "^1.2.5" + node-plop "^0.26.3" + ora "^3.4.0" + v8flags "^2.0.10" + pluralize@8.0.0, pluralize@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== -popper.js@^1.14.4: - version "1.16.1" - resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" - integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== - -portfinder@^1.0.26: - version "1.0.28" - resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" - integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA== - dependencies: - async "^2.6.2" - debug "^3.1.1" - mkdirp "^0.5.5" +pony-cause@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/pony-cause/-/pony-cause-1.1.1.tgz#f795524f83bebbf1878bd3587b45f69143cbf3f9" + integrity sha512-PxkIc/2ZpLiEzQXu5YRDOUgBlfGYBY8156HY5ZcRAwwonMk5W/MrJP2LLkG/hF7GEQzaHo2aS7ho6ZLCOvf+6g== posix-character-classes@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== -postcss-modules-extract-imports@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" - integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== - dependencies: - postcss "^7.0.5" +postcss-modules-extract-imports@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" + integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== -postcss-modules-local-by-default@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63" - integrity sha512-oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA== +postcss-modules-local-by-default@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" + integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== dependencies: - postcss "^7.0.6" - postcss-selector-parser "^6.0.0" - postcss-value-parser "^3.3.1" + icss-utils "^5.0.0" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" -postcss-modules-scope@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" - integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== +postcss-modules-scope@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" + integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== dependencies: - postcss "^7.0.6" - postcss-selector-parser "^6.0.0" + postcss-selector-parser "^6.0.4" -postcss-modules-values@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64" - integrity sha512-Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w== +postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== dependencies: - icss-replace-symbols "^1.1.0" - postcss "^7.0.6" + icss-utils "^5.0.0" -postcss-selector-parser@^6.0.0: +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: version "6.0.10" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==

@@ -10435,28 +10243,15 @@ dependencies:

cssesc "^3.0.0" util-deprecate "^1.0.2" -postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" - integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== - -postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: +postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^7.0.14, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: - version "7.0.39" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" - integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== - dependencies: - picocolors "^0.2.1" - source-map "^0.6.1" - -postcss@^8.0.2: - version "8.4.14" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" - integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== +postcss@^8.3.11, postcss@^8.4.7: + version "8.4.16" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.16.tgz#33a1d675fac39941f5f445db0de4db2b6e01d43c" + integrity sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ== dependencies: nanoid "^3.3.4" picocolors "^1.0.0"

@@ -10484,22 +10279,21 @@ integrity sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==

dependencies: xtend "^4.0.0" -prebuild-install@^6.1.4: - version "6.1.4" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.1.4.tgz#ae3c0142ad611d58570b89af4986088a4937e00f" - integrity sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ== +prebuild-install@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" + integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== dependencies: - detect-libc "^1.0.3" + detect-libc "^2.0.0" expand-template "^2.0.3" github-from-package "0.0.0" minimist "^1.2.3" mkdirp-classic "^0.5.3" napi-build-utils "^1.0.1" - node-abi "^2.21.0" - npmlog "^4.0.1" + node-abi "^3.3.0" pump "^3.0.0" rc "^1.2.7" - simple-get "^3.0.3" + simple-get "^4.0.0" tar-fs "^2.0.0" tunnel-agent "^0.6.0"

@@ -10513,18 +10307,18 @@ version "1.1.2"

resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== -prepend-http@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" - integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== +prettier@2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" + integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== -pretty-error@^2.0.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6" - integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw== +pretty-error@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" + integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== dependencies: lodash "^4.17.20" - renderkid "^2.0.4" + renderkid "^3.0.0" pretty-format@^27.5.1: version "27.5.1"

@@ -10550,11 +10344,6 @@ version "1.27.0"

resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057" integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA== -private@~0.1.5: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== - process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"

@@ -10583,13 +10372,6 @@ dependencies:

err-code "^2.0.2" retry "^0.12.0" -promise@^7.1.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== - dependencies: - asap "~2.0.3" - prompts@^2.0.1: version "2.4.2" resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069"

@@ -10598,16 +10380,7 @@ dependencies:

kleur "^3.0.3" sisteransi "^1.0.5" -prop-types-exact@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz#825d6be46094663848237e3925a98c6e944e9869" - integrity sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA== - dependencies: - has "^1.0.3" - object.assign "^4.1.0" - reflect.ownkeys "^0.2.0" - -prop-types@^15.5.0, prop-types@^15.5.10, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: +prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: version "15.8.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==

@@ -10628,11 +10401,6 @@ integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==

dependencies: xtend "^4.0.0" -protocols@^1.1.0, protocols@^1.4.0: - version "1.4.8" - resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.8.tgz#48eea2d8f58d9644a4a32caae5d5db290a075ce8" - integrity sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg== - proxy-addr@~2.0.7: version "2.0.7" resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"

@@ -10641,15 +10409,10 @@ dependencies:

forwarded "0.2.0" ipaddr.js "1.9.1" -prr@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" - integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw== - psl@^1.1.28, psl@^1.1.33: - version "1.8.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" - integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== + version "1.9.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== public-encrypt@^4.0.0: version "4.0.3"

@@ -10663,14 +10426,6 @@ parse-asn1 "^5.0.0"

randombytes "^2.0.1" safe-buffer "^5.1.2" -pump@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" - integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - pump@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"

@@ -10679,38 +10434,26 @@ dependencies:

end-of-stream "^1.1.0" once "^1.3.1" -pumpify@^1.3.3: - version "1.5.1" - resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" - integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== - dependencies: - duplexify "^3.6.0" - inherits "^2.0.3" - pump "^2.0.0" - punycode@1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw== -punycode@^1.2.4: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== - punycode@^2.1.0, punycode@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== -purest@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/purest/-/purest-3.1.0.tgz#cca72a8f4717d46053d677059f9b357b59ee5cb7" - integrity sha512-9slCC5je2UNERS/YNcrs1/7K5Bh7Uvl6OY1S+XZ6iDNMCwk8Fio6VBdrklo7eMzt5M/Wt2fQlwXRjn4puBccRQ== +purest@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/purest/-/purest-4.0.2.tgz#6d60403f00731bbe3c508955c96d56e8c0f30098" + integrity sha512-Uq6kdia8zGVHOb/0zAOb7FvKFMKeyeTZTLEwpO0JR3cIFEkpH6asv3ls9M9URDjHiYIdgAPmht5ecSbvPacfyg== dependencies: - "@purest/config" "^1.0.0" - "@request/api" "^0.6.0" - extend "^3.0.0" + "@simov/deep-extend" "^1.0.0" + qs "^6.10.3" + request-compose "^2.1.4" + request-multipart "^1.0.0" + request-oauth "^1.0.1" qs@6.10.1: version "6.10.1"

@@ -10726,10 +10469,10 @@ integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==

dependencies: side-channel "^1.0.4" -qs@^6.10.1, qs@^6.10.2, qs@^6.4.0, qs@^6.5.2, qs@^6.9.4, qs@^6.9.6: - version "6.10.5" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4" - integrity sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ== +qs@^6.10.2, qs@^6.10.3, qs@^6.4.0, qs@^6.5.2, qs@^6.9.6: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== dependencies: side-channel "^1.0.4"

@@ -10738,17 +10481,7 @@ version "6.5.3"

resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== -query-string@^6.13.8: - version "6.14.1" - resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.14.1.tgz#7ac2dca46da7f309449ba0f86b1fd28255b0c86a" - integrity sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw== - dependencies: - decode-uri-component "^0.2.0" - filter-obj "^1.1.0" - split-on-first "^1.0.0" - strict-uri-encode "^2.0.0" - -querystring-es3@^0.2.0: +querystring-es3@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==

@@ -10758,24 +10491,15 @@ version "0.2.0"

resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g== -querystringify@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" - integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== -quick-format-unescaped@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz#0ca581de3174becef25ac3c2e8956342381db698" - integrity sha512-lli1svZnGwCLiDydlAN2bmSiEeThfI5gnqWsv0cFRiRbzXsRuzoPldK+BY5TM/i+koLoZ8dmZA6uPEBGTpaZqw== - dependencies: - fast-safe-stringify "^1.0.8" - -raf@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" - integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== - dependencies: - performance-now "^2.1.0" +quick-lru@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" + integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== railroad-diagrams@^1.0.0: version "1.0.0"

@@ -10820,25 +10544,6 @@ http-errors "2.0.0"

iconv-lite "0.4.24" unpipe "1.0.0" -rc-input-number@^4.5.0: - version "4.6.3" - resolved "https://registry.yarnpkg.com/rc-input-number/-/rc-input-number-4.6.3.tgz#828e5d11a8ea9be4b01c2463a57acfcaec283f5e" - integrity sha512-eTNIC16/Jvy6cr153BxUH0Ni0QEzz3x4qQNNd4uqBLjhGDwq4i1nj6nuRgJWgPjr3GQYJMY7gjs3AYF6shd8PA== - dependencies: - classnames "^2.2.0" - rc-util "^4.5.1" - -rc-util@^4.5.1: - version "4.21.1" - resolved "https://registry.yarnpkg.com/rc-util/-/rc-util-4.21.1.tgz#88602d0c3185020aa1053d9a1e70eac161becb05" - integrity sha512-Z+vlkSQVc1l8O2UjR3WQ+XdWlhj5q9BMQNLk2iOBch75CqPfrJyGtcWMcnhRlNuDu0Ndtt4kLVO8JI8BrABobg== - dependencies: - add-dom-event-listener "^1.1.0" - prop-types "^15.5.10" - react-is "^16.12.0" - react-lifecycles-compat "^3.0.4" - shallowequal "^1.1.0" - rc@1.2.8, rc@^1.2.7, rc@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"

@@ -10849,7 +10554,7 @@ ini "~1.3.0"

minimist "^1.2.0" strip-json-comments "~2.0.1" -react-copy-to-clipboard@^5.0.3: +react-copy-to-clipboard@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz#09aae5ec4c62750ccb2e6421a58725eabc41255c" integrity sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==

@@ -10857,58 +10562,37 @@ dependencies:

copy-to-clipboard "^3.3.1" prop-types "^15.8.1" -react-dates@^21.1.0, react-dates@^21.5.1: - version "21.8.0" - resolved "https://registry.yarnpkg.com/react-dates/-/react-dates-21.8.0.tgz#355c3c7a243a7c29568fe00aca96231e171a5e94" - integrity sha512-PPriGqi30CtzZmoHiGdhlA++YPYPYGCZrhydYmXXQ6RAvAsaONcPtYgXRTLozIOrsQ5mSo40+DiA5eOFHnZ6xw== +react-dnd-html5-backend@^14.0.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/react-dnd-html5-backend/-/react-dnd-html5-backend-14.1.0.tgz#b35a3a0c16dd3a2bfb5eb7ec62cf0c2cace8b62f" + integrity sha512-6ONeqEC3XKVf4eVmMTe0oPds+c5B9Foyj8p/ZKLb7kL2qh9COYxiBHv3szd6gztqi/efkmriywLUVlPotqoJyw== dependencies: - airbnb-prop-types "^2.15.0" - consolidated-events "^1.1.1 || ^2.0.0" - enzyme-shallow-equal "^1.0.0" - is-touch-device "^1.0.1" - lodash "^4.1.1" - object.assign "^4.1.0" - object.values "^1.1.0" - prop-types "^15.7.2" - raf "^3.4.1" - react-moment-proptypes "^1.6.0" - react-outside-click-handler "^1.2.4" - react-portal "^4.2.0" - react-with-direction "^1.3.1" - react-with-styles "^4.1.0" - react-with-styles-interface-css "^6.0.0" - -react-dnd-html5-backend@^10.0.2: - version "10.0.2" - resolved "https://registry.yarnpkg.com/react-dnd-html5-backend/-/react-dnd-html5-backend-10.0.2.tgz#15cb9d2b923f43576a136df854e288cb5969784c" - integrity sha512-ny17gUdInZ6PIGXdzfwPhoztRdNVVvjoJMdG80hkDBamJBeUPuNF2Wv4D3uoQJLjXssX1+i9PhBqc7EpogClwQ== - dependencies: - dnd-core "^10.0.2" + dnd-core "14.0.1" -react-dnd@^10.0.2: - version "10.0.2" - resolved "https://registry.yarnpkg.com/react-dnd/-/react-dnd-10.0.2.tgz#a6ad8eb3d9f2c573031f7ce05012e5c767a0b1fc" - integrity sha512-SC2Ymvntynhoqtf5zaFhZscm9xenCoMofilxPdlwUlaelAzmbl9fw82C4ZJ//+lNm3kWAKXjGDZg2/aWjKEAtg== +react-dnd@^14.0.2: + version "14.0.5" + resolved "https://registry.yarnpkg.com/react-dnd/-/react-dnd-14.0.5.tgz#ecf264e220ae62e35634d9b941502f3fca0185ed" + integrity sha512-9i1jSgbyVw0ELlEVt/NkCUkxy1hmhJOkePoCH713u75vzHGyXhPDm28oLfc2NMSBjZRM1Y+wRjHXJT3sPrTy+A== dependencies: + "@react-dnd/invariant" "^2.0.0" "@react-dnd/shallowequal" "^2.0.0" - "@types/hoist-non-react-statics" "^3.3.1" - dnd-core "^10.0.2" - hoist-non-react-statics "^3.3.0" + dnd-core "14.0.1" + fast-deep-equal "^3.1.3" + hoist-non-react-statics "^3.3.2" -react-dom@^16.9.0: - version "16.14.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89" - integrity sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw== +react-dom@^17.0.2: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" + integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" - prop-types "^15.6.2" - scheduler "^0.19.1" + scheduler "^0.20.2" -react-email-editor@^1.3.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/react-email-editor/-/react-email-editor-1.6.0.tgz#474d0df4fc70f105a30c7359c4db684c7ddf6ea4" - integrity sha512-rxqUBVyC95AZjTX3X4aO3FtcmH6qhIOKfAqzJl4aCUHwUb5LVCvS/pjFd8jy0beDL8WJN9NG6QreVHterD1WCQ== +react-email-editor@^1.5.0: + version "1.6.1" + resolved "https://registry.yarnpkg.com/react-email-editor/-/react-email-editor-1.6.1.tgz#e455398550b73fddae2e6f2597a7606a61d85761" + integrity sha512-pEWpRmTY0ok03cwTGqEOoEldnzThhuRGTrcMnv8W3/jc5MTfcr9USU/IQ9HrVvFStLKoxYBIQnSKY+iCYWOtSQ== react-error-boundary@3.1.1: version "3.1.1"

@@ -10951,119 +10635,87 @@ integrity sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==

dependencies: prop-types "^15.5.8" -react-intl@4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/react-intl/-/react-intl-4.5.0.tgz#f1ea00eb393b1a0e33850819b5ce8947abed187e" - integrity sha512-CQuFR9vjUYOjzxsm7KaVRdM4hKOyMNY2ejvniZCbz3Ni3jMbjfTgcXYmxqYBn0lenMaFg3G2ol7HKkoy2YSXlQ== +react-intl@5.20.2: + version "5.20.2" + resolved "https://registry.yarnpkg.com/react-intl/-/react-intl-5.20.2.tgz#e453889e028502b9913e4ed1c35642ec74daba05" + integrity sha512-Uv3OydXIjF1wABfUm0mI8SItNQW7zuFaU42W0qXYVRvSoRXMv9rUorC1FLHTiS5zifQCRvWs65VejL8PO5he8w== dependencies: - "@formatjs/intl-displaynames" "^1.2.5" - "@formatjs/intl-listformat" "^1.4.4" - "@formatjs/intl-relativetimeformat" "^4.5.12" - "@formatjs/intl-unified-numberformat" "^3.3.3" - "@formatjs/intl-utils" "^2.2.2" + "@formatjs/ecma402-abstract" "1.9.3" + "@formatjs/icu-messageformat-parser" "2.0.6" + "@formatjs/intl" "1.13.0" + "@formatjs/intl-displaynames" "5.1.5" + "@formatjs/intl-listformat" "6.2.5" "@types/hoist-non-react-statics" "^3.3.1" - "@types/invariant" "^2.2.31" hoist-non-react-statics "^3.3.2" - intl-format-cache "^4.2.24" - intl-messageformat "^8.3.7" - intl-messageformat-parser "^5.0.0" - shallow-equal "^1.2.1" + intl-messageformat "9.6.18" + tslib "^2.1.0" -react-is@^16.12.0, react-is@^16.13.1, react-is@^16.6.0, react-is@^16.7.0: +react-is@^16.13.1, react-is@^16.6.0, react-is@^16.7.0: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== -react-is@^17.0.1: +react-is@^17.0.1, react-is@^17.0.2: version "17.0.2" resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== -react-lifecycles-compat@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" - integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== - -react-loadable@^5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/react-loadable/-/react-loadable-5.5.0.tgz#582251679d3da86c32aae2c8e689c59f1196d8c4" - integrity sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg== - dependencies: - prop-types "^15.5.0" - -react-moment-proptypes@^1.6.0, react-moment-proptypes@^1.7.0: - version "1.8.1" - resolved "https://registry.yarnpkg.com/react-moment-proptypes/-/react-moment-proptypes-1.8.1.tgz#7ba4076147f6b5998f0d4f51d302d6d8c62049fd" - integrity sha512-Er940DxWoObfIqPrZNfwXKugjxMIuk1LAuEzn23gytzV6hKS/sw108wibi9QubfMN4h+nrlje8eUCSbQRJo2fQ== - dependencies: - moment ">=1.6.0" - -react-outside-click-handler@^1.2.4: - version "1.3.0" - resolved "https://registry.yarnpkg.com/react-outside-click-handler/-/react-outside-click-handler-1.3.0.tgz#3831d541ac059deecd38ec5423f81e80ad60e115" - integrity sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ== - dependencies: - airbnb-prop-types "^2.15.0" - consolidated-events "^1.1.1 || ^2.0.0" - document.contains "^1.0.1" - object.values "^1.1.0" - prop-types "^15.7.2" - -react-popper@^1.3.6: - version "1.3.11" - resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.11.tgz#a2cc3f0a67b75b66cfa62d2c409f9dd1fcc71ffd" - integrity sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg== - dependencies: - "@babel/runtime" "^7.1.2" - "@hypnosphi/create-react-context" "^0.3.1" - deep-equal "^1.1.1" - popper.js "^1.14.4" - prop-types "^15.6.1" - typed-styles "^0.0.7" - warning "^4.0.2" - -react-portal@^4.2.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/react-portal/-/react-portal-4.2.2.tgz#bff1e024147d6041ba8c530ffc99d4c8248f49fa" - integrity sha512-vS18idTmevQxyQpnde0Td6ZcUlv+pD8GTyR42n3CHUQq9OHi1C4jDE4ZWEbEsrbrLRhSECYiao58cvocwMtP7Q== - dependencies: - prop-types "^15.5.8" - -react-query@3.13.12: - version "3.13.12" - resolved "https://registry.yarnpkg.com/react-query/-/react-query-3.13.12.tgz#d8e432099445fed5b03406838291d42286236263" - integrity sha512-RZYvepBdDG4Xgz64vUHjIkUqXX6giw3xJsgdRjWx+vLkOB1vbIQE8F82CNlVbYW3JjZobl4YzmOuLx0wMhLX4Q== +react-query@3.24.3: + version "3.24.3" + resolved "https://registry.yarnpkg.com/react-query/-/react-query-3.24.3.tgz#58c538fb55386fa947bda88acbe616e02cb5b2bb" + integrity sha512-JipKpn7XoDVvRWwXWXKSJU5SbNJKqspx9IRBntaQt1EQOBXe9314Z/8cV9YXXbZIhzrHAetT3X7tRClZaYk98g== dependencies: "@babel/runtime" "^7.5.5" broadcast-channel "^3.4.1" match-sorter "^6.0.2" -react-redux@7.2.3: - version "7.2.3" - resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.3.tgz#4c084618600bb199012687da9e42123cca3f0be9" - integrity sha512-ZhAmQ1lrK+Pyi0ZXNMUZuYxYAZd59wFuVDGUt536kSGdD0ya9Q7BfsE95E3TsFLE3kOSFp5m6G5qbatE+Ic1+w== +react-redux@7.2.8: + version "7.2.8" + resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.8.tgz#a894068315e65de5b1b68899f9c6ee0923dd28de" + integrity sha512-6+uDjhs3PSIclqoCk0kd6iX74gzrGc3W5zcAjbrFgEdIjRSQObdIwfx80unTkVUYvbQ95Y8Av3OvFHq1w5EOUw== dependencies: - "@babel/runtime" "^7.12.1" - "@types/react-redux" "^7.1.16" + "@babel/runtime" "^7.15.4" + "@types/react-redux" "^7.1.20" hoist-non-react-statics "^3.3.2" loose-envify "^1.4.0" prop-types "^15.7.2" - react-is "^16.13.1" + react-is "^17.0.2" + +react-refresh@0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz#77198b944733f0f1f1a90e791de4541f9f074046" + integrity sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A== -react-router-dom@^5.0.0, react-router-dom@^5.2.0: - version "5.3.3" - resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.3.tgz#8779fc28e6691d07afcaf98406d3812fe6f11199" - integrity sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng== +react-router-dom@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.2.0.tgz#9e65a4d0c45e13289e66c7b17c7e175d0ea15662" + integrity sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA== dependencies: - "@babel/runtime" "^7.12.13" + "@babel/runtime" "^7.1.2" + history "^4.9.0" + loose-envify "^1.3.1" + prop-types "^15.6.2" + react-router "5.2.0" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + +react-router@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.2.0.tgz#424e75641ca8747fbf76e5ecca69781aa37ea293" + integrity sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw== + dependencies: + "@babel/runtime" "^7.1.2" history "^4.9.0" + hoist-non-react-statics "^3.1.0" loose-envify "^1.3.1" + mini-create-react-context "^0.4.0" + path-to-regexp "^1.7.0" prop-types "^15.6.2" - react-router "5.3.3" + react-is "^16.6.0" tiny-invariant "^1.0.2" tiny-warning "^1.0.0" -react-router@5.3.3, react-router@^5.2.0: +react-router@^5.2.0: version "5.3.3" resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.3.3.tgz#8e3841f4089e728cf82a429d92cdcaa5e4a3a288" integrity sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w==

@@ -11079,13 +10731,14 @@ react-is "^16.6.0"

tiny-invariant "^1.0.2" tiny-warning "^1.0.0" -react-select@^4.0.2: - version "4.3.1" - resolved "https://registry.yarnpkg.com/react-select/-/react-select-4.3.1.tgz#389fc07c9bc7cf7d3c377b7a05ea18cd7399cb81" - integrity sha512-HBBd0dYwkF5aZk1zP81Wx5UsLIIT2lSvAY2JiJo199LjoLHoivjn9//KsmvQMEFGNhe58xyuOITjfxKCcGc62Q== +react-select@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/react-select/-/react-select-4.0.2.tgz#4dcca9f38d6a41e01f2dc7673e244a325e3b4e0e" + integrity sha512-BiihrRpRIBBvNqofNZIBpo08Kw8DBHb/kgpIDW4bxgkttk50Sxf0alEIKobns3U7UJXk/CA4rsFUueQEg9Pm5A== dependencies: - "@babel/runtime" "^7.12.0" - "@emotion/cache" "^11.4.0" + "@babel/runtime" "^7.4.4" + "@emotion/cache" "^11.0.0" + "@emotion/css" "^11.0.0" "@emotion/react" "^11.1.1" memoize-one "^5.0.0" prop-types "^15.6.0"

@@ -11093,9 +10746,9 @@ react-input-autosize "^3.0.0"

react-transition-group "^4.3.0" react-side-effect@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/react-side-effect/-/react-side-effect-2.1.1.tgz#66c5701c3e7560ab4822a4ee2742dee215d72eb3" - integrity sha512-2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ== + version "2.1.2" + resolved "https://registry.yarnpkg.com/react-side-effect/-/react-side-effect-2.1.2.tgz#dc6345b9e8f9906dc2eeb68700b615e0b4fe752a" + integrity sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw== react-syntax-highlighter@^15.4.3: version "15.5.0"

@@ -11108,140 +10761,33 @@ lowlight "^1.17.0"

prismjs "^1.27.0" refractor "^3.6.0" -react-tooltip@4.2.18: - version "4.2.18" - resolved "https://registry.yarnpkg.com/react-tooltip/-/react-tooltip-4.2.18.tgz#2fb8c5e115c4e5476f94081f4bb2ba77f5b2297f" - integrity sha512-MBdWuH925GL2ai5TWJelVJD9Opfk+3cLw0SP0rXR7s2RcNb7FefaNmljFndqYo8ghVcIEj5yM7aqV5Ith2bnqg== - dependencies: - prop-types "^15.7.2" - uuid "^7.0.3" - -react-tooltip@^4.2.11: - version "4.2.21" - resolved "https://registry.yarnpkg.com/react-tooltip/-/react-tooltip-4.2.21.tgz#840123ed86cf33d50ddde8ec8813b2960bfded7f" - integrity sha512-zSLprMymBDowknr0KVDiJ05IjZn9mQhhg4PRsqln0OZtURAJ1snt1xi5daZfagsh6vfsziZrc9pErPTDY1ACig== - dependencies: - prop-types "^15.7.2" - uuid "^7.0.3" - -react-transition-group@4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.1.tgz#63868f9325a38ea5ee9535d828327f85773345c9" - integrity sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw== - dependencies: - "@babel/runtime" "^7.5.5" - dom-helpers "^5.0.1" - loose-envify "^1.4.0" - prop-types "^15.6.2" - -react-transition-group@^2.3.1: - version "2.9.0" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d" - integrity sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg== - dependencies: - dom-helpers "^3.4.0" - loose-envify "^1.4.0" - prop-types "^15.6.2" - react-lifecycles-compat "^3.0.4" - -react-transition-group@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-3.0.0.tgz#36efa4db970d5eec5e3028e0c458931163fa3b9b" - integrity sha512-A9ojB/LWECbFj58SNfjK1X9aaAU+1olLS0DFSikvrr2KfMaiBELemHDa5dKNvcTk2t3gUtDL/PJpFrBKDfMpLg== - dependencies: - dom-helpers "^3.4.0" - loose-envify "^1.4.0" - prop-types "^15.6.2" - react-lifecycles-compat "^3.0.4" - react-transition-group@^4.3.0: - version "4.4.2" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470" - integrity sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg== + version "4.4.5" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" + integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== dependencies: "@babel/runtime" "^7.5.5" dom-helpers "^5.0.1" loose-envify "^1.4.0" prop-types "^15.6.2" -react-virtualized@^9.22.3: - version "9.22.3" - resolved "https://registry.yarnpkg.com/react-virtualized/-/react-virtualized-9.22.3.tgz#f430f16beb0a42db420dbd4d340403c0de334421" - integrity sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw== - dependencies: - "@babel/runtime" "^7.7.2" - clsx "^1.0.4" - dom-helpers "^5.1.3" - loose-envify "^1.4.0" - prop-types "^15.7.2" - react-lifecycles-compat "^3.0.4" - -react-with-direction@^1.3.1: - version "1.4.0" - resolved "https://registry.yarnpkg.com/react-with-direction/-/react-with-direction-1.4.0.tgz#ebdf64d685d0650ce966e872e6431ad5a2485444" - integrity sha512-ybHNPiAmaJpoWwugwqry9Hd1Irl2hnNXlo/2SXQBwbLn/jGMauMS2y9jw+ydyX5V9ICryCqObNSthNt5R94xpg== +react-window@1.8.7: + version "1.8.7" + resolved "https://registry.yarnpkg.com/react-window/-/react-window-1.8.7.tgz#5e9fd0d23f48f432d7022cdb327219353a15f0d4" + integrity sha512-JHEZbPXBpKMmoNO1bNhoXOOLg/ujhL/BU4IqVU9r8eQPcy5KQnGHIHDRkJ0ns9IM5+Aq5LNwt3j8t3tIrePQzA== dependencies: - airbnb-prop-types "^2.16.0" - brcast "^2.0.2" - deepmerge "^1.5.2" - direction "^1.0.4" - hoist-non-react-statics "^3.3.2" - object.assign "^4.1.2" - object.values "^1.1.5" - prop-types "^15.7.2" + "@babel/runtime" "^7.0.0" + memoize-one ">=3.1.1 <6" -react-with-styles-interface-css@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/react-with-styles-interface-css/-/react-with-styles-interface-css-6.0.0.tgz#b53da7fa8359d452cb934cface8738acaef7b5fe" - integrity sha512-6khSG1Trf4L/uXOge/ZAlBnq2O2PEXlQEqAhCRbvzaQU4sksIkdwpCPEl6d+DtP3+IdhyffTWuHDO9lhe1iYvA== - dependencies: - array.prototype.flat "^1.2.1" - global-cache "^1.2.1" - -react-with-styles@^4.1.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/react-with-styles/-/react-with-styles-4.2.0.tgz#0b8a8e5d94d082518b9f564f6fcf6103e28096c5" - integrity sha512-tZCTY27KriRNhwHIbg1NkSdTTOSfXDg6Z7s+Q37mtz0Ym7Sc7IOr3PzVt4qJhJMW6Nkvfi3g34FuhtiGAJCBQA== - dependencies: - airbnb-prop-types "^2.14.0" - hoist-non-react-statics "^3.2.1" - object.assign "^4.1.0" - prop-types "^15.7.2" - react-with-direction "^1.3.1" - -react@^16.14.0: - version "16.14.0" - resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d" - integrity sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g== +react@^17.0.2: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" + integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" - prop-types "^15.6.2" -reactstrap@8.4.1: - version "8.4.1" - resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.4.1.tgz#c7f63b9057f58b52833061711ebe235b9ec4e3e5" - integrity sha512-oAjp9PYYUGKl7SLXwrQ1oRIrYw0MqfO2mUqYgGapFKHG2uwjEtLip5rYxtMujkGx3COjH5FX1WtcfNU4oqpH0Q== - dependencies: - "@babel/runtime" "^7.2.0" - classnames "^2.2.3" - prop-types "^15.5.8" - react-lifecycles-compat "^3.0.4" - react-popper "^1.3.6" - react-transition-group "^2.3.1" - -reactstrap@^8.5.1: - version "8.10.1" - resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.10.1.tgz#43ea596c7f82f88997a9c8aae203417910262d3f" - integrity sha512-StjLADa/12yMNjafrSs+UD7sZAGtKpLO9fZp++2Dj0IzJinqY7eQhXlM3nFf0q40YsIcLvQdFc9pKF8PF4f0Qg== - dependencies: - "@babel/runtime" "^7.12.5" - classnames "^2.2.3" - prop-types "^15.5.8" - react-popper "^1.3.6" - react-transition-group "^3.0.0" - -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: +readable-stream@^2.0.1: version "2.3.7" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==

@@ -11254,7 +10800,7 @@ safe-buffer "~5.1.1"

string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: +readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==

@@ -11263,22 +10809,6 @@ inherits "^2.0.3"

string_decoder "^1.1.1" util-deprecate "^1.0.1" -readdirp@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" - integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== - dependencies: - graceful-fs "^4.1.11" - micromatch "^3.1.10" - readable-stream "^2.0.2" - -readdirp@~3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" - integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== - dependencies: - picomatch "^2.2.1" - readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"

@@ -11286,56 +10816,38 @@ integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==

dependencies: picomatch "^2.2.1" -recast@~0.11.12: - version "0.11.23" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" - integrity sha512-+nixG+3NugceyR8O1bLU45qs84JgI3+8EauyRZafLgC9XbdAOIVgwV1Pe2da0YzGo62KzWoZwUpVEQf6qNAXWA== +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== dependencies: - ast-types "0.9.6" - esprima "~3.1.0" - private "~0.1.5" - source-map "~0.5.0" + resolve "^1.1.6" -rechoir@0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.0.tgz#32650fd52c21ab252aa5d65b19310441c7e03aca" - integrity sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q== +rechoir@^0.7.0: + version "0.7.1" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.1.tgz#9478a96a1ca135b5e88fc027f03ee92d6c645686" + integrity sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg== dependencies: resolve "^1.9.0" -redis@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/redis/-/redis-4.1.0.tgz#6e400e8edf219e39281afe95e66a3d5f7dcf7289" - integrity sha512-5hvJ8wbzpCCiuN1ges6tx2SAh2XXCY0ayresBmu40/SGusWHFW86TAlIPpbimMX2DFHOX7RN34G2XlPA1Z43zg== +rechoir@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" + integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== dependencies: - "@redis/bloom" "1.0.2" - "@redis/client" "1.1.0" - "@redis/graph" "1.0.1" - "@redis/json" "1.0.3" - "@redis/search" "1.0.6" - "@redis/time-series" "1.0.3" - -redux-immutable@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/redux-immutable/-/redux-immutable-4.0.0.tgz#3a1a32df66366462b63691f0e1dc35e472bbc9f3" - integrity sha512-SchSn/DWfGb3oAejd+1hhHx01xUoxY+V7TeK0BKqpkLKiQPVFf7DYzEaKmrEVxsWxielKfSK9/Xq66YyxgR1cg== + resolve "^1.20.0" redux-saga@^0.16.0: version "0.16.2" resolved "https://registry.yarnpkg.com/redux-saga/-/redux-saga-0.16.2.tgz#993662e86bc945d8509ac2b8daba3a8c615cc971" integrity sha512-iIjKnRThI5sKPEASpUvySemjzwqwI13e3qP7oLub+FycCRDysLSAOwt958niZW6LhxfmS6Qm1BzbU70w/Koc4w== -redux@^4.0.0, redux@^4.0.1, redux@^4.0.4: +redux@^4.0.0, redux@^4.0.1, redux@^4.1.1: version "4.2.0" resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.0.tgz#46f10d6e29b6666df758780437651eeb2b969f13" integrity sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA== dependencies: "@babel/runtime" "^7.9.2" - -reflect.ownkeys@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460" - integrity sha512-qOLsBKHCpSOFKK1NUOCGC5VyeufB6lEsFe92AL2bhIJsacZS1qdoOZSbPk3MYKuT2cFlRDnulKXuuElIrMjGUg== refractor@^3.6.0: version "3.6.0"

@@ -11378,12 +10890,7 @@ dependencies:

extend-shallow "^3.0.2" safe-regex "^1.1.0" -regexp-clone@1.0.0, regexp-clone@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/regexp-clone/-/regexp-clone-1.0.0.tgz#222db967623277056260b992626354a04ce9bf63" - integrity sha512-TuAasHQNamyyJ2hb97IuBEif4qBHGjPHBS64sZwytpLEqtBQ1gPJTnOaQ6qmpET16cK14kkjbazl6+p0RRv0yw== - -regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.4.3: +regexp.prototype.flags@^1.4.3: version "1.4.3" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==

@@ -11397,10 +10904,10 @@ version "3.2.0"

resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== -regexpu-core@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.0.1.tgz#c531122a7840de743dcf9c83e923b5560323ced3" - integrity sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw== +regexpu-core@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.1.0.tgz#2f8504c3fd0ebe11215783a41541e21c79942c6d" + integrity sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA== dependencies: regenerate "^1.4.2" regenerate-unicode-properties "^10.0.1"

@@ -11410,11 +10917,11 @@ unicode-match-property-ecmascript "^2.0.0"

unicode-match-property-value-ecmascript "^2.0.0" registry-auth-token@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250" - integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== + version "4.2.2" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.2.tgz#f02d49c3668884612ca031419491a13539e21fac" + integrity sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg== dependencies: - rc "^1.2.8" + rc "1.2.8" registry-url@^5.0.0: version "5.1.0"

@@ -11435,7 +10942,7 @@ integrity sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==

dependencies: jsesc "~0.5.0" -relateurl@0.2.x: +relateurl@^0.2.7: version "0.2.7" resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==

@@ -11445,21 +10952,16 @@ version "0.4.2"

resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" integrity sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA== -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== - -renderkid@^2.0.4: - version "2.0.7" - resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.7.tgz#464f276a6bdcee606f4a15993f9b29fc74ca8609" - integrity sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ== +renderkid@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" + integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== dependencies: css-select "^4.1.3" dom-converter "^0.2.0" htmlparser2 "^6.1.0" lodash "^4.17.21" - strip-ansi "^3.0.1" + strip-ansi "^6.0.1" repeat-element@^1.1.2: version "1.1.4"

@@ -11471,14 +10973,6 @@ version "1.6.1"

resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== -reportback@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/reportback/-/reportback-2.0.2.tgz#8957ff5f6b1675e0284c1a14001a24463c0f9900" - integrity sha512-EOF6vRKfXjI7ydRoOdXXeRTK1zgWq7mep8/32patt0FOnBap32eTSw6yCea/o0025PHmVB8crx5OxzZJ+/P34g== - dependencies: - captains-log "^2.0.2" - switchback "^2.0.1" - request-compose@^2.1.4: version "2.1.5" resolved "https://registry.yarnpkg.com/request-compose/-/request-compose-2.1.5.tgz#10c99ae13aa21ddddf3b4baf8841cc3599ebe3e2"

@@ -11490,6 +10984,17 @@ resolved "https://registry.yarnpkg.com/request-ip/-/request-ip-2.1.3.tgz#99ab2bafdeaf2002626e28083cb10597511d9e14"

integrity sha512-J3qdE/IhVM3BXkwMIVO4yFrvhJlU3H7JH16+6yHucadT4fePnR8dyh+vEs6FIx0S2x5TCt2ptiPfHcn0sqhbYQ== dependencies: is_js "^0.9.0" + +request-multipart@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/request-multipart/-/request-multipart-1.0.0.tgz#26fe57634e379a5686eb499788ecd8b4fd51deaf" + integrity sha512-dazx88T19dIKFNc0XdlZV8H46D2RmNFdR4mipcbrFOaN70PSSSMM3urVY+eVbrpraf/fHXccxFhLvG1wkSUtKQ== + dependencies: + bl "^4.0.3" + isstream "^0.1.2" + mime-types "^2.1.28" + multistream "^4.0.1" + uuid "^8.3.2" request-oauth@^1.0.1: version "1.0.1"

@@ -11500,23 +11005,7 @@ oauth-sign "^0.9.0"

qs "^6.9.6" uuid "^8.3.2" -request-promise-core@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" - integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== - dependencies: - lodash "^4.17.19" - -request-promise-native@^1.0.5: - version "1.0.9" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" - integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== - dependencies: - request-promise-core "1.1.4" - stealthy-require "^1.1.1" - tough-cookie "^2.3.3" - -request@^2.83.0, request@^2.88.0: +request@^2.83.0: version "2.88.2" resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==

@@ -11542,11 +11031,6 @@ tough-cookie "~2.5.0"

tunnel-agent "^0.6.0" uuid "^3.3.2" -require-at@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/require-at/-/require-at-1.0.6.tgz#9eb7e3c5e00727f5a4744070a7f560d4de4f6e6a" - integrity sha512-7i1auJbMUrXEAZCOQ0VNJgmcT2VOKPRl2YGJwgpHpC9CE91Mv4/4UYIUm4chGJaI381ZDq1JUicFii64Hapd8g== - require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"

@@ -11557,11 +11041,6 @@ version "2.0.2"

resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - requires-port@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"

@@ -11572,14 +11051,12 @@ version "4.1.6"

resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.6.tgz#19ca2d3d0b35373a74dc1c98692cdaffb6602656" integrity sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ== -resolve-cwd@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" - integrity sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg== - dependencies: - resolve-from "^3.0.0" +resolve-alpn@^1.0.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" + integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== -resolve-cwd@^3.0.0: +resolve-cwd@3.0.0, resolve-cwd@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==

@@ -11593,11 +11070,6 @@ integrity sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==

dependencies: expand-tilde "^2.0.0" global-modules "^1.0.0" - -resolve-from@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" - integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== resolve-from@^4.0.0: version "4.0.0"

@@ -11632,21 +11104,21 @@ version "1.1.0"

resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== -resolve@^1.12.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.9.0: - version "1.22.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" - integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== +resolve@^1.1.6, resolve@^1.1.7, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.9.0: + version "1.22.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== dependencies: - is-core-module "^2.8.1" + is-core-module "^2.9.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -responselike@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" - integrity sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ== +responselike@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz#9a0bc8fdc252f3fb1cca68b016591059ba1422bc" + integrity sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw== dependencies: - lowercase-keys "^1.0.0" + lowercase-keys "^2.0.0" restore-cursor@^2.0.0: version "2.0.0"

@@ -11669,14 +11141,7 @@ version "0.1.15"

resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== -retry-as-promised@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/retry-as-promised/-/retry-as-promised-3.2.0.tgz#769f63d536bec4783549db0777cb56dadd9d8543" - integrity sha512-CybGs60B7oYU/qSQ6kuaFmRd9sTZ6oXSc0toqePvV74Ac6/IFZSI1ReFQmtCN+uvW1Mtqdwpvt/LGOiCBAY2Mg== - dependencies: - any-promise "^1.3.0" - -retry@0.13.1: +retry@0.13.1, retry@^0.13.1: version "0.13.1" resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==

@@ -11686,6 +11151,11 @@ version "0.12.0"

resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + rimraf@3.0.2, rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"

@@ -11693,7 +11163,7 @@ integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==

dependencies: glob "^7.1.3" -rimraf@^2.5.4, rimraf@^2.6.3: +rimraf@^2.6.3: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==

@@ -11708,24 +11178,31 @@ dependencies:

hash-base "^3.0.0" inherits "^2.0.1" -run-async@^2.2.0: +run-async@^2.4.0: version "2.4.1" resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== -run-queue@^1.0.0, run-queue@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" - integrity sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg== +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: - aproba "^1.1.1" + queue-microtask "^1.2.2" -rxjs@^6.4.0: +rxjs@^6.4.0, rxjs@^6.6.0: version "6.6.7" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== dependencies: tslib "^1.9.0" + +rxjs@^7.5.5: + version "7.5.6" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.6.tgz#0446577557862afd6903517ce7cae79ecb9662bc" + integrity sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw== + dependencies: + tslib "^2.1.0" safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2"

@@ -11744,35 +11221,27 @@ integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==

dependencies: ret "~0.1.10" +safe-stable-stringify@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz#ab67cbe1fe7d40603ca641c5e765cb942d04fc73" + integrity sha512-kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg== + "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sanitize-html@2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-2.3.3.tgz#3db382c9a621cce4c46d90f10c64f1e9da9e8353" - integrity sha512-DCFXPt7Di0c6JUnlT90eIgrjs6TsJl/8HYU3KLdmrVclFN4O0heTcVbJiMa23OKVr6aR051XYtsgd8EWwEBwUA== +sanitize-html@2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-2.7.0.tgz#e106205b468aca932e2f9baf241f24660d34e279" + integrity sha512-jfQelabOn5voO7FAfnQF7v+jsA6z9zC/O4ec0z3E35XPEtHYJT/OdUziVWlKW4irCr2kXaQAyXTXDHWAibg1tA== dependencies: deepmerge "^4.2.2" escape-string-regexp "^4.0.0" htmlparser2 "^6.0.0" is-plain-object "^5.0.0" - klona "^2.0.3" parse-srcset "^1.0.2" - postcss "^8.0.2" - -sanitize.css@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/sanitize.css/-/sanitize.css-4.1.0.tgz#0bafc3c513699f2fe8c7980c6d37edf21d3f5448" - integrity sha512-bIcHg1fKwn0J3Ps2DUr0MqYEITfFDjJjBiAGbrzaH0UYUwaZcLa6xn7b/pmk811ht8LmvKKzO2aOOKAi9SkB+A== - -saslprep@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/saslprep/-/saslprep-1.0.3.tgz#4c02f946b56cf54297e347ba1093e7acac4cf226" - integrity sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag== - dependencies: - sparse-bitfield "^3.0.3" + postcss "^8.3.11" saxes@^5.0.1: version "5.0.1"

@@ -11781,22 +11250,23 @@ integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==

dependencies: xmlchars "^2.2.0" -scheduler@^0.19.1: - version "0.19.1" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" - integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== +scheduler@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" + integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" -schema-utils@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" - integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== +schema-utils@4.0.0, schema-utils@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.0.tgz#60331e9e3ae78ec5d16353c467c34b3a0a1d3df7" + integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg== dependencies: - ajv "^6.1.0" - ajv-errors "^1.0.0" - ajv-keywords "^3.1.0" + "@types/json-schema" "^7.0.9" + ajv "^8.8.0" + ajv-formats "^2.1.1" + ajv-keywords "^5.0.0" schema-utils@^2.6.5: version "2.7.1"

@@ -11807,7 +11277,7 @@ "@types/json-schema" "^7.0.5"

ajv "^6.12.4" ajv-keywords "^3.5.2" -schema-utils@^3.0.0: +schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==

@@ -11828,46 +11298,34 @@ version "2.0.0"

resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== -selfsigned@^1.10.8: - version "1.10.14" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.14.tgz#ee51d84d9dcecc61e07e4aba34f229ab525c1574" - integrity sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA== +selfsigned@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.0.1.tgz#8b2df7fa56bf014d19b6007655fff209c0ef0a56" + integrity sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ== dependencies: - node-forge "^0.10.0" - -semver@5.4.1: - version "5.4.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" - integrity sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg== + node-forge "^1" semver@7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== -semver@7.3.5: - version "7.3.5" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" - integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== +semver@7.3.7, semver@^7.2.1, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7: + version "7.3.7" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== dependencies: lru-cache "^6.0.0" -semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: +semver@^5.5.0, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: +semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.2.1, semver@^7.3.2, semver@^7.3.5: - version "7.3.7" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" - integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== - dependencies: - lru-cache "^6.0.0" send@0.18.0: version "0.18.0"

@@ -11896,36 +11354,18 @@ dependencies:

dkim-signer "0.2.2" mailcomposer "3.12.0" -sequelize-pool@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/sequelize-pool/-/sequelize-pool-2.3.0.tgz#64f1fe8744228172c474f530604b6133be64993d" - integrity sha512-Ibz08vnXvkZ8LJTiUOxRcj1Ckdn7qafNZ2t59jYHMX1VIebTAOYefWdRYFt6z6+hy52WGthAHAoLc9hvk3onqA== - -sequelize@^5.8.7: - version "5.22.5" - resolved "https://registry.yarnpkg.com/sequelize/-/sequelize-5.22.5.tgz#ff7fdd34980a2d95456a4a57e16153c20d57e96e" - integrity sha512-ySIHof18sJbeVG4zjEvsDL490cd9S14/IhkCrZR/g0C/FPlZq1AzEJVeSAo++9/sgJH2eERltAIGqYQNgVqX/A== +sentence-case@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-2.1.1.tgz#1f6e2dda39c168bf92d13f86d4a918933f667ed4" + integrity sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ== dependencies: - bluebird "^3.5.0" - cls-bluebird "^2.1.0" - debug "^4.1.1" - dottie "^2.0.0" - inflection "1.12.0" - lodash "^4.17.15" - moment "^2.24.0" - moment-timezone "^0.5.21" - retry-as-promised "^3.2.0" - semver "^6.3.0" - sequelize-pool "^2.3.0" - toposort-class "^1.0.1" - uuid "^8.3.2" - validator "^13.7.0" - wkx "^0.4.8" + no-case "^2.2.0" + upper-case-first "^1.1.2" -serialize-javascript@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" - integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== +serialize-javascript@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== dependencies: randombytes "^2.1.0"

@@ -11952,7 +11392,7 @@ escape-html "~1.0.3"

parseurl "~1.3.3" send "0.18.0" -set-blocking@^2.0.0, set-blocking@~2.0.0: +set-blocking@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==

@@ -11967,7 +11407,7 @@ is-extendable "^0.1.1"

is-plain-object "^2.0.3" split-string "^3.0.1" -setimmediate@^1.0.4, setimmediate@^1.0.5: +setimmediate@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==

@@ -11990,27 +11430,29 @@ dependencies:

inherits "^2.0.1" safe-buffer "^5.0.1" -shallow-equal@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da" - integrity sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA== +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" shallowequal@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== -sharp@0.29.0: - version "0.29.0" - resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.29.0.tgz#1fa302bd5f60292138c823aa0905609f64d710ba" - integrity sha512-mdN1Up0eN+SwyForPls59dWO0nx64J1XRQYy5ZiKSADAccGYCB10UAGJHSVG9VObzJdhHqrVJzQcq6gx8USyoA== +sharp@0.30.7: + version "0.30.7" + resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.30.7.tgz#7862bda98804fdd1f0d5659c85e3324b90d94c7c" + integrity sha512-G+MY2YW33jgflKPTXXptVO28HvNOo9G3j0MybYAHeEmby+QuD2U98dT6ueht9cv/XDqZspSpIhoSW+BAKJ7Hig== dependencies: - color "^4.0.1" - detect-libc "^1.0.3" - node-addon-api "^4.0.0" - prebuild-install "^6.1.4" - semver "^7.3.5" - simple-get "^3.1.0" + color "^4.2.3" + detect-libc "^2.0.1" + node-addon-api "^5.0.0" + prebuild-install "^7.1.1" + semver "^7.3.7" + simple-get "^4.0.1" tar-fs "^2.1.1" tunnel-agent "^0.6.0"

@@ -12038,11 +11480,6 @@ version "3.0.0"

resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shimmer@^1.1.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.1.tgz#610859f7de327b587efebf501fb43117f9aff337" - integrity sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw== - side-channel@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"

@@ -12052,17 +11489,7 @@ call-bind "^1.0.0"

get-intrinsic "^1.0.2" object-inspect "^1.9.0" -sift@13.5.0: - version "13.5.0" - resolved "https://registry.yarnpkg.com/sift/-/sift-13.5.0.tgz#0f46fd0b2432bd516307d2c32bff3b142a8ab530" - integrity sha512-YoS8hmXbmJcf1Gde5bR7+pq69+Nvfv5eHTyv4B00YxJAejTEfzvamG8LHzb0jAFFciMkY05K7GG3P7n/gm0+gg== - -sift@13.5.2: - version "13.5.2" - resolved "https://registry.yarnpkg.com/sift/-/sift-13.5.2.tgz#24a715e13c617b086166cd04917d204a591c9da6" - integrity sha512-+gxdEOMA2J+AI+fVsCqeNn7Tgx3M9ZN9jdi95939l1IJ8cZsqS8sqpJyOkic2SJk+1+98Uwryt/gL6XDaV+UZA== - -sift@^13.0.0: +sift@13.5.4: version "13.5.4" resolved "https://registry.yarnpkg.com/sift/-/sift-13.5.4.tgz#7b2a67f724c8b2fca121fcfdef4011bb1ea4e3ef" integrity sha512-J/d0r/MJlD7vG3j6FZI3/KnN+MxEmPUx2nyKNawysbl2ktisEnAWI5j0AgHM19p4xFA2vDXve4i8TQYYfi9O6Q==

@@ -12077,12 +11504,12 @@ version "1.0.1"

resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== -simple-get@^3.0.3, simple-get@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.1.tgz#cc7ba77cfbe761036fbfce3d021af25fc5584d55" - integrity sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA== +simple-get@^4.0.0, simple-get@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" + integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== dependencies: - decompress-response "^4.2.0" + decompress-response "^6.0.0" once "^1.3.1" simple-concat "^1.0.0"

@@ -12111,17 +11538,19 @@ dependencies:

ansi-styles "^4.0.0" astral-regex "^2.0.0" is-fullwidth-code-point "^3.0.0" - -sliced@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41" - integrity sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA== smart-buffer@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== +snake-case@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-2.1.0.tgz#41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f" + integrity sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q== + dependencies: + no-case "^2.2.0" + snapdragon-node@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"

@@ -12152,18 +11581,7 @@ source-map "^0.5.6"

source-map-resolve "^0.5.0" use "^3.1.0" -sockjs-client@^1.5.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.6.1.tgz#350b8eda42d6d52ddc030c39943364c11dcad806" - integrity sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw== - dependencies: - debug "^3.2.7" - eventsource "^2.0.2" - faye-websocket "^0.11.4" - inherits "^2.0.4" - url-parse "^1.5.10" - -sockjs@^0.3.21: +sockjs@^0.3.24: version "0.3.24" resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==

@@ -12189,12 +11607,12 @@ dependencies:

ip "^2.0.0" smart-buffer "^4.2.0" -sorted-array-functions@^1.0.0: +sorted-array-functions@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/sorted-array-functions/-/sorted-array-functions-1.3.0.tgz#8605695563294dffb2c9796d602bd8459f7a0dd5" integrity sha512-2sqgzeFlid6N4Z2fUQ1cvFmTOLRi/sEDzSQ0OKYchqgoPmQBVyM3959qYx3fpS6Esef80KjmpgPeEr028dP3OA== -source-list-map@^2.0.0: +source-list-map@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==

@@ -12215,7 +11633,7 @@ resolve-url "^0.2.1"

source-map-url "^0.4.0" urix "^0.1.0" -source-map-support@^0.5.6, source-map-support@~0.5.12: +source-map-support@^0.5.6, source-map-support@~0.5.20: version "0.5.21" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==

@@ -12228,7 +11646,7 @@ version "0.4.1"

resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== -source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.0: +source-map@^0.5.6, source-map@^0.5.7: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==

@@ -12248,13 +11666,6 @@ version "1.1.5"

resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== -sparse-bitfield@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz#ff4ae6e68656056ba4b3e792ab3334d38273ca11" - integrity sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ== - dependencies: - memory-pager "^1.0.2" - spdy-transport@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31"

@@ -12278,35 +11689,18 @@ http-deceiver "^1.2.7"

select-hose "^2.0.0" spdy-transport "^3.0.0" -split-on-first@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" - integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== - split-string@^3.0.1, split-string@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== dependencies: extend-shallow "^3.0.0" - -split2@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" - integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw== - dependencies: - through2 "^2.0.2" split2@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/split2/-/split2-4.1.0.tgz#101907a24370f85bb782f08adaabe4e281ecf809" integrity sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ== -sprintf-js@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" - integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== - sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"

@@ -12338,19 +11732,17 @@ jsbn "~0.1.0"

safer-buffer "^2.0.2" tweetnacl "~0.14.0" -ssri@^6.0.1: - version "6.0.2" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5" - integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q== - dependencies: - figgy-pudding "^3.5.1" - ssri@^8.0.0, ssri@^8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== dependencies: minipass "^3.1.1" + +stack-trace@0.0.x: + version "0.0.10" + resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" + integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg== stack-utils@^2.0.3: version "2.0.5"

@@ -12382,655 +11774,57 @@ version "1.5.0"

resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== -std-env@^2.2.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/std-env/-/std-env-2.3.1.tgz#d42271908819c243f8defc77a140fc1fcee336a1" - integrity sha512-eOsoKTWnr6C8aWrqJJ2KAReXoa7Vn5Ywyw6uCXgA/xDhxPoaIsBa5aNJmISY04dLwXPBnDHW4diGM7Sn5K4R/g== - dependencies: - ci-info "^3.1.1" - -stealthy-require@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" - integrity sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g== - -strapi-admin@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-admin/-/strapi-admin-3.6.8.tgz#0000f07c8004c7110b49abb1757f50ab9d751a92" - integrity sha512-LqOzAE27eJZAfCgW1KQipESfL2PMumej5CS8dBdu+PHMsn270gKdZceA4vLBYix5OkkNnsKcioTzK1/uyWYpdg== - dependencies: - "@babel/core" "^7.14.0" - "@babel/plugin-proposal-async-generator-functions" "^7.13.15" - "@babel/plugin-proposal-class-properties" "^7.12.1" - "@babel/plugin-syntax-dynamic-import" "^7.2.0" - "@babel/plugin-transform-modules-commonjs" "^7.12.1" - "@babel/plugin-transform-runtime" "^7.13.15" - "@babel/polyfill" "^7.12.1" - "@babel/preset-env" "^7.13.15" - "@babel/preset-react" "^7.13.13" - "@babel/runtime" "^7.13.17" - "@buffetjs/core" "3.3.8" - "@buffetjs/custom" "3.3.8" - "@buffetjs/hooks" "3.3.8" - "@buffetjs/icons" "3.3.8" - "@buffetjs/styles" "3.3.8" - "@buffetjs/utils" "3.3.8" - "@casl/ability" "^4.1.5" - "@fingerprintjs/fingerprintjs" "3.1.1" - "@fortawesome/fontawesome-free" "^5.15.3" - "@fortawesome/fontawesome-svg-core" "^1.2.35" - "@fortawesome/free-brands-svg-icons" "^5.15.3" - "@fortawesome/free-solid-svg-icons" "^5.15.3" - "@fortawesome/react-fontawesome" "^0.1.14" - autoprefixer "^9.8.6" - axios "^0.21.1" - babel-loader "^8.1.0" - bcryptjs "^2.4.3" - bootstrap "^4.6.0" - chalk "^4.1.1" - chokidar "^3.5.1" - classnames "^2.3.1" - cross-env "^7.0.3" - css-loader "^2.1.1" - duplicate-package-checker-webpack-plugin "^3.0.0" - execa "^1.0.0" - file-loader "^6.2.0" - font-awesome "^4.7.0" - formik "^2.2.6" - friendly-errors-webpack-plugin "^1.7.0" - fs-extra "^9.1.0" - history "^4.9.0" - hoist-non-react-statics "^3.3.0" - html-loader "^0.5.5" - html-webpack-plugin "^3.2.0" - immer "^8.0.1" - immutable "^3.8.2" - invariant "^2.2.4" - is-wsl "^2.0.0" - js-cookie "2.2.1" - jsonwebtoken "8.5.1" - koa-compose "4.1.0" - koa-passport "4.1.4" - lodash "4.17.21" - match-sorter "^4.0.2" - mini-css-extract-plugin "^1.4.0" - moment "^2.29.1" - p-map "4.0.0" - passport-local "1.0.0" - prop-types "^15.7.2" - qs "6.10.1" - react "^16.14.0" - react-copy-to-clipboard "^5.0.3" - react-dnd "^10.0.2" - react-dnd-html5-backend "^10.0.2" - react-dom "^16.9.0" - react-error-boundary "3.1.1" - react-fast-compare "^3.2.0" - react-helmet "^6.1.0" - react-intl "4.5.0" - react-is "^16.12.0" - react-loadable "^5.5.0" - react-query "3.13.12" - react-redux "7.2.3" - react-router "^5.2.0" - react-router-dom "^5.0.0" - react-select "^4.0.2" - react-tooltip "4.2.18" - react-transition-group "4.4.1" - react-virtualized "^9.22.3" - reactstrap "8.4.1" - redux "^4.0.1" - redux-immutable "^4.0.0" - redux-saga "^0.16.0" - reselect "^4.0.0" - sanitize.css "^4.1.0" - semver "7.3.5" - sift "13.5.0" - strapi-helper-plugin "3.6.8" - strapi-utils "3.6.8" - style-loader "^0.23.1" - styled-components "^5.2.3" - terser-webpack-plugin "^1.2.3" - url-loader "^1.1.2" - video-react "^0.13.2" - webpack "^4.46.0" - webpack-cli "^3.3.12" - webpack-dev-server "^3.11.2" - webpackbar "^4.0.0" - yup "^0.32.9" - -strapi-connector-bookshelf@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-connector-bookshelf/-/strapi-connector-bookshelf-3.6.8.tgz#95767ffa9631d08b24fb705fc076df4e0e6b01f0" - integrity sha512-2A9RFLO3jF4TdX7tjRz+uu80sGhVyhpDI+qxs6rQ/I2fbMgg/7zO9VpR0csHYI9vpKzkOcEhV2uvcgY8l3Gl9A== - dependencies: - bookshelf "^1.0.1" - date-fns "^2.19.0" - inquirer "^6.3.1" - lodash "4.17.21" - p-map "4.0.0" - pluralize "^8.0.0" - rimraf "3.0.2" - strapi-utils "3.6.8" - -strapi-database@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-database/-/strapi-database-3.6.8.tgz#94a99a06e762d4f2ad5d2db173c75ab0db3ac1e2" - integrity sha512-nHOloiCVekMLUOnUa+L6gs4Ezdz8zE8v8tbR+C0LFLn03fwsucpJVgwExBoPEkrGJqW5TTQ2cmR6nTyCAhB0ZA== - dependencies: - debug "4.3.1" - lodash "4.17.21" - p-map "4.0.0" - strapi-utils "3.6.8" - verror "^1.10.0" - -strapi-generate-api@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-generate-api/-/strapi-generate-api-3.6.8.tgz#e198e868e873e9134b1c1c1b71a2111e4c3edbba" - integrity sha512-+AyCumWpgZunG0QwDvviBudUGHofdkTucRoiVgYHkWA25S8pBFLj0ibfB9Po1eg20OCT1DTw4U/4uBFH8MPZ2w== - dependencies: - lodash "4.17.21" - pluralize "^8.0.0" - strapi-utils "3.6.8" - -strapi-generate-controller@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-generate-controller/-/strapi-generate-controller-3.6.8.tgz#294019f6e46490047d02a501bcc63d64c55c023d" - integrity sha512-4385AZVmS8KvaLgAzD/CDm/oQ2mlElm72Jf1lA3bU01A6aL/vAxKdlt/gFcEk3m48miMOmhWw2MMveGjYw35kQ== - dependencies: - lodash "4.17.21" - strapi-utils "3.6.8" - -strapi-generate-model@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-generate-model/-/strapi-generate-model-3.6.8.tgz#ddfde9500b9f25aecd07f62c259e8c5bb1435e7b" - integrity sha512-6DkGQOTP3818LGs2yy/eJ6lWLdP2q4x3/fEmjImU1SHtcc3G/DUjWA5gLTBSYR0HVdLCRwc63XYjgpy72QxByQ== - dependencies: - lodash "4.17.21" - pluralize "^8.0.0" - strapi-utils "3.6.8" - -strapi-generate-new@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-generate-new/-/strapi-generate-new-3.6.8.tgz#44069ae6fa494ece3d86319084d547d38360de05" - integrity sha512-p72pznecpy65aQadC4y2WGkp/74/s0xKMMP94rDKMwv6j53+bO74DrhBui6WS7H5T4svfG4eqmVXo4J6RNdm3g== - dependencies: - "@sentry/node" "6.3.0" - chalk "^4.1.1" - execa "^1.0.0" - fs-extra "^9.1.0" - git-url-parse "^11.4.4" - inquirer "^6.3.1" - lodash "4.17.21" - node-fetch "^2.6.1" - node-machine-id "^1.1.10" - ora "^5.4.0" - tar "6.1.4" - uuid "^3.3.2" - -strapi-generate-plugin@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-generate-plugin/-/strapi-generate-plugin-3.6.8.tgz#c82e7e4ffb6e11ab0ded7109c33b858bd9130470" - integrity sha512-dZkbZIFSUSYbaR0UV2EsFBd+hNIgwaB57vZEpC21vCwtmLwV1zWDeTb+4DD+QkxDGdCUer+BFLv2PEVJyMWsnw== - dependencies: - fs-extra "^9.1.0" - lodash "4.17.21" - strapi-utils "3.6.8" - -strapi-generate-policy@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-generate-policy/-/strapi-generate-policy-3.6.8.tgz#87641e5ce2aca459ac4e62ce23115306bb04dfa9" - integrity sha512-gjqg2qjj8+yIEStBBu5rPt5AfJS3xEN1FY1RgF7v0ufx/iMIDHZBw18DTwQ4Dm5gDxQhzvJZ4ku58LzWwNhPgQ== - dependencies: - lodash "4.17.21" - strapi-utils "3.6.8" - -strapi-generate-service@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-generate-service/-/strapi-generate-service-3.6.8.tgz#bdb1ce416d8e92ad48393f3f1c13f898766f37bb" - integrity sha512-70XSRDsEhZZlL0QDi4UcJymc9zsQkbaioX4U/usXiepqYeJ7vXv+czGmMiL87eJRLHqmFXC39fdti/9v2a+CMg== - dependencies: - lodash "4.17.21" - strapi-utils "3.6.8" +std-env@^3.0.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.2.1.tgz#00e260ec3901333537125f81282b9296b00d7304" + integrity sha512-D/uYFWkI/31OrnKmXZqGAGK5GbQRPp/BWA1nuITcc6ICblhhuQUPHS5E2GSCVS7Hwhf4ciq8qsATwBUxv+lI6w== -strapi-generate@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-generate/-/strapi-generate-3.6.8.tgz#54a7b8bf84f807dd654d32554201c28bc62d445f" - integrity sha512-QdSHlLa9VbEBwSfdMCmtcOkXYxlwWiSw3AoKlTHeydPYb2xlGyWqxxH0OTzEi0rKjpFmqao9At5dkwChyp8wmQ== +strapi-plugin-email-designer@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/strapi-plugin-email-designer/-/strapi-plugin-email-designer-2.1.1.tgz#bcaeecda4b70946c45571cb825a3099114577013" + integrity sha512-04563vmUVTfJs/2ETc9uaD1dCEZuQ7lzxPRZM+LnN8FfHq+Qj/SRnd//UOzHILu86WK2UIU5d2GHZW9U0BNWfw== dependencies: - async "^2.6.2" - fs-extra "^9.1.0" - lodash "4.17.21" - reportback "^2.0.2" - strapi-utils "3.6.8" - -strapi-helper-plugin@3.6.10: - version "3.6.10" - resolved "https://registry.yarnpkg.com/strapi-helper-plugin/-/strapi-helper-plugin-3.6.10.tgz#c4b18b797b826aabdc731573381820238245b5b3" - integrity sha512-u+jfDv69Y9ogEeAzJtB99OEvBUpMexbhuwhuHgzQBZMqTUaRswVYMXL2LKGCaabmcbt+0dsD3SmDbx/pLdRD0g== - dependencies: - "@buffetjs/core" "3.3.8" - "@buffetjs/custom" "3.3.8" - "@buffetjs/hooks" "3.3.8" - "@buffetjs/icons" "3.3.8" - "@buffetjs/styles" "3.3.8" - "@buffetjs/utils" "3.3.8" - "@fortawesome/fontawesome-free" "^5.15.2" - "@fortawesome/fontawesome-svg-core" "^1.2.35" - "@fortawesome/free-brands-svg-icons" "^5.15.2" - "@fortawesome/free-solid-svg-icons" "^5.15.3" - "@fortawesome/react-fontawesome" "^0.1.14" - bootstrap "^4.6.0" - classnames "^2.3.1" - immutable "^3.8.2" - invariant "^2.2.1" - lodash "4.17.21" - moment "^2.29.1" - react "^16.14.0" - react-dom "^16.9.0" - react-helmet "^6.1.0" - react-intl "4.5.0" - react-router "^5.2.0" - react-router-dom "^5.0.0" - reactstrap "8.4.1" - styled-components "^5.2.3" - whatwg-fetch "^3.6.2" - -strapi-helper-plugin@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-helper-plugin/-/strapi-helper-plugin-3.6.8.tgz#29a6ff49ef1fe5021d9a24e566a375d357f450ae" - integrity sha512-nKXotVyqqGYYj5l3cR4wYqcvY9QZOpmom77ziNTPvQFLqp0jmfrNUYfV6QMYa6LpuffJJgmSIHl4chS2GuBD+w== - dependencies: - "@buffetjs/core" "3.3.8" - "@buffetjs/custom" "3.3.8" - "@buffetjs/hooks" "3.3.8" - "@buffetjs/icons" "3.3.8" - "@buffetjs/styles" "3.3.8" - "@buffetjs/utils" "3.3.8" - "@fortawesome/fontawesome-free" "^5.15.2" - "@fortawesome/fontawesome-svg-core" "^1.2.35" - "@fortawesome/free-brands-svg-icons" "^5.15.2" - "@fortawesome/free-solid-svg-icons" "^5.15.3" - "@fortawesome/react-fontawesome" "^0.1.14" - bootstrap "^4.6.0" - classnames "^2.3.1" - immutable "^3.8.2" - invariant "^2.2.1" - lodash "4.17.21" - moment "^2.29.1" - react "^16.14.0" - react-dom "^16.9.0" - react-helmet "^6.1.0" - react-intl "4.5.0" - react-router "^5.2.0" - react-router-dom "^5.0.0" - reactstrap "8.4.1" - styled-components "^5.2.3" - whatwg-fetch "^3.6.2" - -strapi-middleware-sentry@^0.0.11: - version "0.0.11" - resolved "https://registry.yarnpkg.com/strapi-middleware-sentry/-/strapi-middleware-sentry-0.0.11.tgz#36754d6f841b0e3489bfac48843c86644552b37c" - integrity sha512-OOUsI4DUVx+Vxw1Bxx1S4DKpQC3Y4Pid3Qjnye5iJztmg/agZgHZWMWV5rI3Li4pybjeSD0eDyblBqvQ5Uihgg== - dependencies: - "@sentry/node" "^5.26.0" - -strapi-plugin-content-manager@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-plugin-content-manager/-/strapi-plugin-content-manager-3.6.8.tgz#fe46aeea0b55bbdc9d06c6c9fcdf27cdfee29a31" - integrity sha512-cNI+/Shx4ayd3FUfoy3E/BG2yutczos5LX8XCgHdBGVI1YkIdNbnGJXd+fL4jQQZzDRwI9fABs6VXeQCyuCY8A== - dependencies: - "@buffetjs/core" "3.3.8" - "@buffetjs/custom" "3.3.8" - "@buffetjs/hooks" "3.3.8" - "@buffetjs/icons" "3.3.8" - "@buffetjs/styles" "3.3.8" - "@buffetjs/utils" "3.3.8" - "@sindresorhus/slugify" "1.1.0" - classnames "^2.3.1" - codemirror "^5.61.0" - draft-js "^0.11.5" - highlight.js "^10.4.1" - immutable "^3.8.2" - lodash "4.17.21" - markdown-it "^12.0.6" - markdown-it-abbr "^1.0.4" - markdown-it-container "^3.0.0" - markdown-it-deflist "^2.0.3" - markdown-it-emoji "^2.0.0" - markdown-it-footnote "^3.0.2" - markdown-it-ins "^3.0.1" - markdown-it-mark "^3.0.1" - markdown-it-sub "^1.0.0" - markdown-it-sup "^1.0.0" - pluralize "^8.0.0" - react "^16.14.0" - react-dom "^16.9.0" - react-fast-compare "^3.2.0" - react-intl "4.5.0" - react-redux "7.2.3" - react-router "^5.2.0" - react-router-dom "^5.0.0" - reactstrap "8.4.1" - redux "^4.0.1" - redux-immutable "^4.0.0" - reselect "^4.0.0" - sanitize-html "2.3.3" - strapi-helper-plugin "3.6.8" - strapi-utils "3.6.8" - yup "^0.32.9" - -strapi-plugin-content-type-builder@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-plugin-content-type-builder/-/strapi-plugin-content-type-builder-3.6.8.tgz#dcfbbec823d997e1f103c64f2b05e53914d46090" - integrity sha512-kxCPNHV15JmNz3PUdb/8I5mj4i0n8HicumSvqZh3LxovUaIqd0tGioMd4pJ3BY8XcPI7SpdZrEsbPHTqlQIEvg== - dependencies: - "@buffetjs/core" "3.3.8" - "@buffetjs/custom" "3.3.8" - "@buffetjs/hooks" "3.3.8" - "@buffetjs/icons" "3.3.8" - "@buffetjs/styles" "3.3.8" - "@buffetjs/utils" "3.3.8" - "@sindresorhus/slugify" "1.1.0" - fs-extra "^9.1.0" - immutable "^3.8.2" - lodash "4.17.21" - pluralize "^8.0.0" - react "^16.14.0" - react-dom "^16.9.0" - react-intl "4.5.0" - react-redux "7.2.3" - react-router "^5.2.0" - react-router-dom "^5.0.0" - reactstrap "8.4.1" - redux "^4.0.1" - redux-immutable "^4.0.0" - reselect "^4.0.0" - strapi-generate "3.6.8" - strapi-generate-api "3.6.8" - strapi-helper-plugin "3.6.8" - strapi-utils "3.6.8" - yup "^0.32.9" - -strapi-plugin-email-designer@^1.1.3: - version "1.1.9" - resolved "https://registry.yarnpkg.com/strapi-plugin-email-designer/-/strapi-plugin-email-designer-1.1.9.tgz#9c18910eb9ca85879dd8c478241fa710d7d9df8b" - integrity sha512-ZHA13xSsHd3Gem9lrZdNPDRlciDCSMpUiSDL4yQHQO8JOpNITtHDtZjDbQK+xWzSG5giqMpABW5hpp0jtrvjrw== - dependencies: + dayjs "^1.10.7" decode-html "^2.0.0" html-to-text "^8.0.0" lodash "^4.17.21" - react-email-editor "^1.3.0" + react-email-editor "^1.5.0" react-github-btn "^1.2.0" react-syntax-highlighter "^15.4.3" striptags "^3.2.0" -strapi-plugin-email@^3.6.8: - version "3.6.10" - resolved "https://registry.yarnpkg.com/strapi-plugin-email/-/strapi-plugin-email-3.6.10.tgz#f63efdb5167e469ae5a5f86c9db15760f8661de5" - integrity sha512-WrwOW+htVjobKj7d1fPcUpasN2ycz0Sbf++Us8mTgrcYy6UwTxPQSd8twwNRrTDywY3C7p0t77ypx6tXohy8/A== - dependencies: - lodash "4.17.21" - strapi-provider-email-sendmail "3.6.10" - strapi-utils "3.6.10" - -strapi-plugin-graphql@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-plugin-graphql/-/strapi-plugin-graphql-3.6.8.tgz#b00bda2c98d4e4ecc07b01eb1bb78fda551d06a9" - integrity sha512-7qPVVHJz9q8EMw1BgBpjc64uIbTawEUc+HNjA5+6GuKcEj0zoExBcm0PJK1U8oSTm4gDR/lnMQgWmJjU+WDUfw== - dependencies: - "@apollo/federation" "^0.20.7" - "@graphql-tools/utils" "7.2.4" - apollo-server-koa "2.24.0" - dataloader "^1.4.0" - glob "^7.1.6" - graphql "15.5.0" - graphql-depth-limit "^1.1.0" - graphql-iso-date "^3.6.1" - graphql-playground-middleware-koa "^1.6.21" - graphql-tools "4.0.8" - graphql-type-json "0.3.2" - graphql-type-long "^0.1.1" - graphql-upload "11.0.0" - koa-compose "^4.1.0" - lodash "4.17.21" - pluralize "^8.0.0" - strapi-utils "3.6.8" - -strapi-plugin-i18n@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-plugin-i18n/-/strapi-plugin-i18n-3.6.8.tgz#2e4d7f96923defa3525204846ccafbb9f15d1b11" - integrity sha512-741hMHEJQ+Yji5TPxTkw32PZnfp692LjeQjPzROWIPHD8JZ3nG7xpbaF/cUsV86jOCveeBV76oHutI5qBWn3rA== - dependencies: - lodash "4.17.21" - p-map "4.0.0" - pluralize "8.0.0" - strapi-utils "3.6.8" - -strapi-plugin-upload@^3.6.8: - version "3.6.10" - resolved "https://registry.yarnpkg.com/strapi-plugin-upload/-/strapi-plugin-upload-3.6.10.tgz#53298b44fcea2e37b1172db957d030d163c52a29" - integrity sha512-2+lbfPBaTrYFXT4yhloXq5qQfKHoFx/MDmm/wIzBJWbOvj2KKO1fRZxPBaQjJ54kk+A9/GsuoFbnUNVwmsNp4g== - dependencies: - "@buffetjs/core" "3.3.8" - "@buffetjs/custom" "3.3.8" - "@buffetjs/hooks" "3.3.8" - "@buffetjs/icons" "3.3.8" - "@buffetjs/styles" "3.3.8" - "@buffetjs/utils" "3.3.8" - byte-size "^7.0.1" - cropperjs "^1.5.11" - immer "^8.0.1" - immutable "^3.8.2" - is-valid-domain "0.0.17" - koa-range "0.3.0" - koa-static "^5.0.0" - lodash "4.17.21" - node-fetch "2.6.1" - react "^16.14.0" - react-copy-to-clipboard "^5.0.3" - react-dom "^16.9.0" - react-intl "4.5.0" - react-redux "7.2.3" - react-router "^5.2.0" - react-router-dom "^5.0.0" - reactstrap "8.4.1" - sharp "0.29.0" - strapi-helper-plugin "3.6.10" - strapi-provider-upload-local "3.6.10" - strapi-utils "3.6.10" - stream-to-array "^2.3.0" - uuid "^3.2.1" - -strapi-plugin-users-permissions@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-plugin-users-permissions/-/strapi-plugin-users-permissions-3.6.8.tgz#7a46c73bb19881607afae3c527eca8835d532210" - integrity sha512-DZPPYMUzcDxadc3BHntEobVwrWwYsI1hHK+ENTU0EVD1w9Zi4h41Bae5DKIuqwRCK2G24Dsmr5G/edcVCFeRCg== - dependencies: - "@buffetjs/core" "3.3.8" - "@buffetjs/custom" "3.3.8" - "@buffetjs/hooks" "3.3.8" - "@buffetjs/icons" "3.3.8" - "@buffetjs/styles" "3.3.8" - "@buffetjs/utils" "3.3.8" - "@purest/providers" "^1.0.2" - bcryptjs "^2.4.3" - grant-koa "5.4.8" - immutable "^3.8.2" - jsonwebtoken "^8.1.0" - koa2-ratelimit "^0.9.0" - lodash "4.17.21" - purest "3.1.0" - react "^16.14.0" - react-dom "^16.9.0" - react-intl "4.5.0" - react-redux "7.2.3" - react-router "^5.2.0" - react-router-dom "^5.0.0" - reactstrap "8.4.1" - redux-saga "^0.16.0" - request "^2.83.0" - strapi-helper-plugin "3.6.8" - strapi-utils "3.6.8" - uuid "^3.1.0" - -strapi-provider-email-sendgrid@^3.6.8: - version "3.6.10" - resolved "https://registry.yarnpkg.com/strapi-provider-email-sendgrid/-/strapi-provider-email-sendgrid-3.6.10.tgz#d877bdaf921c472516c3bafb21e2c683de99cc32" - integrity sha512-DVTxXLcGKVE1T757cnHVToK4KwGFdSkXq1SwUY4HupYAs4g5T4il3zleivq/xduxGlVg44kqOx/UejLBIDyKTw== - dependencies: - "@sendgrid/mail" "6.4.0" - strapi-utils "3.6.10" - -strapi-provider-email-sendmail@3.6.10: - version "3.6.10" - resolved "https://registry.yarnpkg.com/strapi-provider-email-sendmail/-/strapi-provider-email-sendmail-3.6.10.tgz#72940383b940cae68f061d33b4d75ddbc54d7263" - integrity sha512-o48Ut2w1QZ1PkAziENDcIjvvBI++p4afZgSmcNmjr9gZ/hmSzpczfXos0Cb+eb93TMo/mT+4TqfFhDYfjlCN/w== - dependencies: - sendmail "^1.6.1" - strapi-utils "3.6.10" - -strapi-provider-upload-local@3.6.10: - version "3.6.10" - resolved "https://registry.yarnpkg.com/strapi-provider-upload-local/-/strapi-provider-upload-local-3.6.10.tgz#9a608d00d594dc98134e5ece2b5bc81b5a834512" - integrity sha512-ssS3Hiefh5GBUuw1HdcJXbc68yQcm/+D+j6myzIkxNBO2IqI1QvZ8XEfz3UoXcc5Op9I4BmNJtYOrvsJRr5qyg== - -strapi-utils@3.6.10: - version "3.6.10" - resolved "https://registry.yarnpkg.com/strapi-utils/-/strapi-utils-3.6.10.tgz#65daa435e1289450ed5a2741d417042a8868505e" - integrity sha512-VpV9A9nqA4mkgUtlRNOMt0s1eCu0y6jKZ39Og8opTvxVud/aAnBKlDk7WaU70Mea/NtiPwUb9/fOLh7SAnOD9Q== - dependencies: - "@sindresorhus/slugify" "1.1.0" - date-fns "^2.19.0" - lodash "4.17.21" - pino "^4.7.1" - pluralize "^8.0.0" - yup "^0.32.9" - -strapi-utils@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi-utils/-/strapi-utils-3.6.8.tgz#699bcd080117df526dfb7935115e47e1877d888a" - integrity sha512-6tKHfkjrY3AfSv8sAg77Ix7meMttyd2efODY2dOKkKgdXDugdNwbl/AavjWL0xfywZaCNhxkNLLN/2Wvx8pO+w== - dependencies: - "@sindresorhus/slugify" "1.1.0" - date-fns "^2.19.0" - lodash "4.17.21" - pino "^4.7.1" - pluralize "^8.0.0" - yup "^0.32.9" - -strapi@3.6.8: - version "3.6.8" - resolved "https://registry.yarnpkg.com/strapi/-/strapi-3.6.8.tgz#91b349ca177ae7746d0aed5bcbd0d1a8e4c57c0f" - integrity sha512-vBzx27ZbVm+CL0E/EspvTC4UJkoSFdkaBk7C6sDOu/waZD4aitrmoRcZINrp4pfupgHVLFvMXi4HYWAkWhbuWA== - dependencies: - "@koa/cors" "^3.0.0" - async "^2.1.2" - boom "^7.3.0" - boxen "4.2.0" - chalk "^4.1.1" - chokidar "3.5.1" - ci-info "3.1.1" - cli-table3 "^0.6.0" - commander "6.1.0" - configstore "5.0.1" - cross-spawn "^7.0.3" - debug "^4.1.1" - delegates "^1.0.0" - dotenv "8.2.0" - execa "^1.0.0" - fs-extra "^9.1.0" - glob "^7.1.2" - inquirer "^6.2.1" - is-docker "2.2.1" - koa "^2.13.1" - koa-body "^4.2.0" - koa-compose "^4.1.0" - koa-compress "^5.0.1" - koa-convert "^2.0.0" - koa-favicon "^2.0.0" - koa-i18n "^2.1.0" - koa-ip "^2.0.0" - koa-locale "~1.3.0" - koa-lusca "~2.2.0" - koa-router "^7.4.0" - koa-session "^6.2.0" - koa-static "^5.0.0" - lodash "4.17.21" - node-fetch "2.6.1" - node-machine-id "1.1.12" - node-schedule "1.3.2" - opn "^5.3.0" - ora "^5.4.0" - package-json "6.5.0" - qs "^6.10.1" - resolve-cwd "^3.0.0" - rimraf "^3.0.2" - semver "7.3.5" - strapi-database "3.6.8" - strapi-generate "3.6.8" - strapi-generate-api "3.6.8" - strapi-generate-controller "3.6.8" - strapi-generate-model "3.6.8" - strapi-generate-new "3.6.8" - strapi-generate-plugin "3.6.8" - strapi-generate-policy "3.6.8" - strapi-generate-service "3.6.8" - strapi-utils "3.6.8" - -stream-browserify@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" - integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-each@^1.1.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" - integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== +stream-browserify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" + integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== dependencies: - end-of-stream "^1.1.0" - stream-shift "^1.0.0" + inherits "~2.0.4" + readable-stream "^3.5.0" -stream-http@^2.7.2: - version "2.8.3" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" - integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== +stream-http@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.2.0.tgz#1872dfcf24cb15752677e40e5c3f9cc1926028b5" + integrity sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A== dependencies: builtin-status-codes "^3.0.0" - inherits "^2.0.1" - readable-stream "^2.3.6" - to-arraybuffer "^1.0.0" - xtend "^4.0.0" - -stream-shift@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" - integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== + inherits "^2.0.4" + readable-stream "^3.6.0" + xtend "^4.0.2" stream-slice@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/stream-slice/-/stream-slice-0.1.2.tgz#2dc4f4e1b936fb13f3eb39a2def1932798d07a4b" integrity sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA== -stream-to-array@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/stream-to-array/-/stream-to-array-2.3.0.tgz#bbf6b39f5f43ec30bc71babcb37557acecf34353" - integrity sha512-UsZtOYEn4tWU2RGLOXr/o/xjRBftZRlG3dEWoaHr8j4GuypJ3isitGbVyjQKAuMu+xbiop8q224TjiZWc4XTZA== - dependencies: - any-promise "^1.1.0" - streamsearch@0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-0.1.2.tgz#808b9d0e56fc273d809ba57338e929919a1a9f1a" integrity sha512-jos8u++JKm0ARcSUTAZXOVC0mSox7Bhn6sBgty73P1f3JGf7yG2clTbBNHUdde/kdvP2FESam+vM6l8jBrNxHA== -strict-uri-encode@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" - integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== +string-argv@~0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" + integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== string-length@^4.0.1: version "4.0.2"

@@ -13040,16 +11834,7 @@ dependencies:

char-regex "^1.0.2" strip-ansi "^6.0.0" -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==

@@ -13058,23 +11843,6 @@ emoji-regex "^8.0.0"

is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^2.0.0, string-width@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - -string-width@^3.0.0, string-width@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - string.prototype.trimend@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"

@@ -13093,7 +11861,7 @@ call-bind "^1.0.2"

define-properties "^1.1.4" es-abstract "^1.19.5" -string_decoder@^1.0.0, string_decoder@^1.1.1: +string_decoder@^1.1.1, string_decoder@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==

@@ -13107,21 +11875,14 @@ integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==

dependencies: safe-buffer "~5.1.0" -strip-ansi@^3.0.0, strip-ansi@^3.0.1: +strip-ansi@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== dependencies: ansi-regex "^2.0.0" -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== - dependencies: - ansi-regex "^3.0.0" - -strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: +strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==

@@ -13165,22 +11926,19 @@ version "3.2.0"

resolved "https://registry.yarnpkg.com/striptags/-/striptags-3.2.0.tgz#cc74a137db2de8b0b9a370006334161f7dd67052" integrity sha512-g45ZOGzHDMe2bdYMdIvdAfCQkCTDMGBazSw1ypMowwGIee7ZQ5dU0rBJ8Jqgl+jAKIv4dbeE1jscZq9wid1Tkw== -style-loader@^0.23.1: - version "0.23.1" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" - integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg== - dependencies: - loader-utils "^1.1.0" - schema-utils "^1.0.0" +style-loader@3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.1.tgz#057dfa6b3d4d7c7064462830f9113ed417d38575" + integrity sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ== -styled-components@^5.2.3: - version "5.3.5" - resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.5.tgz#a750a398d01f1ca73af16a241dec3da6deae5ec4" - integrity sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg== +styled-components@5.3.3: + version "5.3.3" + resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.3.tgz#312a3d9a549f4708f0fb0edc829eb34bde032743" + integrity sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw== dependencies: "@babel/helper-module-imports" "^7.0.0" "@babel/traverse" "^7.4.5" - "@emotion/is-prop-valid" "^1.1.0" + "@emotion/is-prop-valid" "^0.8.8" "@emotion/stylis" "^0.8.4" "@emotion/unitless" "^0.7.4" babel-plugin-styled-components ">= 1.12.0"

@@ -13194,7 +11952,7 @@ version "4.0.13"

resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91" integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag== -subscriptions-transport-ws@^0.9.19: +subscriptions-transport-ws@0.9.19: version "0.9.19" resolved "https://registry.yarnpkg.com/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.19.tgz#10ca32f7e291d5ee8eb728b9c02e43c52606cdcf" integrity sha512-dxdemxFFB0ppCLg10FTtRqH/31FNRL1y1BQv8209MK5I4CwALb7iihQg+7p65lFcIl8MHatINWBLOqpgU4Kyyw==

@@ -13217,13 +11975,6 @@ integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==

dependencies: has-flag "^3.0.0" -supports-color@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" - integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== - dependencies: - has-flag "^3.0.0" - supports-color@^7.0.0, supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"

@@ -13251,12 +12002,13 @@ version "1.0.0"

resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -switchback@^2.0.1: - version "2.0.5" - resolved "https://registry.yarnpkg.com/switchback/-/switchback-2.0.5.tgz#2f50c91118f659c42e03c0f2bdb094f868c45336" - integrity sha512-w9gnsTxR5geOKt45QUryhDP9KTLcOAqje9usR2VQ2ng8DfhaF+mkIcArxioMP/p6Z/ecKE58i2/B0DDlMJK1jw== +swap-case@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/swap-case/-/swap-case-1.1.2.tgz#c39203a4587385fad3c850a0bd1bcafa081974e3" + integrity sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ== dependencies: - "@sailshq/lodash" "^3.10.3" + lower-case "^1.1.1" + upper-case "^1.1.1" symbol-observable@^1.0.4: version "1.2.0"

@@ -13279,10 +12031,10 @@ slice-ansi "^4.0.0"

string-width "^4.2.3" strip-ansi "^6.0.1" -tapable@^1.0.0, tapable@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" - integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== +tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== tar-fs@^2.0.0, tar-fs@^2.1.1: version "2.1.1"

@@ -13305,19 +12057,7 @@ fs-constants "^1.0.0"

inherits "^2.0.3" readable-stream "^3.1.1" -tar@6.1.4: - version "6.1.4" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.4.tgz#9f0722b772a5e00dba7d52e1923b37a7ec3799b3" - integrity sha512-kcPWrO8S5ABjuZ/v1xQHP8xCEvj1dQ1d9iAb6Qs4jLYzaAIYWwST2IQpz7Ud8VNYRI+fGhFjrnzRKmRggKWg3g== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^3.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - -tar@^6.0.2, tar@^6.1.11, tar@^6.1.2: +tar@6.1.11, tar@^6.0.2, tar@^6.1.11, tar@^6.1.2: version "6.1.11" resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==

@@ -13329,15 +12069,10 @@ minizlib "^2.1.1"

mkdirp "^1.0.3" yallist "^4.0.0" -tarn@^3.0.1: +tarn@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/tarn/-/tarn-3.0.2.tgz#73b6140fbb881b71559c4f8bfde3d9a4b3d27693" integrity sha512-51LAVKUSZSVfI05vjPESNc5vwqqZpbXCsU+/+wxlOrUjk2SnFTt97v9ZgQrD4YmxYW1Px6w2KjaDitCfkvgxMQ== - -term-size@^2.1.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" - integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== terminal-link@^2.0.0: version "2.1.1"

@@ -13347,29 +12082,26 @@ dependencies:

ansi-escapes "^4.2.1" supports-hyperlinks "^2.0.0" -terser-webpack-plugin@^1.2.3, terser-webpack-plugin@^1.4.3: - version "1.4.5" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b" - integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw== +terser-webpack-plugin@^5.1.3: + version "5.3.5" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.5.tgz#f7d82286031f915a4f8fb81af4bd35d2e3c011bc" + integrity sha512-AOEDLDxD2zylUGf/wxHxklEkOe2/r+seuyOWujejFrIxHf11brA1/dWQNIgXa1c6/Wkxgu7zvv0JhOWfc2ELEA== dependencies: - cacache "^12.0.2" - find-cache-dir "^2.1.0" - is-wsl "^1.1.0" - schema-utils "^1.0.0" - serialize-javascript "^4.0.0" - source-map "^0.6.1" - terser "^4.1.2" - webpack-sources "^1.4.0" - worker-farm "^1.7.0" + "@jridgewell/trace-mapping" "^0.3.14" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.0" + terser "^5.14.1" -terser@^4.1.2: - version "4.8.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" - integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== +terser@^5.10.0, terser@^5.14.1: + version "5.14.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.14.2.tgz#9ac9f22b06994d736174f4091aa368db896f1c10" + integrity sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA== dependencies: + "@jridgewell/source-map" "^0.3.2" + acorn "^8.5.0" commander "^2.20.0" - source-map "~0.6.1" - source-map-support "~0.5.12" + source-map-support "~0.5.20" test-exclude@^6.0.0: version "6.0.0"

@@ -13379,6 +12111,11 @@ dependencies:

"@istanbuljs/schema" "^0.1.2" glob "^7.1.4" minimatch "^3.0.4" + +text-hex@1.0.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5" + integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== text-table@^0.2.0: version "0.2.0"

@@ -13404,15 +12141,7 @@ version "6.0.1"

resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== -through2@^2.0.0, through2@^2.0.2: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through@^2.3.6, through@~2.3, through@~2.3.6: +through@^2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==

@@ -13427,7 +12156,7 @@ version "2.0.0"

resolved "https://registry.yarnpkg.com/tildify/-/tildify-2.0.0.tgz#f205f3674d677ce698b7067a99e949ce03b4754a" integrity sha512-Cc+OraorugtXNfs50hU9KS369rFXCfgGLpfCfvlc+Ud5u6VWmUQsOAa9HbTvheQdYnrdJqqv1e5oIqXppMYnSw== -timers-browserify@^2.0.4: +timers-browserify@^2.0.12: version "2.0.12" resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==

@@ -13443,6 +12172,14 @@ tiny-warning@^1.0.0, tiny-warning@^1.0.2, tiny-warning@^1.0.3:

version "1.0.3" resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== + +title-case@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa" + integrity sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q== + dependencies: + no-case "^2.2.0" + upper-case "^1.0.3" tmp@^0.0.33: version "0.0.33"

@@ -13456,11 +12193,6 @@ version "1.0.5"

resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== -to-arraybuffer@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - integrity sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA== - to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"

@@ -13473,11 +12205,6 @@ integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==

dependencies: kind-of "^3.0.2" -to-readable-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" - integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== - to-regex-range@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"

@@ -13513,28 +12240,10 @@ version "1.0.1"

resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== -toposort-class@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toposort-class/-/toposort-class-1.0.1.tgz#7ffd1f78c8be28c3ba45cd4e1a3f5ee193bd9988" - integrity sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg== - -toposort@^1.0.0: - version "1.0.7" - resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.7.tgz#2e68442d9f64ec720b8cc89e6443ac6caa950029" - integrity sha512-FclLrw8b9bMWf4QlCJuHBEVhSRsqDj6u3nIjAzPeJvgl//1hBlffdlk0MALceL14+koWEdU4ofRAXofbODxQzg== - toposort@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330" integrity sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg== - -tough-cookie@^2.3.3, tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" tough-cookie@^4.0.0: version "4.0.0"

@@ -13545,6 +12254,14 @@ psl "^1.1.33"

punycode "^2.1.1" universalify "^0.1.2" +tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + tr46@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240"

@@ -13557,42 +12274,35 @@ version "0.0.3"

resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== -ts-invariant@^0.4.0: - version "0.4.4" - resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.4.4.tgz#97a523518688f93aafad01b0e80eb803eb2abd86" - integrity sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA== - dependencies: - tslib "^1.9.3" +triple-beam@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" + integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== tslib@^1.10.0, tslib@^1.9.0, tslib@^1.9.3: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0: +tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== -tslib@~2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" - integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ== - -tslib@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" - integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== +tslib@~2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== tsscmp@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb" integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA== -tty-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - integrity sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw== +tty-browserify@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" + integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== tunnel-agent@^0.6.0: version "0.6.0"

@@ -13635,10 +12345,10 @@ version "0.21.3"

resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== +type-fest@^2.0.0: + version "2.18.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.18.1.tgz#a94f068c60b5a2d6beccccffa711210d7dd99b38" + integrity sha512-UKCINsd4qiATXD6OIlnQw9t1ux/n2ld+Nl0kzPbCONhCaUIS/BhJbNw14w6584HCQWf3frBK8vmWnGZq/sbPHQ== type-is@^1.6.14, type-is@^1.6.16, type-is@~1.6.18: version "1.6.18"

@@ -13648,11 +12358,6 @@ dependencies:

media-typer "0.3.0" mime-types "~2.1.24" -typed-styles@^0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9" - integrity sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q== - typedarray-to-buffer@^3.1.5: version "3.1.5" resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"

@@ -13660,28 +12365,32 @@ integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==

dependencies: is-typedarray "^1.0.0" -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== - -ua-parser-js@^0.7.18: - version "0.7.31" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.31.tgz#649a656b191dffab4f21d5e053e27ca17cbff5c6" - integrity sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ== +typescript@4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.2.tgz#fe12d2727b708f4eef40f51598b3398baa9611d4" + integrity sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg== uc.micro@^1.0.1, uc.micro@^1.0.5: version "1.0.6" resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== -uglify-js@3.4.x: - version "3.4.10" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" - integrity sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw== +uglify-js@^3.1.4: + version "3.17.0" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.0.tgz#55bd6e9d19ce5eef0d5ad17cd1f587d85b180a85" + integrity sha512-aTeNPVmgIMPpm1cxXr2Q/nEbvkmV8yq66F3om7X3P/cvOXQ0TMQ64Wk63iyT1gPlmdmGzjGpyLh1f3y8MZWXGg== + +umzug@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/umzug/-/umzug-3.1.1.tgz#dfbe52308bf2908984380bdffd0c75c07831fd1f" + integrity sha512-sgMDzUK6ZKS3pjzRJpAHqSkvAQ+64Dourq6JfQv11i0nMu0/QqE3V3AUpj2pWYxFBaSvnUxKrzZQmPr6NZhvdQ== dependencies: - commander "~2.19.0" - source-map "~0.6.1" + "@rushstack/ts-command-line" "^4.7.7" + emittery "^0.10.2" + fs-jetpack "^4.1.0" + glob "^7.1.6" + pony-cause "^1.1.1" + type-fest "^2.0.0" unbox-primitive@^1.0.2: version "1.0.2"

@@ -13692,6 +12401,11 @@ call-bind "^1.0.2"

has-bigints "^1.0.2" has-symbols "^1.0.3" which-boxed-primitive "^1.0.2" + +unc-path-regex@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" + integrity sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg== unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0"

@@ -13778,12 +12492,22 @@ dependencies:

has-value "^0.3.1" isobject "^3.0.0" -upath@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" - integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== +update-browserslist-db@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz#be06a5eedd62f107b7c19eb5bcefb194411abf38" + integrity sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" -upper-case@^1.1.1: +upper-case-first@^1.1.0, upper-case-first@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-1.1.2.tgz#5d79bedcff14419518fd2edb0a0507c9b6859115" + integrity sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ== + dependencies: + upper-case "^1.1.1" + +upper-case@^1.0.3, upper-case@^1.1.0, upper-case@^1.1.1, upper-case@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" integrity sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==

@@ -13795,39 +12519,15 @@ integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==

dependencies: punycode "^2.1.0" -urijs@^1.19.0: - version "1.19.11" - resolved "https://registry.yarnpkg.com/urijs/-/urijs-1.19.11.tgz#204b0d6b605ae80bea54bea39280cdb7c9f923cc" - integrity sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ== - urix@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== -url-loader@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8" - integrity sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg== - dependencies: - loader-utils "^1.1.0" - mime "^2.0.3" - schema-utils "^1.0.0" - -url-parse-lax@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" - integrity sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ== - dependencies: - prepend-http "^2.0.0" - -url-parse@^1.5.10: - version "1.5.10" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" - integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== - dependencies: - querystringify "^2.1.1" - requires-port "^1.0.0" +url-join@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7" + integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA== url@^0.11.0: version "0.11.0"

@@ -13842,70 +12542,49 @@ version "3.1.1"

resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== +user-home@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" + integrity sha512-aggiKfEEubv3UwRNqTzLInZpAOmKzwdHqEBmW/hBA/mt99eg+b4VrX6i+IRLxU8+WJYfa33rGwRseg4eElUgsQ== + util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -util.promisify@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" - integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== +util@^0.12.0, util@^0.12.4: + version "0.12.4" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== dependencies: - define-properties "^1.1.2" - object.getownpropertydescriptors "^2.0.3" - -util.promisify@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.1.1.tgz#77832f57ced2c9478174149cae9b96e9918cd54b" - integrity sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw== - dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - for-each "^0.3.3" - has-symbols "^1.0.1" - object.getownpropertydescriptors "^2.1.1" - -util@0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - integrity sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ== - dependencies: - inherits "2.0.1" - -util@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" - integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== - dependencies: - inherits "2.0.3" + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" utila@~0.4: version "0.4.0" resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== -utils-merge@1.0.1: +utils-merge@1.0.1, utils-merge@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== -uuid@^3.1.0, uuid@^3.2.1, uuid@^3.3.2: +uuid@^3.3.2: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== -uuid@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b" - integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== - uuid@^8.0.0, uuid@^8.3.2: version "8.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== -v8-compile-cache@^2.0.3, v8-compile-cache@^2.1.1: +v8-compile-cache@^2.0.3: version "2.3.0" resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==

@@ -13919,16 +12598,28 @@ "@types/istanbul-lib-coverage" "^2.0.1"

convert-source-map "^1.6.0" source-map "^0.7.3" -validator@^13.7.0: - version "13.7.0" - resolved "https://registry.yarnpkg.com/validator/-/validator-13.7.0.tgz#4f9658ba13ba8f3d82ee881d3516489ea85c0857" - integrity sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw== +v8flags@^2.0.10: + version "2.1.1" + resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" + integrity sha512-SKfhk/LlaXzvtowJabLZwD4K6SGRYeoxA7KJeISlUMAB/NT4CBkZjMq3WceX2Ckm4llwqYVo8TICgsDYCBU2tA== + dependencies: + user-home "^1.1.1" value-equal@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== +value-or-promise@1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.10.tgz#5bf041f1e9a8e7043911875547636768a836e446" + integrity sha512-1OwTzvcfXkAfabk60UVr5NdjtjJ0Fg0T5+B1bhxtrOEwSH2fe8y4DnLgoksfCyd8yZCOQQHB0qLMQnwgCjbXLQ== + +value-or-promise@1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.11.tgz#3e90299af31dd014fe843fe309cefa7c1d94b140" + integrity sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg== + vary@^1.1.2, vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"

@@ -13943,27 +12634,7 @@ assert-plus "^1.0.0"

core-util-is "1.0.2" extsprintf "^1.2.0" -verror@^1.10.0: - version "1.10.1" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz#4bf09eeccf4563b109ed4b3d458380c972b0cdeb" - integrity sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg== - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -video-react@^0.13.2: - version "0.13.9" - resolved "https://registry.yarnpkg.com/video-react/-/video-react-0.13.9.tgz#be397fc5dd7a50908368f0a47124904b87ee3307" - integrity sha512-nT8WjOGr3va7zJDR+OfpyqFpMrpMX3LfY3PuVyrt9ZdKDzlHgv9gQc/saAFb/pvImatzOs3+XA2GWrb5hXbTkg== - dependencies: - "@babel/runtime" "^7.4.5" - classnames "^2.2.6" - lodash.throttle "^4.1.1" - prop-types "^15.7.2" - redux "^4.0.1" - -vm-browserify@^1.0.1: +vm-browserify@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==

@@ -13989,30 +12660,13 @@ integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==

dependencies: makeerror "1.0.12" -warning@^4.0.2, warning@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" - integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== - dependencies: - loose-envify "^1.0.0" - -watchpack-chokidar2@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957" - integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww== - dependencies: - chokidar "^2.1.8" - -watchpack@^1.7.4: - version "1.7.5" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453" - integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ== +watchpack@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== dependencies: + glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" - neo-async "^2.5.0" - optionalDependencies: - chokidar "^3.4.1" - watchpack-chokidar2 "^2.0.1" wbuf@^1.1.0, wbuf@^1.7.3: version "1.7.3"

@@ -14043,131 +12697,130 @@ version "6.1.0"

resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== -webpack-cli@^3.3.12: - version "3.3.12" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.12.tgz#94e9ada081453cd0aa609c99e500012fd3ad2d4a" - integrity sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag== +webpack-cli@^4.10.0: + version "4.10.0" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.10.0.tgz#37c1d69c8d85214c5a65e589378f53aec64dab31" + integrity sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w== dependencies: - chalk "^2.4.2" - cross-spawn "^6.0.5" - enhanced-resolve "^4.1.1" - findup-sync "^3.0.0" - global-modules "^2.0.0" - import-local "^2.0.0" - interpret "^1.4.0" - loader-utils "^1.4.0" - supports-color "^6.1.0" - v8-compile-cache "^2.1.1" - yargs "^13.3.2" + "@discoveryjs/json-ext" "^0.5.0" + "@webpack-cli/configtest" "^1.2.0" + "@webpack-cli/info" "^1.5.0" + "@webpack-cli/serve" "^1.7.0" + colorette "^2.0.14" + commander "^7.0.0" + cross-spawn "^7.0.3" + fastest-levenshtein "^1.0.12" + import-local "^3.0.2" + interpret "^2.2.0" + rechoir "^0.7.0" + webpack-merge "^5.7.3" -webpack-dev-middleware@^3.7.2: - version "3.7.3" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz#0639372b143262e2b84ab95d3b91a7597061c2c5" - integrity sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ== +webpack-dev-middleware@^5.3.1: + version "5.3.3" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" + integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== dependencies: - memory-fs "^0.4.1" - mime "^2.4.4" - mkdirp "^0.5.1" + colorette "^2.0.10" + memfs "^3.4.3" + mime-types "^2.1.31" range-parser "^1.2.1" - webpack-log "^2.0.0" + schema-utils "^4.0.0" -webpack-dev-server@^3.11.2: - version "3.11.3" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz#8c86b9d2812bf135d3c9bce6f07b718e30f7c3d3" - integrity sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA== +webpack-dev-server@^4.9.3: + version "4.10.0" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.10.0.tgz#de270d0009eba050546912be90116e7fd740a9ca" + integrity sha512-7dezwAs+k6yXVFZ+MaL8VnE+APobiO3zvpp3rBHe/HmWQ+avwh0Q3d0xxacOiBybZZ3syTZw9HXzpa3YNbAZDQ== dependencies: - ansi-html-community "0.0.8" - bonjour "^3.5.0" - chokidar "^2.1.8" + "@types/bonjour" "^3.5.9" + "@types/connect-history-api-fallback" "^1.3.5" + "@types/express" "^4.17.13" + "@types/serve-index" "^1.9.1" + "@types/serve-static" "^1.13.10" + "@types/sockjs" "^0.3.33" + "@types/ws" "^8.5.1" + ansi-html-community "^0.0.8" + bonjour-service "^1.0.11" + chokidar "^3.5.3" + colorette "^2.0.10" compression "^1.7.4" - connect-history-api-fallback "^1.6.0" - debug "^4.1.1" - del "^4.1.1" - express "^4.17.1" - html-entities "^1.3.1" - http-proxy-middleware "0.19.1" - import-local "^2.0.0" - internal-ip "^4.3.0" - ip "^1.1.5" - is-absolute-url "^3.0.3" - killable "^1.0.1" - loglevel "^1.6.8" - opn "^5.5.0" - p-retry "^3.0.1" - portfinder "^1.0.26" - schema-utils "^1.0.0" - selfsigned "^1.10.8" - semver "^6.3.0" + connect-history-api-fallback "^2.0.0" + default-gateway "^6.0.3" + express "^4.17.3" + graceful-fs "^4.2.6" + html-entities "^2.3.2" + http-proxy-middleware "^2.0.3" + ipaddr.js "^2.0.1" + open "^8.0.9" + p-retry "^4.5.0" + rimraf "^3.0.2" + schema-utils "^4.0.0" + selfsigned "^2.0.1" serve-index "^1.9.1" - sockjs "^0.3.21" - sockjs-client "^1.5.0" + sockjs "^0.3.24" spdy "^4.0.2" - strip-ansi "^3.0.1" - supports-color "^6.1.0" - url "^0.11.0" - webpack-dev-middleware "^3.7.2" - webpack-log "^2.0.0" - ws "^6.2.1" - yargs "^13.3.2" + webpack-dev-middleware "^5.3.1" + ws "^8.4.2" -webpack-log@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" - integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== +webpack-merge@^5.7.3: + version "5.8.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" + integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== dependencies: - ansi-colors "^3.0.0" - uuid "^3.3.2" + clone-deep "^4.0.1" + wildcard "^2.0.0" -webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1: - version "1.4.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" - integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== +webpack-sources@^2.2.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.1.tgz#570de0af163949fe272233c2cefe1b56f74511fd" + integrity sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA== dependencies: - source-list-map "^2.0.0" - source-map "~0.6.1" + source-list-map "^2.0.1" + source-map "^0.6.1" + +webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== -webpack@^4.46.0: - version "4.46.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542" - integrity sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q== +webpack@^5.73.0: + version "5.74.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.74.0.tgz#02a5dac19a17e0bb47093f2be67c695102a55980" + integrity sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA== dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/helper-module-context" "1.9.0" - "@webassemblyjs/wasm-edit" "1.9.0" - "@webassemblyjs/wasm-parser" "1.9.0" - acorn "^6.4.1" - ajv "^6.10.2" - ajv-keywords "^3.4.1" + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^0.0.51" + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/wasm-edit" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" + acorn "^8.7.1" + acorn-import-assertions "^1.7.6" + browserslist "^4.14.5" chrome-trace-event "^1.0.2" - enhanced-resolve "^4.5.0" - eslint-scope "^4.0.3" - json-parse-better-errors "^1.0.2" - loader-runner "^2.4.0" - loader-utils "^1.2.3" - memory-fs "^0.4.1" - micromatch "^3.1.10" - mkdirp "^0.5.3" - neo-async "^2.6.1" - node-libs-browser "^2.2.1" - schema-utils "^1.0.0" - tapable "^1.1.3" - terser-webpack-plugin "^1.4.3" - watchpack "^1.7.4" - webpack-sources "^1.4.1" + enhanced-resolve "^5.10.0" + es-module-lexer "^0.9.0" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.9" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.1.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.1.3" + watchpack "^2.4.0" + webpack-sources "^3.2.3" -webpackbar@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/webpackbar/-/webpackbar-4.0.0.tgz#ee7a87f16077505b5720551af413c8ecd5b1f780" - integrity sha512-k1qRoSL/3BVuINzngj09nIwreD8wxV4grcuhHTD8VJgUbGcy8lQSPqv+bM00B7F+PffwIsQ8ISd4mIwRbr23eQ== +webpackbar@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/webpackbar/-/webpackbar-5.0.2.tgz#d3dd466211c73852741dfc842b7556dcbc2b0570" + integrity sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ== dependencies: - ansi-escapes "^4.2.1" - chalk "^2.4.2" - consola "^2.10.0" - figures "^3.0.0" + chalk "^4.1.0" + consola "^2.15.3" pretty-time "^1.1.0" - std-env "^2.2.1" - text-table "^0.2.0" - wrap-ansi "^6.0.0" + std-env "^3.0.1" websocket-driver@>=0.5.1, websocket-driver@^0.7.4: version "0.7.4"

@@ -14200,6 +12853,11 @@ version "2.3.0"

resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== +whatwg-mimetype@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" + integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== + whatwg-url@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"

@@ -14228,12 +12886,19 @@ is-number-object "^1.0.4"

is-string "^1.0.5" is-symbol "^1.0.3" -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== +which-typed-array@^1.1.2: + version "1.1.8" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f" + integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-abstract "^1.20.0" + for-each "^0.3.3" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.9" -which@^1.2.14, which@^1.2.9, which@^1.3.1: +which@^1.2.14, which@^1.2.9: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==

@@ -14247,7 +12912,7 @@ integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==

dependencies: isexe "^2.0.0" -wide-align@^1.1.0, wide-align@^1.1.2, wide-align@^1.1.5: +wide-align@^1.1.2, wide-align@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==

@@ -14261,42 +12926,44 @@ integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==

dependencies: string-width "^4.0.0" -wkx@^0.4.8: - version "0.4.8" - resolved "https://registry.yarnpkg.com/wkx/-/wkx-0.4.8.tgz#a092cf088d112683fdc7182fd31493b2c5820003" - integrity sha512-ikPXMM9IR/gy/LwiOSqWlSL3X/J5uk9EO2hHNRXS41eTLXaUFEVw9fn/593jW/tE5tedNg8YjT5HkCa4FqQZyQ== +wildcard@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" + integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== + +winston-transport@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.5.0.tgz#6e7b0dd04d393171ed5e4e4905db265f7ab384fa" + integrity sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q== dependencies: - "@types/node" "*" + logform "^2.3.2" + readable-stream "^3.6.0" + triple-beam "^1.3.0" + +winston@3.3.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/winston/-/winston-3.3.3.tgz#ae6172042cafb29786afa3d09c8ff833ab7c9170" + integrity sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw== + dependencies: + "@dabh/diagnostics" "^2.0.2" + async "^3.1.0" + is-stream "^2.0.0" + logform "^2.2.0" + one-time "^1.0.0" + readable-stream "^3.4.0" + stack-trace "0.0.x" + triple-beam "^1.3.0" + winston-transport "^4.4.0" word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== -worker-farm@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" - integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== - dependencies: - errno "~0.1.7" - -wrap-ansi@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" - integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== - dependencies: - ansi-styles "^3.2.0" - string-width "^3.0.0" - strip-ansi "^5.0.0" - -wrap-ansi@^6.0.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" +wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== wrap-ansi@^7.0.0: version "7.0.0"

@@ -14323,16 +12990,14 @@ signal-exit "^3.0.2"

typedarray-to-buffer "^3.1.5" "ws@^5.2.0 || ^6.0.0 || ^7.0.0", ws@^7.4.6: - version "7.5.8" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.8.tgz#ac2729881ab9e7cbaf8787fe3469a48c5c7f636a" - integrity sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw== + version "7.5.9" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== -ws@^6.2.1: - version "6.2.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e" - integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== - dependencies: - async-limiter "~1.0.0" +ws@^8.4.2: + version "8.8.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" + integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== xdg-basedir@^4.0.0: version "4.0.0"

@@ -14350,72 +13015,38 @@ resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"

integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== xss@^1.0.6, xss@^1.0.8: - version "1.0.13" - resolved "https://registry.yarnpkg.com/xss/-/xss-1.0.13.tgz#6e48f616128b39f366dfadc57411e1eb5b341c6c" - integrity sha512-clu7dxTm1e8Mo5fz3n/oW3UCXBfV89xZ72jM8yzo1vR/pIS0w3sgB3XV2H8Vm6zfGnHL0FzvLJPJEBhd86/z4Q== + version "1.0.14" + resolved "https://registry.yarnpkg.com/xss/-/xss-1.0.14.tgz#4f3efbde75ad0d82e9921cc3c95e6590dd336694" + integrity sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw== dependencies: commander "^2.20.3" cssfilter "0.0.10" -xtend@^4.0.0, xtend@~4.0.1: +xtend@^4.0.0, xtend@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -y18n@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" - integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== - y18n@^5.0.5: version "5.0.8" resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== -yallist@4.0.0, yallist@^4.0.0: +yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yaml@^1.7.2: +yaml@^1.10.0: version "1.10.2" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== -yargs-parser@^13.1.2: - version "13.1.2" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" - integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - yargs-parser@^20.2.2: version "20.2.9" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== -yargs@^13.3.2: - version "13.3.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" - integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== - dependencies: - cliui "^5.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.1.2" - yargs@^16.2.0: version "16.2.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"

@@ -14434,6 +13065,24 @@ version "1.3.2"

resolved "https://registry.yarnpkg.com/ylru/-/ylru-1.3.2.tgz#0de48017473275a4cbdfc83a1eaf67c01af8a785" integrity sha512-RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA== +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yup@0.32.9: + version "0.32.9" + resolved "https://registry.yarnpkg.com/yup/-/yup-0.32.9.tgz#9367bec6b1b0e39211ecbca598702e106019d872" + integrity sha512-Ci1qN+i2H0XpY7syDQ0k5zKQ/DoxO0LzPg8PAR/X4Mpj6DqaeCoIYEEjDJwhArh3Fa7GWbQQVDZKeXYlSH4JMg== + dependencies: + "@babel/runtime" "^7.10.5" + "@types/lodash" "^4.14.165" + lodash "^4.17.20" + lodash-es "^4.17.15" + nanoclone "^0.2.1" + property-expr "^2.0.4" + toposort "^2.0.2" + yup@^0.32.9: version "0.32.11" resolved "https://registry.yarnpkg.com/yup/-/yup-0.32.11.tgz#d67fb83eefa4698607982e63f7ca4c5ed3cf18c5"

@@ -14446,16 +13095,3 @@ lodash-es "^4.17.21"

nanoclone "^0.2.1" property-expr "^2.0.4" toposort "^2.0.2" - -zen-observable-ts@^0.8.21: - version "0.8.21" - resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz#85d0031fbbde1eba3cd07d3ba90da241215f421d" - integrity sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg== - dependencies: - tslib "^1.9.3" - zen-observable "^0.8.0" - -zen-observable@^0.8.0: - version "0.8.15" - resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15" - integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==
M e2e/constants.tse2e/constants.ts

@@ -1,6 +1,6 @@

import { Event, - Settings, + Setting, Travel, UsersPermissionsUser, Vehicle,

@@ -12,7 +12,6 @@

export const USER_PASSWORD = "Testtest1"; export const USER_ID = "1"; export const USER: Partial<UsersPermissionsUser> = { - id: USER_ID, email: "test@octree.ch", username: "test", firstName: "Kai",

@@ -22,47 +21,56 @@

export const EVENT_UUID = "2c336e59-087d-4dec-bf9b-f74b1ca22cd4"; export const EVENT_ID = "1"; export const EVENT: Event = { - id: EVENT_ID, uuid: EVENT_UUID, email: "test+event@octree.ch", name: "A Test Event", address: "442, rue Auguste Lebon, 78 432 Fernandes, France", description: "Description de l'événement de test", - created_at: "2022-08-12", - updated_at: "2022-08-20", + createdAt: "2022-08-12", + updatedAt: "2022-08-20", }; export const TRAVEL_ID = "1"; export const TRAVEL: Travel = { - id: TRAVEL_ID, details: "Travel details", - event: EVENT, + event: { + data: { + id: EVENT_ID, + attributes: EVENT, + }, + }, meeting: "Meeting test point", - passengers: [], + passengers: { + data: [], + }, phone_number: "+41 79 632 58 85", seats: 4, vehicleName: "The Test Car", departure: "2023-08-12T13:57:40.093Z", - created_at: "2022-08-12", - updated_at: "2022-08-20", + createdAt: "2022-08-12", + updatedAt: "2022-08-20", }; export const VEHICLE_ID = "1"; export const VEHICLE: Partial<Vehicle> = { - id: VEHICLE_ID, name: "My Test Car", seats: 4, phone_number: "+41 79 632 58 85", - user: USER as UsersPermissionsUser, + user: { + data: { + id: USER_ID, + attributes: USER as UsersPermissionsUser, + }, + }, }; -export const SETTING_FR: Partial<Settings> = { +export const SETTING_FR: Partial<Setting> = { announcement: "Annonce en français", about_link: "https://about.test", faq_link: "https://faq.test", }; -export const SETTING_EN: Partial<Settings> = { +export const SETTING_EN: Partial<Setting> = { announcement: "Annoucement in english", about_link: "https://about.test", faq_link: "https://faq.test",
M e2e/graphql.tse2e/graphql.ts

@@ -15,34 +15,81 @@ Int: number;

Float: number; Date: any; DateTime: any; + I18NLocaleCode: any; JSON: any; - Long: any; - Time: any; Upload: any; }; -export type AdminUser = { - __typename?: 'AdminUser'; - firstname: Scalars['String']; - id: Scalars['ID']; - lastname: Scalars['String']; - username?: Maybe<Scalars['String']>; +export type BooleanFilterInput = { + and?: InputMaybe<Array<InputMaybe<Scalars['Boolean']>>>; + between?: InputMaybe<Array<InputMaybe<Scalars['Boolean']>>>; + contains?: InputMaybe<Scalars['Boolean']>; + containsi?: InputMaybe<Scalars['Boolean']>; + endsWith?: InputMaybe<Scalars['Boolean']>; + eq?: InputMaybe<Scalars['Boolean']>; + eqi?: InputMaybe<Scalars['Boolean']>; + gt?: InputMaybe<Scalars['Boolean']>; + gte?: InputMaybe<Scalars['Boolean']>; + in?: InputMaybe<Array<InputMaybe<Scalars['Boolean']>>>; + lt?: InputMaybe<Scalars['Boolean']>; + lte?: InputMaybe<Scalars['Boolean']>; + ne?: InputMaybe<Scalars['Boolean']>; + not?: InputMaybe<BooleanFilterInput>; + notContains?: InputMaybe<Scalars['Boolean']>; + notContainsi?: InputMaybe<Scalars['Boolean']>; + notIn?: InputMaybe<Array<InputMaybe<Scalars['Boolean']>>>; + notNull?: InputMaybe<Scalars['Boolean']>; + null?: InputMaybe<Scalars['Boolean']>; + or?: InputMaybe<Array<InputMaybe<Scalars['Boolean']>>>; + startsWith?: InputMaybe<Scalars['Boolean']>; }; -export type ComponentPassengerPassenger = { - __typename?: 'ComponentPassengerPassenger'; - email?: Maybe<Scalars['String']>; - id: Scalars['ID']; - location?: Maybe<Scalars['String']>; - name: Scalars['String']; - user?: Maybe<UsersPermissionsUser>; +export type DateFilterInput = { + and?: InputMaybe<Array<InputMaybe<Scalars['Date']>>>; + between?: InputMaybe<Array<InputMaybe<Scalars['Date']>>>; + contains?: InputMaybe<Scalars['Date']>; + containsi?: InputMaybe<Scalars['Date']>; + endsWith?: InputMaybe<Scalars['Date']>; + eq?: InputMaybe<Scalars['Date']>; + eqi?: InputMaybe<Scalars['Date']>; + gt?: InputMaybe<Scalars['Date']>; + gte?: InputMaybe<Scalars['Date']>; + in?: InputMaybe<Array<InputMaybe<Scalars['Date']>>>; + lt?: InputMaybe<Scalars['Date']>; + lte?: InputMaybe<Scalars['Date']>; + ne?: InputMaybe<Scalars['Date']>; + not?: InputMaybe<DateFilterInput>; + notContains?: InputMaybe<Scalars['Date']>; + notContainsi?: InputMaybe<Scalars['Date']>; + notIn?: InputMaybe<Array<InputMaybe<Scalars['Date']>>>; + notNull?: InputMaybe<Scalars['Boolean']>; + null?: InputMaybe<Scalars['Boolean']>; + or?: InputMaybe<Array<InputMaybe<Scalars['Date']>>>; + startsWith?: InputMaybe<Scalars['Date']>; }; -export type ComponentPassengerPassengerInput = { - email?: InputMaybe<Scalars['String']>; - location?: InputMaybe<Scalars['String']>; - name: Scalars['String']; - user?: InputMaybe<Scalars['ID']>; +export type DateTimeFilterInput = { + and?: InputMaybe<Array<InputMaybe<Scalars['DateTime']>>>; + between?: InputMaybe<Array<InputMaybe<Scalars['DateTime']>>>; + contains?: InputMaybe<Scalars['DateTime']>; + containsi?: InputMaybe<Scalars['DateTime']>; + endsWith?: InputMaybe<Scalars['DateTime']>; + eq?: InputMaybe<Scalars['DateTime']>; + eqi?: InputMaybe<Scalars['DateTime']>; + gt?: InputMaybe<Scalars['DateTime']>; + gte?: InputMaybe<Scalars['DateTime']>; + in?: InputMaybe<Array<InputMaybe<Scalars['DateTime']>>>; + lt?: InputMaybe<Scalars['DateTime']>; + lte?: InputMaybe<Scalars['DateTime']>; + ne?: InputMaybe<Scalars['DateTime']>; + not?: InputMaybe<DateTimeFilterInput>; + notContains?: InputMaybe<Scalars['DateTime']>; + notContainsi?: InputMaybe<Scalars['DateTime']>; + notIn?: InputMaybe<Array<InputMaybe<Scalars['DateTime']>>>; + notNull?: InputMaybe<Scalars['Boolean']>; + null?: InputMaybe<Scalars['Boolean']>; + or?: InputMaybe<Array<InputMaybe<Scalars['DateTime']>>>; + startsWith?: InputMaybe<Scalars['DateTime']>; }; export enum Enum_Page_Type {

@@ -58,363 +105,459 @@ export type EmailDesignerEmailTemplate = {

__typename?: 'EmailDesignerEmailTemplate'; bodyHtml?: Maybe<Scalars['String']>; bodyText?: Maybe<Scalars['String']>; - created_at: Scalars['DateTime']; + createdAt?: Maybe<Scalars['DateTime']>; design?: Maybe<Scalars['JSON']>; enabled?: Maybe<Scalars['Boolean']>; - id: Scalars['ID']; name?: Maybe<Scalars['String']>; - sourceCodeToTemplateId?: Maybe<Scalars['Int']>; subject?: Maybe<Scalars['String']>; tags?: Maybe<Scalars['JSON']>; - updated_at: Scalars['DateTime']; + templateReferenceId?: Maybe<Scalars['Int']>; + updatedAt?: Maybe<Scalars['DateTime']>; +}; + +export type EmailDesignerEmailTemplateEntity = { + __typename?: 'EmailDesignerEmailTemplateEntity'; + attributes?: Maybe<EmailDesignerEmailTemplate>; + id?: Maybe<Scalars['ID']>; +}; + +export type EmailDesignerEmailTemplateEntityResponse = { + __typename?: 'EmailDesignerEmailTemplateEntityResponse'; + data?: Maybe<EmailDesignerEmailTemplateEntity>; +}; + +export type EmailDesignerEmailTemplateEntityResponseCollection = { + __typename?: 'EmailDesignerEmailTemplateEntityResponseCollection'; + data: Array<EmailDesignerEmailTemplateEntity>; + meta: ResponseCollectionMeta; +}; + +export type EmailDesignerEmailTemplateFiltersInput = { + and?: InputMaybe<Array<InputMaybe<EmailDesignerEmailTemplateFiltersInput>>>; + bodyHtml?: InputMaybe<StringFilterInput>; + bodyText?: InputMaybe<StringFilterInput>; + createdAt?: InputMaybe<DateTimeFilterInput>; + design?: InputMaybe<JsonFilterInput>; + enabled?: InputMaybe<BooleanFilterInput>; + id?: InputMaybe<IdFilterInput>; + name?: InputMaybe<StringFilterInput>; + not?: InputMaybe<EmailDesignerEmailTemplateFiltersInput>; + or?: InputMaybe<Array<InputMaybe<EmailDesignerEmailTemplateFiltersInput>>>; + subject?: InputMaybe<StringFilterInput>; + tags?: InputMaybe<JsonFilterInput>; + templateReferenceId?: InputMaybe<IntFilterInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; }; -export type EmailTemplateInput = { +export type EmailDesignerEmailTemplateInput = { bodyHtml?: InputMaybe<Scalars['String']>; bodyText?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; design?: InputMaybe<Scalars['JSON']>; enabled?: InputMaybe<Scalars['Boolean']>; name?: InputMaybe<Scalars['String']>; - sourceCodeToTemplateId?: InputMaybe<Scalars['Int']>; subject?: InputMaybe<Scalars['String']>; tags?: InputMaybe<Scalars['JSON']>; - updated_by?: InputMaybe<Scalars['ID']>; + templateReferenceId?: InputMaybe<Scalars['Int']>; }; export type Event = { __typename?: 'Event'; address?: Maybe<Scalars['String']>; - created_at: Scalars['DateTime']; + createdAt?: Maybe<Scalars['DateTime']>; date?: Maybe<Scalars['Date']>; description?: Maybe<Scalars['String']>; email: Scalars['String']; - id: Scalars['ID']; name: Scalars['String']; - newsletter?: Maybe<Scalars['Boolean']>; position?: Maybe<Scalars['JSON']>; - travels?: Maybe<Array<Maybe<Travel>>>; - updated_at: Scalars['DateTime']; - users?: Maybe<Array<Maybe<UsersPermissionsUser>>>; + travels?: Maybe<TravelRelationResponseCollection>; + updatedAt?: Maybe<Scalars['DateTime']>; uuid?: Maybe<Scalars['String']>; - waitingPassengers?: Maybe<Array<Maybe<Passenger>>>; + waitingPassengers?: Maybe<PassengerRelationResponseCollection>; }; export type EventTravelsArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; -}; - - -export type EventUsersArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; + filters?: InputMaybe<TravelFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; export type EventWaitingPassengersArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; -}; - -export type EventAggregator = { - __typename?: 'EventAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; + filters?: InputMaybe<PassengerFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type EventConnection = { - __typename?: 'EventConnection'; - aggregate?: Maybe<EventAggregator>; - groupBy?: Maybe<EventGroupBy>; - values?: Maybe<Array<Maybe<Event>>>; -}; - -export type EventConnectionAddress = { - __typename?: 'EventConnectionAddress'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['String']>; +export type EventEntity = { + __typename?: 'EventEntity'; + attributes?: Maybe<Event>; + id?: Maybe<Scalars['ID']>; }; -export type EventConnectionCreated_At = { - __typename?: 'EventConnectionCreated_at'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type EventConnectionDate = { - __typename?: 'EventConnectionDate'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type EventConnectionDescription = { - __typename?: 'EventConnectionDescription'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type EventConnectionEmail = { - __typename?: 'EventConnectionEmail'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['String']>; +export type EventEntityResponse = { + __typename?: 'EventEntityResponse'; + data?: Maybe<EventEntity>; }; -export type EventConnectionId = { - __typename?: 'EventConnectionId'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type EventConnectionName = { - __typename?: 'EventConnectionName'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type EventConnectionNewsletter = { - __typename?: 'EventConnectionNewsletter'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['Boolean']>; -}; - -export type EventConnectionPosition = { - __typename?: 'EventConnectionPosition'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['JSON']>; -}; - -export type EventConnectionUpdated_At = { - __typename?: 'EventConnectionUpdated_at'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type EventConnectionUuid = { - __typename?: 'EventConnectionUuid'; - connection?: Maybe<EventConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type EventGroupBy = { - __typename?: 'EventGroupBy'; - address?: Maybe<Array<Maybe<EventConnectionAddress>>>; - created_at?: Maybe<Array<Maybe<EventConnectionCreated_At>>>; - date?: Maybe<Array<Maybe<EventConnectionDate>>>; - description?: Maybe<Array<Maybe<EventConnectionDescription>>>; - email?: Maybe<Array<Maybe<EventConnectionEmail>>>; - id?: Maybe<Array<Maybe<EventConnectionId>>>; - name?: Maybe<Array<Maybe<EventConnectionName>>>; - newsletter?: Maybe<Array<Maybe<EventConnectionNewsletter>>>; - position?: Maybe<Array<Maybe<EventConnectionPosition>>>; - updated_at?: Maybe<Array<Maybe<EventConnectionUpdated_At>>>; - uuid?: Maybe<Array<Maybe<EventConnectionUuid>>>; +export type EventFiltersInput = { + address?: InputMaybe<StringFilterInput>; + and?: InputMaybe<Array<InputMaybe<EventFiltersInput>>>; + createdAt?: InputMaybe<DateTimeFilterInput>; + date?: InputMaybe<DateFilterInput>; + description?: InputMaybe<StringFilterInput>; + email?: InputMaybe<StringFilterInput>; + id?: InputMaybe<IdFilterInput>; + name?: InputMaybe<StringFilterInput>; + newsletter?: InputMaybe<BooleanFilterInput>; + not?: InputMaybe<EventFiltersInput>; + or?: InputMaybe<Array<InputMaybe<EventFiltersInput>>>; + position?: InputMaybe<JsonFilterInput>; + travels?: InputMaybe<TravelFiltersInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; + users?: InputMaybe<UsersPermissionsUserFiltersInput>; + uuid?: InputMaybe<StringFilterInput>; + waitingPassengers?: InputMaybe<PassengerFiltersInput>; }; export type EventInput = { address?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; date?: InputMaybe<Scalars['Date']>; description?: InputMaybe<Scalars['String']>; - email: Scalars['String']; - name: Scalars['String']; + email?: InputMaybe<Scalars['String']>; + name?: InputMaybe<Scalars['String']>; newsletter?: InputMaybe<Scalars['Boolean']>; position?: InputMaybe<Scalars['JSON']>; travels?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - updated_by?: InputMaybe<Scalars['ID']>; users?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; uuid?: InputMaybe<Scalars['String']>; waitingPassengers?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; }; +export type EventRelationResponseCollection = { + __typename?: 'EventRelationResponseCollection'; + data: Array<EventEntity>; +}; + export type FileInfoInput = { alternativeText?: InputMaybe<Scalars['String']>; caption?: InputMaybe<Scalars['String']>; name?: InputMaybe<Scalars['String']>; }; -export type FileInput = { - alternativeText?: InputMaybe<Scalars['String']>; - caption?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; - ext?: InputMaybe<Scalars['String']>; - formats?: InputMaybe<Scalars['JSON']>; - hash: Scalars['String']; - height?: InputMaybe<Scalars['Int']>; - mime: Scalars['String']; - name: Scalars['String']; - previewUrl?: InputMaybe<Scalars['String']>; - provider: Scalars['String']; - provider_metadata?: InputMaybe<Scalars['JSON']>; - related?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - size: Scalars['Float']; - updated_by?: InputMaybe<Scalars['ID']>; - url: Scalars['String']; - width?: InputMaybe<Scalars['Int']>; +export type FloatFilterInput = { + and?: InputMaybe<Array<InputMaybe<Scalars['Float']>>>; + between?: InputMaybe<Array<InputMaybe<Scalars['Float']>>>; + contains?: InputMaybe<Scalars['Float']>; + containsi?: InputMaybe<Scalars['Float']>; + endsWith?: InputMaybe<Scalars['Float']>; + eq?: InputMaybe<Scalars['Float']>; + eqi?: InputMaybe<Scalars['Float']>; + gt?: InputMaybe<Scalars['Float']>; + gte?: InputMaybe<Scalars['Float']>; + in?: InputMaybe<Array<InputMaybe<Scalars['Float']>>>; + lt?: InputMaybe<Scalars['Float']>; + lte?: InputMaybe<Scalars['Float']>; + ne?: InputMaybe<Scalars['Float']>; + not?: InputMaybe<FloatFilterInput>; + notContains?: InputMaybe<Scalars['Float']>; + notContainsi?: InputMaybe<Scalars['Float']>; + notIn?: InputMaybe<Array<InputMaybe<Scalars['Float']>>>; + notNull?: InputMaybe<Scalars['Boolean']>; + null?: InputMaybe<Scalars['Boolean']>; + or?: InputMaybe<Array<InputMaybe<Scalars['Float']>>>; + startsWith?: InputMaybe<Scalars['Float']>; }; + +export type GenericMorph = EmailDesignerEmailTemplate | Event | I18NLocale | Page | Passenger | Setting | Travel | UploadFile | UploadFolder | UsersPermissionsPermission | UsersPermissionsRole | UsersPermissionsUser | Vehicle; export type I18NLocale = { __typename?: 'I18NLocale'; code?: Maybe<Scalars['String']>; - created_at: Scalars['DateTime']; - id: Scalars['ID']; + createdAt?: Maybe<Scalars['DateTime']>; name?: Maybe<Scalars['String']>; - updated_at: Scalars['DateTime']; + updatedAt?: Maybe<Scalars['DateTime']>; }; -export type InputId = { - id: Scalars['ID']; +export type I18NLocaleEntity = { + __typename?: 'I18NLocaleEntity'; + attributes?: Maybe<I18NLocale>; + id?: Maybe<Scalars['ID']>; }; -export type InputUuid = { - uuid: Scalars['String']; +export type I18NLocaleEntityResponse = { + __typename?: 'I18NLocaleEntityResponse'; + data?: Maybe<I18NLocaleEntity>; +}; + +export type I18NLocaleEntityResponseCollection = { + __typename?: 'I18NLocaleEntityResponseCollection'; + data: Array<I18NLocaleEntity>; + meta: ResponseCollectionMeta; +}; + +export type I18NLocaleFiltersInput = { + and?: InputMaybe<Array<InputMaybe<I18NLocaleFiltersInput>>>; + code?: InputMaybe<StringFilterInput>; + createdAt?: InputMaybe<DateTimeFilterInput>; + id?: InputMaybe<IdFilterInput>; + name?: InputMaybe<StringFilterInput>; + not?: InputMaybe<I18NLocaleFiltersInput>; + or?: InputMaybe<Array<InputMaybe<I18NLocaleFiltersInput>>>; + updatedAt?: InputMaybe<DateTimeFilterInput>; }; -export type LocaleInput = { - code?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; - name?: InputMaybe<Scalars['String']>; - updated_by?: InputMaybe<Scalars['ID']>; +export type IdFilterInput = { + and?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; + between?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; + contains?: InputMaybe<Scalars['ID']>; + containsi?: InputMaybe<Scalars['ID']>; + endsWith?: InputMaybe<Scalars['ID']>; + eq?: InputMaybe<Scalars['ID']>; + eqi?: InputMaybe<Scalars['ID']>; + gt?: InputMaybe<Scalars['ID']>; + gte?: InputMaybe<Scalars['ID']>; + in?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; + lt?: InputMaybe<Scalars['ID']>; + lte?: InputMaybe<Scalars['ID']>; + ne?: InputMaybe<Scalars['ID']>; + not?: InputMaybe<IdFilterInput>; + notContains?: InputMaybe<Scalars['ID']>; + notContainsi?: InputMaybe<Scalars['ID']>; + notIn?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; + notNull?: InputMaybe<Scalars['Boolean']>; + null?: InputMaybe<Scalars['Boolean']>; + or?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; + startsWith?: InputMaybe<Scalars['ID']>; }; -export type Morph = ComponentPassengerPassenger | EmailDesignerEmailTemplate | Event | EventAggregator | EventConnection | EventConnectionAddress | EventConnectionCreated_At | EventConnectionDate | EventConnectionDescription | EventConnectionEmail | EventConnectionId | EventConnectionName | EventConnectionNewsletter | EventConnectionPosition | EventConnectionUpdated_At | EventConnectionUuid | EventGroupBy | I18NLocale | Page | PageAggregator | PageConnection | PageConnectionContent | PageConnectionCreated_At | PageConnectionId | PageConnectionName | PageConnectionType | PageConnectionUpdated_At | PageGroupBy | Passenger | PassengerAggregator | PassengerConnection | PassengerConnectionCreated_At | PassengerConnectionEmail | PassengerConnectionEvent | PassengerConnectionId | PassengerConnectionLocation | PassengerConnectionName | PassengerConnectionTravel | PassengerConnectionUpdated_At | PassengerConnectionUser | PassengerGroupBy | Settings | Travel | TravelAggregator | TravelAggregatorAvg | TravelAggregatorMax | TravelAggregatorMin | TravelAggregatorSum | TravelConnection | TravelConnectionCreated_At | TravelConnectionDeparture | TravelConnectionDetails | TravelConnectionEvent | TravelConnectionId | TravelConnectionMeeting | TravelConnectionPhone_Number | TravelConnectionSeats | TravelConnectionUpdated_At | TravelConnectionVehicleName | TravelGroupBy | UploadFile | UploadFileAggregator | UploadFileAggregatorAvg | UploadFileAggregatorMax | UploadFileAggregatorMin | UploadFileAggregatorSum | UploadFileConnection | UploadFileConnectionAlternativeText | UploadFileConnectionCaption | UploadFileConnectionCreated_At | UploadFileConnectionExt | UploadFileConnectionFormats | UploadFileConnectionHash | UploadFileConnectionHeight | UploadFileConnectionId | UploadFileConnectionMime | UploadFileConnectionName | UploadFileConnectionPreviewUrl | UploadFileConnectionProvider | UploadFileConnectionProvider_Metadata | UploadFileConnectionSize | UploadFileConnectionUpdated_At | UploadFileConnectionUrl | UploadFileConnectionWidth | UploadFileGroupBy | UserPermissionsPasswordPayload | UsersPermissionsLoginPayload | UsersPermissionsMe | UsersPermissionsMeRole | UsersPermissionsPermission | UsersPermissionsRole | UsersPermissionsRoleAggregator | UsersPermissionsRoleConnection | UsersPermissionsRoleConnectionDescription | UsersPermissionsRoleConnectionId | UsersPermissionsRoleConnectionName | UsersPermissionsRoleConnectionType | UsersPermissionsRoleGroupBy | UsersPermissionsUser | UsersPermissionsUserAggregator | UsersPermissionsUserConnection | UsersPermissionsUserConnectionBlocked | UsersPermissionsUserConnectionConfirmed | UsersPermissionsUserConnectionCreated_At | UsersPermissionsUserConnectionEmail | UsersPermissionsUserConnectionFirstName | UsersPermissionsUserConnectionId | UsersPermissionsUserConnectionLang | UsersPermissionsUserConnectionLastName | UsersPermissionsUserConnectionOnboardingCreator | UsersPermissionsUserConnectionOnboardingUser | UsersPermissionsUserConnectionProvider | UsersPermissionsUserConnectionRole | UsersPermissionsUserConnectionUpdated_At | UsersPermissionsUserConnectionUsername | UsersPermissionsUserGroupBy | Vehicle | VehicleAggregator | VehicleAggregatorAvg | VehicleAggregatorMax | VehicleAggregatorMin | VehicleAggregatorSum | VehicleConnection | VehicleConnectionCreated_At | VehicleConnectionId | VehicleConnectionName | VehicleConnectionPhone_Number | VehicleConnectionSeats | VehicleConnectionUpdated_At | VehicleConnectionUser | VehicleGroupBy | CreateEventPayload | CreatePagePayload | CreatePassengerPayload | CreateRolePayload | CreateTravelPayload | CreateUserPayload | CreateVehiclePayload | DeleteEventPayload | DeleteFilePayload | DeletePagePayload | DeletePassengerPayload | DeleteRolePayload | DeleteSettingPayload | DeleteTravelPayload | DeleteUserPayload | DeleteVehiclePayload | UpdateEventPayload | UpdatePagePayload | UpdatePassengerPayload | UpdateRolePayload | UpdateSettingPayload | UpdateTravelPayload | UpdateUserPayload | UpdateVehiclePayload; +export type IntFilterInput = { + and?: InputMaybe<Array<InputMaybe<Scalars['Int']>>>; + between?: InputMaybe<Array<InputMaybe<Scalars['Int']>>>; + contains?: InputMaybe<Scalars['Int']>; + containsi?: InputMaybe<Scalars['Int']>; + endsWith?: InputMaybe<Scalars['Int']>; + eq?: InputMaybe<Scalars['Int']>; + eqi?: InputMaybe<Scalars['Int']>; + gt?: InputMaybe<Scalars['Int']>; + gte?: InputMaybe<Scalars['Int']>; + in?: InputMaybe<Array<InputMaybe<Scalars['Int']>>>; + lt?: InputMaybe<Scalars['Int']>; + lte?: InputMaybe<Scalars['Int']>; + ne?: InputMaybe<Scalars['Int']>; + not?: InputMaybe<IntFilterInput>; + notContains?: InputMaybe<Scalars['Int']>; + notContainsi?: InputMaybe<Scalars['Int']>; + notIn?: InputMaybe<Array<InputMaybe<Scalars['Int']>>>; + notNull?: InputMaybe<Scalars['Boolean']>; + null?: InputMaybe<Scalars['Boolean']>; + or?: InputMaybe<Array<InputMaybe<Scalars['Int']>>>; + startsWith?: InputMaybe<Scalars['Int']>; +}; + +export type JsonFilterInput = { + and?: InputMaybe<Array<InputMaybe<Scalars['JSON']>>>; + between?: InputMaybe<Array<InputMaybe<Scalars['JSON']>>>; + contains?: InputMaybe<Scalars['JSON']>; + containsi?: InputMaybe<Scalars['JSON']>; + endsWith?: InputMaybe<Scalars['JSON']>; + eq?: InputMaybe<Scalars['JSON']>; + eqi?: InputMaybe<Scalars['JSON']>; + gt?: InputMaybe<Scalars['JSON']>; + gte?: InputMaybe<Scalars['JSON']>; + in?: InputMaybe<Array<InputMaybe<Scalars['JSON']>>>; + lt?: InputMaybe<Scalars['JSON']>; + lte?: InputMaybe<Scalars['JSON']>; + ne?: InputMaybe<Scalars['JSON']>; + not?: InputMaybe<JsonFilterInput>; + notContains?: InputMaybe<Scalars['JSON']>; + notContainsi?: InputMaybe<Scalars['JSON']>; + notIn?: InputMaybe<Array<InputMaybe<Scalars['JSON']>>>; + notNull?: InputMaybe<Scalars['Boolean']>; + null?: InputMaybe<Scalars['Boolean']>; + or?: InputMaybe<Array<InputMaybe<Scalars['JSON']>>>; + startsWith?: InputMaybe<Scalars['JSON']>; +}; export type Mutation = { __typename?: 'Mutation'; - createEvent?: Maybe<CreateEventPayload>; - createPage?: Maybe<CreatePagePayload>; - createPassenger?: Maybe<CreatePassengerPayload>; + /** Change user password. Confirm with the current password. */ + changePassword?: Maybe<UsersPermissionsLoginPayload>; + createEmailDesignerEmailTemplate?: Maybe<EmailDesignerEmailTemplateEntityResponse>; + createEvent?: Maybe<EventEntityResponse>; + createPage?: Maybe<PageEntityResponse>; + createPassenger?: Maybe<PassengerEntityResponse>; + createSettingLocalization?: Maybe<SettingEntityResponse>; + createTravel?: Maybe<TravelEntityResponse>; + createUploadFile?: Maybe<UploadFileEntityResponse>; + createUploadFolder?: Maybe<UploadFolderEntityResponse>; /** Create a new role */ - createRole?: Maybe<CreateRolePayload>; - createSettingLocalization: Settings; - createTravel?: Maybe<CreateTravelPayload>; + createUsersPermissionsRole?: Maybe<UsersPermissionsCreateRolePayload>; /** Create a new user */ - createUser?: Maybe<CreateUserPayload>; - createVehicle?: Maybe<CreateVehiclePayload>; - deleteEvent?: Maybe<DeleteEventPayload>; - /** Delete one file */ - deleteFile?: Maybe<DeleteFilePayload>; - deletePage?: Maybe<DeletePagePayload>; - deletePassenger?: Maybe<DeletePassengerPayload>; + createUsersPermissionsUser: UsersPermissionsUserEntityResponse; + createVehicle?: Maybe<VehicleEntityResponse>; + deleteEmailDesignerEmailTemplate?: Maybe<EmailDesignerEmailTemplateEntityResponse>; + deleteEvent?: Maybe<EventEntityResponse>; + deletePage?: Maybe<PageEntityResponse>; + deletePassenger?: Maybe<PassengerEntityResponse>; + deleteSetting?: Maybe<SettingEntityResponse>; + deleteTravel?: Maybe<TravelEntityResponse>; + deleteUploadFile?: Maybe<UploadFileEntityResponse>; + deleteUploadFolder?: Maybe<UploadFolderEntityResponse>; /** Delete an existing role */ - deleteRole?: Maybe<DeleteRolePayload>; - deleteSetting?: Maybe<DeleteSettingPayload>; - deleteTravel?: Maybe<DeleteTravelPayload>; + deleteUsersPermissionsRole?: Maybe<UsersPermissionsDeleteRolePayload>; /** Delete an existing user */ - deleteUser?: Maybe<DeleteUserPayload>; - deleteVehicle?: Maybe<DeleteVehiclePayload>; + deleteUsersPermissionsUser: UsersPermissionsUserEntityResponse; + deleteVehicle?: Maybe<VehicleEntityResponse>; + /** Confirm an email users email address */ emailConfirmation?: Maybe<UsersPermissionsLoginPayload>; - forgotPassword?: Maybe<UserPermissionsPasswordPayload>; + /** Request a reset password token */ + forgotPassword?: Maybe<UsersPermissionsPasswordPayload>; login: UsersPermissionsLoginPayload; - multipleUpload: Array<Maybe<UploadFile>>; + multipleUpload: Array<Maybe<UploadFileEntityResponse>>; + /** Register a user */ register: UsersPermissionsLoginPayload; + removeFile?: Maybe<UploadFileEntityResponse>; + /** Reset user password. Confirm with a code (resetToken from forgotPassword) */ resetPassword?: Maybe<UsersPermissionsLoginPayload>; - updateEvent?: Maybe<UpdateEventPayload>; - updateEventByUUID?: Maybe<UpdateEventPayload>; - updateFileInfo: UploadFile; - updateMe: UpdateUserPayload; - updatePage?: Maybe<UpdatePagePayload>; - updatePassenger?: Maybe<UpdatePassengerPayload>; + updateEmailDesignerEmailTemplate?: Maybe<EmailDesignerEmailTemplateEntityResponse>; + updateEvent?: Maybe<EventEntityResponse>; + /** Update an event using its UUID */ + updateEventByUUID?: Maybe<EventEntityResponse>; + updateFileInfo: UploadFileEntityResponse; + updateMe: UsersPermissionsUserEntityResponse; + updatePage?: Maybe<PageEntityResponse>; + updatePassenger?: Maybe<PassengerEntityResponse>; + updateSetting?: Maybe<SettingEntityResponse>; + updateTravel?: Maybe<TravelEntityResponse>; + updateUploadFile?: Maybe<UploadFileEntityResponse>; + updateUploadFolder?: Maybe<UploadFolderEntityResponse>; /** Update an existing role */ - updateRole?: Maybe<UpdateRolePayload>; - updateSetting?: Maybe<UpdateSettingPayload>; - updateTravel?: Maybe<UpdateTravelPayload>; + updateUsersPermissionsRole?: Maybe<UsersPermissionsUpdateRolePayload>; /** Update an existing user */ - updateUser?: Maybe<UpdateUserPayload>; - updateVehicle?: Maybe<UpdateVehiclePayload>; - upload: UploadFile; + updateUsersPermissionsUser: UsersPermissionsUserEntityResponse; + updateVehicle?: Maybe<VehicleEntityResponse>; + upload: UploadFileEntityResponse; +}; + + +export type MutationChangePasswordArgs = { + currentPassword: Scalars['String']; + password: Scalars['String']; + passwordConfirmation: Scalars['String']; +}; + + +export type MutationCreateEmailDesignerEmailTemplateArgs = { + data: EmailDesignerEmailTemplateInput; }; export type MutationCreateEventArgs = { - input?: InputMaybe<CreateEventInput>; + data: EventInput; }; export type MutationCreatePageArgs = { - input?: InputMaybe<CreatePageInput>; + data: PageInput; }; export type MutationCreatePassengerArgs = { - input?: InputMaybe<CreatePassengerInput>; + data: PassengerInput; +}; + + +export type MutationCreateSettingLocalizationArgs = { + data?: InputMaybe<SettingInput>; + id?: InputMaybe<Scalars['ID']>; + locale?: InputMaybe<Scalars['I18NLocaleCode']>; }; -export type MutationCreateRoleArgs = { - input?: InputMaybe<CreateRoleInput>; +export type MutationCreateTravelArgs = { + createVehicle?: InputMaybe<Scalars['Boolean']>; + data: TravelInput; +}; + + +export type MutationCreateUploadFileArgs = { + data: UploadFileInput; }; -export type MutationCreateSettingLocalizationArgs = { - input: UpdateSettingInput; +export type MutationCreateUploadFolderArgs = { + data: UploadFolderInput; }; -export type MutationCreateTravelArgs = { - input?: InputMaybe<CreateTravelInput>; +export type MutationCreateUsersPermissionsRoleArgs = { + data: UsersPermissionsRoleInput; }; -export type MutationCreateUserArgs = { - input?: InputMaybe<CreateUserInput>; +export type MutationCreateUsersPermissionsUserArgs = { + data: UsersPermissionsUserInput; }; export type MutationCreateVehicleArgs = { - input?: InputMaybe<CreateVehicleInput>; + data: VehicleInput; }; -export type MutationDeleteEventArgs = { - input?: InputMaybe<DeleteEventInput>; +export type MutationDeleteEmailDesignerEmailTemplateArgs = { + id: Scalars['ID']; }; -export type MutationDeleteFileArgs = { - input?: InputMaybe<DeleteFileInput>; +export type MutationDeleteEventArgs = { + id: Scalars['ID']; }; export type MutationDeletePageArgs = { - input?: InputMaybe<DeletePageInput>; + id: Scalars['ID']; }; export type MutationDeletePassengerArgs = { - input?: InputMaybe<DeletePassengerInput>; + id: Scalars['ID']; }; -export type MutationDeleteRoleArgs = { - input?: InputMaybe<DeleteRoleInput>; +export type MutationDeleteSettingArgs = { + locale?: InputMaybe<Scalars['I18NLocaleCode']>; }; -export type MutationDeleteSettingArgs = { - locale?: InputMaybe<Scalars['String']>; +export type MutationDeleteTravelArgs = { + id: Scalars['ID']; }; -export type MutationDeleteTravelArgs = { - input?: InputMaybe<DeleteTravelInput>; +export type MutationDeleteUploadFileArgs = { + id: Scalars['ID']; }; -export type MutationDeleteUserArgs = { - input?: InputMaybe<DeleteUserInput>; +export type MutationDeleteUploadFolderArgs = { + id: Scalars['ID']; +}; + + +export type MutationDeleteUsersPermissionsRoleArgs = { + id: Scalars['ID']; +}; + + +export type MutationDeleteUsersPermissionsUserArgs = { + id: Scalars['ID']; }; export type MutationDeleteVehicleArgs = { - input?: InputMaybe<DeleteVehicleInput>; + id: Scalars['ID']; };

@@ -438,7 +581,6 @@ field?: InputMaybe<Scalars['String']>;

files: Array<InputMaybe<Scalars['Upload']>>; ref?: InputMaybe<Scalars['String']>; refId?: InputMaybe<Scalars['ID']>; - source?: InputMaybe<Scalars['String']>; };

@@ -447,6 +589,11 @@ input: UsersPermissionsRegisterInput;

}; +export type MutationRemoveFileArgs = { + id: Scalars['ID']; +}; + + export type MutationResetPasswordArgs = { code: Scalars['String']; password: Scalars['String'];

@@ -454,60 +601,86 @@ passwordConfirmation: Scalars['String'];

}; +export type MutationUpdateEmailDesignerEmailTemplateArgs = { + data: EmailDesignerEmailTemplateInput; + id: Scalars['ID']; +}; + + export type MutationUpdateEventArgs = { - input?: InputMaybe<UpdateEventInput>; + data: EventInput; + id: Scalars['ID']; }; export type MutationUpdateEventByUuidArgs = { - input?: InputMaybe<UpdateEventByUuidInput>; + data: EventInput; + uuid: Scalars['String']; }; export type MutationUpdateFileInfoArgs = { id: Scalars['ID']; - info: FileInfoInput; + info?: InputMaybe<FileInfoInput>; }; export type MutationUpdateMeArgs = { - input?: InputMaybe<EditUserInput>; + data: UsersPermissionsUserInput; }; export type MutationUpdatePageArgs = { - input?: InputMaybe<UpdatePageInput>; + data: PageInput; + id: Scalars['ID']; }; export type MutationUpdatePassengerArgs = { - input?: InputMaybe<UpdatePassengerInput>; + data: PassengerInput; + id: Scalars['ID']; +}; + + +export type MutationUpdateSettingArgs = { + data: SettingInput; + locale?: InputMaybe<Scalars['I18NLocaleCode']>; }; -export type MutationUpdateRoleArgs = { - input?: InputMaybe<UpdateRoleInput>; +export type MutationUpdateTravelArgs = { + data: TravelInput; + id: Scalars['ID']; }; -export type MutationUpdateSettingArgs = { - input?: InputMaybe<UpdateSettingInput>; - locale?: InputMaybe<Scalars['String']>; +export type MutationUpdateUploadFileArgs = { + data: UploadFileInput; + id: Scalars['ID']; }; -export type MutationUpdateTravelArgs = { - input?: InputMaybe<UpdateTravelInput>; +export type MutationUpdateUploadFolderArgs = { + data: UploadFolderInput; + id: Scalars['ID']; }; -export type MutationUpdateUserArgs = { - input?: InputMaybe<UpdateUserInput>; +export type MutationUpdateUsersPermissionsRoleArgs = { + data: UsersPermissionsRoleInput; + id: Scalars['ID']; +}; + + +export type MutationUpdateUsersPermissionsUserArgs = { + data: UsersPermissionsUserInput; + id: Scalars['ID']; }; export type MutationUpdateVehicleArgs = { - input?: InputMaybe<UpdateVehicleInput>; + data: VehicleInput; + id: Scalars['ID']; };

@@ -517,594 +690,365 @@ file: Scalars['Upload'];

info?: InputMaybe<FileInfoInput>; ref?: InputMaybe<Scalars['String']>; refId?: InputMaybe<Scalars['ID']>; - source?: InputMaybe<Scalars['String']>; }; export type Page = { __typename?: 'Page'; content?: Maybe<Scalars['String']>; - created_at: Scalars['DateTime']; - id: Scalars['ID']; + createdAt?: Maybe<Scalars['DateTime']>; name: Scalars['String']; type?: Maybe<Enum_Page_Type>; - updated_at: Scalars['DateTime']; -}; - -export type PageAggregator = { - __typename?: 'PageAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; -export type PageConnection = { - __typename?: 'PageConnection'; - aggregate?: Maybe<PageAggregator>; - groupBy?: Maybe<PageGroupBy>; - values?: Maybe<Array<Maybe<Page>>>; +export type PageEntity = { + __typename?: 'PageEntity'; + attributes?: Maybe<Page>; + id?: Maybe<Scalars['ID']>; }; -export type PageConnectionContent = { - __typename?: 'PageConnectionContent'; - connection?: Maybe<PageConnection>; - key?: Maybe<Scalars['String']>; +export type PageEntityResponse = { + __typename?: 'PageEntityResponse'; + data?: Maybe<PageEntity>; }; -export type PageConnectionCreated_At = { - __typename?: 'PageConnectionCreated_at'; - connection?: Maybe<PageConnection>; - key?: Maybe<Scalars['DateTime']>; +export type PageEntityResponseCollection = { + __typename?: 'PageEntityResponseCollection'; + data: Array<PageEntity>; + meta: ResponseCollectionMeta; }; -export type PageConnectionId = { - __typename?: 'PageConnectionId'; - connection?: Maybe<PageConnection>; - key?: Maybe<Scalars['ID']>; +export type PageFiltersInput = { + and?: InputMaybe<Array<InputMaybe<PageFiltersInput>>>; + content?: InputMaybe<StringFilterInput>; + createdAt?: InputMaybe<DateTimeFilterInput>; + id?: InputMaybe<IdFilterInput>; + name?: InputMaybe<StringFilterInput>; + not?: InputMaybe<PageFiltersInput>; + or?: InputMaybe<Array<InputMaybe<PageFiltersInput>>>; + type?: InputMaybe<StringFilterInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; }; -export type PageConnectionName = { - __typename?: 'PageConnectionName'; - connection?: Maybe<PageConnection>; - key?: Maybe<Scalars['String']>; +export type PageInput = { + content?: InputMaybe<Scalars['String']>; + name?: InputMaybe<Scalars['String']>; + type?: InputMaybe<Enum_Page_Type>; }; -export type PageConnectionType = { - __typename?: 'PageConnectionType'; - connection?: Maybe<PageConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type PageConnectionUpdated_At = { - __typename?: 'PageConnectionUpdated_at'; - connection?: Maybe<PageConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type PageGroupBy = { - __typename?: 'PageGroupBy'; - content?: Maybe<Array<Maybe<PageConnectionContent>>>; - created_at?: Maybe<Array<Maybe<PageConnectionCreated_At>>>; - id?: Maybe<Array<Maybe<PageConnectionId>>>; - name?: Maybe<Array<Maybe<PageConnectionName>>>; - type?: Maybe<Array<Maybe<PageConnectionType>>>; - updated_at?: Maybe<Array<Maybe<PageConnectionUpdated_At>>>; +export type Pagination = { + __typename?: 'Pagination'; + page: Scalars['Int']; + pageCount: Scalars['Int']; + pageSize: Scalars['Int']; + total: Scalars['Int']; }; -export type PageInput = { - content?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; - name: Scalars['String']; - type?: InputMaybe<Enum_Page_Type>; - updated_by?: InputMaybe<Scalars['ID']>; +export type PaginationArg = { + limit?: InputMaybe<Scalars['Int']>; + page?: InputMaybe<Scalars['Int']>; + pageSize?: InputMaybe<Scalars['Int']>; + start?: InputMaybe<Scalars['Int']>; }; export type Passenger = { __typename?: 'Passenger'; - created_at: Scalars['DateTime']; + createdAt?: Maybe<Scalars['DateTime']>; email?: Maybe<Scalars['String']>; - event?: Maybe<Event>; - id: Scalars['ID']; + event?: Maybe<EventEntityResponse>; location?: Maybe<Scalars['String']>; name: Scalars['String']; - travel?: Maybe<Travel>; - updated_at: Scalars['DateTime']; - user?: Maybe<UsersPermissionsUser>; + travel?: Maybe<TravelEntityResponse>; + updatedAt?: Maybe<Scalars['DateTime']>; + user?: Maybe<UsersPermissionsUserEntityResponse>; }; -export type PassengerAggregator = { - __typename?: 'PassengerAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; +export type PassengerEntity = { + __typename?: 'PassengerEntity'; + attributes?: Maybe<Passenger>; + id?: Maybe<Scalars['ID']>; }; -export type PassengerConnection = { - __typename?: 'PassengerConnection'; - aggregate?: Maybe<PassengerAggregator>; - groupBy?: Maybe<PassengerGroupBy>; - values?: Maybe<Array<Maybe<Passenger>>>; +export type PassengerEntityResponse = { + __typename?: 'PassengerEntityResponse'; + data?: Maybe<PassengerEntity>; }; -export type PassengerConnectionCreated_At = { - __typename?: 'PassengerConnectionCreated_at'; - connection?: Maybe<PassengerConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type PassengerConnectionEmail = { - __typename?: 'PassengerConnectionEmail'; - connection?: Maybe<PassengerConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type PassengerConnectionEvent = { - __typename?: 'PassengerConnectionEvent'; - connection?: Maybe<PassengerConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type PassengerConnectionId = { - __typename?: 'PassengerConnectionId'; - connection?: Maybe<PassengerConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type PassengerConnectionLocation = { - __typename?: 'PassengerConnectionLocation'; - connection?: Maybe<PassengerConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type PassengerConnectionName = { - __typename?: 'PassengerConnectionName'; - connection?: Maybe<PassengerConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type PassengerConnectionTravel = { - __typename?: 'PassengerConnectionTravel'; - connection?: Maybe<PassengerConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type PassengerConnectionUpdated_At = { - __typename?: 'PassengerConnectionUpdated_at'; - connection?: Maybe<PassengerConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type PassengerConnectionUser = { - __typename?: 'PassengerConnectionUser'; - connection?: Maybe<PassengerConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type PassengerGroupBy = { - __typename?: 'PassengerGroupBy'; - created_at?: Maybe<Array<Maybe<PassengerConnectionCreated_At>>>; - email?: Maybe<Array<Maybe<PassengerConnectionEmail>>>; - event?: Maybe<Array<Maybe<PassengerConnectionEvent>>>; - id?: Maybe<Array<Maybe<PassengerConnectionId>>>; - location?: Maybe<Array<Maybe<PassengerConnectionLocation>>>; - name?: Maybe<Array<Maybe<PassengerConnectionName>>>; - travel?: Maybe<Array<Maybe<PassengerConnectionTravel>>>; - updated_at?: Maybe<Array<Maybe<PassengerConnectionUpdated_At>>>; - user?: Maybe<Array<Maybe<PassengerConnectionUser>>>; +export type PassengerFiltersInput = { + and?: InputMaybe<Array<InputMaybe<PassengerFiltersInput>>>; + createdAt?: InputMaybe<DateTimeFilterInput>; + email?: InputMaybe<StringFilterInput>; + event?: InputMaybe<EventFiltersInput>; + id?: InputMaybe<IdFilterInput>; + location?: InputMaybe<StringFilterInput>; + name?: InputMaybe<StringFilterInput>; + not?: InputMaybe<PassengerFiltersInput>; + or?: InputMaybe<Array<InputMaybe<PassengerFiltersInput>>>; + travel?: InputMaybe<TravelFiltersInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; + user?: InputMaybe<UsersPermissionsUserFiltersInput>; }; export type PassengerInput = { - created_by?: InputMaybe<Scalars['ID']>; email?: InputMaybe<Scalars['String']>; event?: InputMaybe<Scalars['ID']>; location?: InputMaybe<Scalars['String']>; - name: Scalars['String']; + name?: InputMaybe<Scalars['String']>; travel?: InputMaybe<Scalars['ID']>; - updated_by?: InputMaybe<Scalars['ID']>; user?: InputMaybe<Scalars['ID']>; }; -export enum PublicationState { - Live = 'LIVE', - Preview = 'PREVIEW' -} +export type PassengerRelationResponseCollection = { + __typename?: 'PassengerRelationResponseCollection'; + data: Array<PassengerEntity>; +}; export type Query = { __typename?: 'Query'; - event?: Maybe<Event>; - eventByUUID?: Maybe<Event>; - events?: Maybe<Array<Maybe<Event>>>; - eventsConnection?: Maybe<EventConnection>; - files?: Maybe<Array<Maybe<UploadFile>>>; - filesConnection?: Maybe<UploadFileConnection>; + emailDesignerEmailTemplate?: Maybe<EmailDesignerEmailTemplateEntityResponse>; + emailDesignerEmailTemplates?: Maybe<EmailDesignerEmailTemplateEntityResponseCollection>; + event?: Maybe<EventEntityResponse>; + /** Retrieve an event using its UUID */ + eventByUUID?: Maybe<EventEntityResponse>; + i18NLocale?: Maybe<I18NLocaleEntityResponse>; + i18NLocales?: Maybe<I18NLocaleEntityResponseCollection>; me?: Maybe<UsersPermissionsMe>; - page?: Maybe<Page>; - pages?: Maybe<Array<Maybe<Page>>>; - pagesConnection?: Maybe<PageConnection>; - passenger?: Maybe<Passenger>; - passengers?: Maybe<Array<Maybe<Passenger>>>; - passengersConnection?: Maybe<PassengerConnection>; - role?: Maybe<UsersPermissionsRole>; - /** Retrieve all the existing roles. You can't apply filters on this query. */ - roles?: Maybe<Array<Maybe<UsersPermissionsRole>>>; - rolesConnection?: Maybe<UsersPermissionsRoleConnection>; - setting?: Maybe<Settings>; - travel?: Maybe<Travel>; - travels?: Maybe<Array<Maybe<Travel>>>; - travelsConnection?: Maybe<TravelConnection>; - user?: Maybe<UsersPermissionsUser>; - users?: Maybe<Array<Maybe<UsersPermissionsUser>>>; - usersConnection?: Maybe<UsersPermissionsUserConnection>; - vehicle?: Maybe<Vehicle>; - vehicles?: Maybe<Array<Maybe<Vehicle>>>; - vehiclesConnection?: Maybe<VehicleConnection>; + page?: Maybe<PageEntityResponse>; + pages?: Maybe<PageEntityResponseCollection>; + passenger?: Maybe<PassengerEntityResponse>; + setting?: Maybe<SettingEntityResponse>; + travel?: Maybe<TravelEntityResponse>; + uploadFile?: Maybe<UploadFileEntityResponse>; + uploadFiles?: Maybe<UploadFileEntityResponseCollection>; + uploadFolder?: Maybe<UploadFolderEntityResponse>; + uploadFolders?: Maybe<UploadFolderEntityResponseCollection>; + usersPermissionsRole?: Maybe<UsersPermissionsRoleEntityResponse>; + usersPermissionsRoles?: Maybe<UsersPermissionsRoleEntityResponseCollection>; + usersPermissionsUser?: Maybe<UsersPermissionsUserEntityResponse>; + vehicle?: Maybe<VehicleEntityResponse>; }; -export type QueryEventArgs = { - id: Scalars['ID']; - publicationState?: InputMaybe<PublicationState>; +export type QueryEmailDesignerEmailTemplateArgs = { + id?: InputMaybe<Scalars['ID']>; }; -export type QueryEventByUuidArgs = { - uuid: Scalars['String']; +export type QueryEmailDesignerEmailTemplatesArgs = { + filters?: InputMaybe<EmailDesignerEmailTemplateFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type QueryEventsArgs = { - limit?: InputMaybe<Scalars['Int']>; - publicationState?: InputMaybe<PublicationState>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QueryEventArgs = { + id?: InputMaybe<Scalars['ID']>; }; -export type QueryEventsConnectionArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QueryEventByUuidArgs = { + uuid: Scalars['String']; }; -export type QueryFilesArgs = { - limit?: InputMaybe<Scalars['Int']>; - publicationState?: InputMaybe<PublicationState>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QueryI18NLocaleArgs = { + id?: InputMaybe<Scalars['ID']>; }; -export type QueryFilesConnectionArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QueryI18NLocalesArgs = { + filters?: InputMaybe<I18NLocaleFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; export type QueryPageArgs = { - id: Scalars['ID']; - publicationState?: InputMaybe<PublicationState>; + id?: InputMaybe<Scalars['ID']>; }; export type QueryPagesArgs = { - limit?: InputMaybe<Scalars['Int']>; - publicationState?: InputMaybe<PublicationState>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; -}; - - -export type QueryPagesConnectionArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; + filters?: InputMaybe<PageFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; export type QueryPassengerArgs = { - id: Scalars['ID']; - publicationState?: InputMaybe<PublicationState>; -}; - - -export type QueryPassengersArgs = { - limit?: InputMaybe<Scalars['Int']>; - publicationState?: InputMaybe<PublicationState>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; + id?: InputMaybe<Scalars['ID']>; }; -export type QueryPassengersConnectionArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; -}; - - -export type QueryRoleArgs = { - id: Scalars['ID']; - publicationState?: InputMaybe<PublicationState>; -}; - - -export type QueryRolesArgs = { - limit?: InputMaybe<Scalars['Int']>; - publicationState?: InputMaybe<PublicationState>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QuerySettingArgs = { + locale?: InputMaybe<Scalars['I18NLocaleCode']>; }; -export type QueryRolesConnectionArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QueryTravelArgs = { + id?: InputMaybe<Scalars['ID']>; }; -export type QuerySettingArgs = { - locale?: InputMaybe<Scalars['String']>; - publicationState?: InputMaybe<PublicationState>; +export type QueryUploadFileArgs = { + id?: InputMaybe<Scalars['ID']>; }; -export type QueryTravelArgs = { - id: Scalars['ID']; - publicationState?: InputMaybe<PublicationState>; +export type QueryUploadFilesArgs = { + filters?: InputMaybe<UploadFileFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type QueryTravelsArgs = { - limit?: InputMaybe<Scalars['Int']>; - publicationState?: InputMaybe<PublicationState>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QueryUploadFolderArgs = { + id?: InputMaybe<Scalars['ID']>; }; -export type QueryTravelsConnectionArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QueryUploadFoldersArgs = { + filters?: InputMaybe<UploadFolderFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type QueryUserArgs = { - id: Scalars['ID']; - publicationState?: InputMaybe<PublicationState>; +export type QueryUsersPermissionsRoleArgs = { + id?: InputMaybe<Scalars['ID']>; }; -export type QueryUsersArgs = { - limit?: InputMaybe<Scalars['Int']>; - publicationState?: InputMaybe<PublicationState>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QueryUsersPermissionsRolesArgs = { + filters?: InputMaybe<UsersPermissionsRoleFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type QueryUsersConnectionArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type QueryUsersPermissionsUserArgs = { + id?: InputMaybe<Scalars['ID']>; }; export type QueryVehicleArgs = { - id: Scalars['ID']; - publicationState?: InputMaybe<PublicationState>; + id?: InputMaybe<Scalars['ID']>; }; - -export type QueryVehiclesArgs = { - limit?: InputMaybe<Scalars['Int']>; - publicationState?: InputMaybe<PublicationState>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type ResponseCollectionMeta = { + __typename?: 'ResponseCollectionMeta'; + pagination: Pagination; }; +export type Setting = { + __typename?: 'Setting'; + about_link?: Maybe<Scalars['String']>; + announcement?: Maybe<Scalars['String']>; + createdAt?: Maybe<Scalars['DateTime']>; + faq_link?: Maybe<Scalars['String']>; + gtm_id?: Maybe<Scalars['String']>; + locale?: Maybe<Scalars['String']>; + localizations?: Maybe<SettingRelationResponseCollection>; + updatedAt?: Maybe<Scalars['DateTime']>; +}; -export type QueryVehiclesConnectionArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type SettingEntity = { + __typename?: 'SettingEntity'; + attributes?: Maybe<Setting>; + id?: Maybe<Scalars['ID']>; }; -export type RoleInput = { - created_by?: InputMaybe<Scalars['ID']>; - description?: InputMaybe<Scalars['String']>; - name: Scalars['String']; - permissions?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - type?: InputMaybe<Scalars['String']>; - updated_by?: InputMaybe<Scalars['ID']>; - users?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; +export type SettingEntityResponse = { + __typename?: 'SettingEntityResponse'; + data?: Maybe<SettingEntity>; }; export type SettingInput = { about_link?: InputMaybe<Scalars['String']>; announcement?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; faq_link?: InputMaybe<Scalars['String']>; gtm_id?: InputMaybe<Scalars['String']>; - locale?: InputMaybe<Scalars['String']>; - localizations?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - updated_by?: InputMaybe<Scalars['ID']>; }; -export type Settings = { - __typename?: 'Settings'; - about_link?: Maybe<Scalars['String']>; - announcement?: Maybe<Scalars['String']>; - created_at: Scalars['DateTime']; - faq_link?: Maybe<Scalars['String']>; - gtm_id?: Maybe<Scalars['String']>; - id: Scalars['ID']; - locale?: Maybe<Scalars['String']>; - localizations?: Maybe<Array<Maybe<Settings>>>; - updated_at: Scalars['DateTime']; +export type SettingRelationResponseCollection = { + __typename?: 'SettingRelationResponseCollection'; + data: Array<SettingEntity>; }; - -export type SettingsLocalizationsArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; +export type StringFilterInput = { + and?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; + between?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; + contains?: InputMaybe<Scalars['String']>; + containsi?: InputMaybe<Scalars['String']>; + endsWith?: InputMaybe<Scalars['String']>; + eq?: InputMaybe<Scalars['String']>; + eqi?: InputMaybe<Scalars['String']>; + gt?: InputMaybe<Scalars['String']>; + gte?: InputMaybe<Scalars['String']>; + in?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; + lt?: InputMaybe<Scalars['String']>; + lte?: InputMaybe<Scalars['String']>; + ne?: InputMaybe<Scalars['String']>; + not?: InputMaybe<StringFilterInput>; + notContains?: InputMaybe<Scalars['String']>; + notContainsi?: InputMaybe<Scalars['String']>; + notIn?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; + notNull?: InputMaybe<Scalars['Boolean']>; + null?: InputMaybe<Scalars['Boolean']>; + or?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; + startsWith?: InputMaybe<Scalars['String']>; }; export type Travel = { __typename?: 'Travel'; - created_at: Scalars['DateTime']; + createdAt?: Maybe<Scalars['DateTime']>; departure?: Maybe<Scalars['DateTime']>; details?: Maybe<Scalars['String']>; - event?: Maybe<Event>; - id: Scalars['ID']; + event?: Maybe<EventEntityResponse>; meeting?: Maybe<Scalars['String']>; - passengers?: Maybe<Array<Maybe<Passenger>>>; + passengers?: Maybe<PassengerRelationResponseCollection>; phone_number?: Maybe<Scalars['String']>; seats?: Maybe<Scalars['Int']>; - updated_at: Scalars['DateTime']; + updatedAt?: Maybe<Scalars['DateTime']>; vehicleName?: Maybe<Scalars['String']>; }; export type TravelPassengersArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; -}; - -export type TravelAggregator = { - __typename?: 'TravelAggregator'; - avg?: Maybe<TravelAggregatorAvg>; - count?: Maybe<Scalars['Int']>; - max?: Maybe<TravelAggregatorMax>; - min?: Maybe<TravelAggregatorMin>; - sum?: Maybe<TravelAggregatorSum>; - totalCount?: Maybe<Scalars['Int']>; -}; - -export type TravelAggregatorAvg = { - __typename?: 'TravelAggregatorAvg'; - seats?: Maybe<Scalars['Float']>; -}; - -export type TravelAggregatorMax = { - __typename?: 'TravelAggregatorMax'; - seats?: Maybe<Scalars['Float']>; -}; - -export type TravelAggregatorMin = { - __typename?: 'TravelAggregatorMin'; - seats?: Maybe<Scalars['Float']>; -}; - -export type TravelAggregatorSum = { - __typename?: 'TravelAggregatorSum'; - seats?: Maybe<Scalars['Float']>; -}; - -export type TravelConnection = { - __typename?: 'TravelConnection'; - aggregate?: Maybe<TravelAggregator>; - groupBy?: Maybe<TravelGroupBy>; - values?: Maybe<Array<Maybe<Travel>>>; -}; - -export type TravelConnectionCreated_At = { - __typename?: 'TravelConnectionCreated_at'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type TravelConnectionDeparture = { - __typename?: 'TravelConnectionDeparture'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type TravelConnectionDetails = { - __typename?: 'TravelConnectionDetails'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type TravelConnectionEvent = { - __typename?: 'TravelConnectionEvent'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type TravelConnectionId = { - __typename?: 'TravelConnectionId'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type TravelConnectionMeeting = { - __typename?: 'TravelConnectionMeeting'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type TravelConnectionPhone_Number = { - __typename?: 'TravelConnectionPhone_number'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type TravelConnectionSeats = { - __typename?: 'TravelConnectionSeats'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['Int']>; + filters?: InputMaybe<PassengerFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type TravelConnectionUpdated_At = { - __typename?: 'TravelConnectionUpdated_at'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['DateTime']>; +export type TravelEntity = { + __typename?: 'TravelEntity'; + attributes?: Maybe<Travel>; + id?: Maybe<Scalars['ID']>; }; -export type TravelConnectionVehicleName = { - __typename?: 'TravelConnectionVehicleName'; - connection?: Maybe<TravelConnection>; - key?: Maybe<Scalars['String']>; +export type TravelEntityResponse = { + __typename?: 'TravelEntityResponse'; + data?: Maybe<TravelEntity>; }; -export type TravelGroupBy = { - __typename?: 'TravelGroupBy'; - created_at?: Maybe<Array<Maybe<TravelConnectionCreated_At>>>; - departure?: Maybe<Array<Maybe<TravelConnectionDeparture>>>; - details?: Maybe<Array<Maybe<TravelConnectionDetails>>>; - event?: Maybe<Array<Maybe<TravelConnectionEvent>>>; - id?: Maybe<Array<Maybe<TravelConnectionId>>>; - meeting?: Maybe<Array<Maybe<TravelConnectionMeeting>>>; - phone_number?: Maybe<Array<Maybe<TravelConnectionPhone_Number>>>; - seats?: Maybe<Array<Maybe<TravelConnectionSeats>>>; - updated_at?: Maybe<Array<Maybe<TravelConnectionUpdated_At>>>; - vehicleName?: Maybe<Array<Maybe<TravelConnectionVehicleName>>>; +export type TravelFiltersInput = { + and?: InputMaybe<Array<InputMaybe<TravelFiltersInput>>>; + createdAt?: InputMaybe<DateTimeFilterInput>; + departure?: InputMaybe<DateTimeFilterInput>; + details?: InputMaybe<StringFilterInput>; + event?: InputMaybe<EventFiltersInput>; + id?: InputMaybe<IdFilterInput>; + meeting?: InputMaybe<StringFilterInput>; + not?: InputMaybe<TravelFiltersInput>; + or?: InputMaybe<Array<InputMaybe<TravelFiltersInput>>>; + passengers?: InputMaybe<PassengerFiltersInput>; + phone_number?: InputMaybe<StringFilterInput>; + seats?: InputMaybe<IntFilterInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; + vehicleName?: InputMaybe<StringFilterInput>; }; export type TravelInput = { - createVehicle?: InputMaybe<Scalars['Boolean']>; - created_by?: InputMaybe<Scalars['ID']>; departure?: InputMaybe<Scalars['DateTime']>; details?: InputMaybe<Scalars['String']>; event?: InputMaybe<Scalars['ID']>;

@@ -1112,239 +1056,187 @@ meeting?: InputMaybe<Scalars['String']>;

passengers?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; phone_number?: InputMaybe<Scalars['String']>; seats?: InputMaybe<Scalars['Int']>; - updated_by?: InputMaybe<Scalars['ID']>; vehicleName?: InputMaybe<Scalars['String']>; }; +export type TravelRelationResponseCollection = { + __typename?: 'TravelRelationResponseCollection'; + data: Array<TravelEntity>; +}; + export type UploadFile = { __typename?: 'UploadFile'; alternativeText?: Maybe<Scalars['String']>; caption?: Maybe<Scalars['String']>; - created_at: Scalars['DateTime']; + createdAt?: Maybe<Scalars['DateTime']>; ext?: Maybe<Scalars['String']>; formats?: Maybe<Scalars['JSON']>; hash: Scalars['String']; height?: Maybe<Scalars['Int']>; - id: Scalars['ID']; mime: Scalars['String']; name: Scalars['String']; previewUrl?: Maybe<Scalars['String']>; provider: Scalars['String']; provider_metadata?: Maybe<Scalars['JSON']>; - related?: Maybe<Array<Maybe<Morph>>>; + related?: Maybe<Array<Maybe<GenericMorph>>>; size: Scalars['Float']; - updated_at: Scalars['DateTime']; + updatedAt?: Maybe<Scalars['DateTime']>; url: Scalars['String']; width?: Maybe<Scalars['Int']>; }; - -export type UploadFileRelatedArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; -}; - -export type UploadFileAggregator = { - __typename?: 'UploadFileAggregator'; - avg?: Maybe<UploadFileAggregatorAvg>; - count?: Maybe<Scalars['Int']>; - max?: Maybe<UploadFileAggregatorMax>; - min?: Maybe<UploadFileAggregatorMin>; - sum?: Maybe<UploadFileAggregatorSum>; - totalCount?: Maybe<Scalars['Int']>; -}; - -export type UploadFileAggregatorAvg = { - __typename?: 'UploadFileAggregatorAvg'; - height?: Maybe<Scalars['Float']>; - size?: Maybe<Scalars['Float']>; - width?: Maybe<Scalars['Float']>; -}; - -export type UploadFileAggregatorMax = { - __typename?: 'UploadFileAggregatorMax'; - height?: Maybe<Scalars['Float']>; - size?: Maybe<Scalars['Float']>; - width?: Maybe<Scalars['Float']>; +export type UploadFileEntity = { + __typename?: 'UploadFileEntity'; + attributes?: Maybe<UploadFile>; + id?: Maybe<Scalars['ID']>; }; -export type UploadFileAggregatorMin = { - __typename?: 'UploadFileAggregatorMin'; - height?: Maybe<Scalars['Float']>; - size?: Maybe<Scalars['Float']>; - width?: Maybe<Scalars['Float']>; +export type UploadFileEntityResponse = { + __typename?: 'UploadFileEntityResponse'; + data?: Maybe<UploadFileEntity>; }; -export type UploadFileAggregatorSum = { - __typename?: 'UploadFileAggregatorSum'; - height?: Maybe<Scalars['Float']>; - size?: Maybe<Scalars['Float']>; - width?: Maybe<Scalars['Float']>; +export type UploadFileEntityResponseCollection = { + __typename?: 'UploadFileEntityResponseCollection'; + data: Array<UploadFileEntity>; + meta: ResponseCollectionMeta; }; -export type UploadFileConnection = { - __typename?: 'UploadFileConnection'; - aggregate?: Maybe<UploadFileAggregator>; - groupBy?: Maybe<UploadFileGroupBy>; - values?: Maybe<Array<Maybe<UploadFile>>>; -}; - -export type UploadFileConnectionAlternativeText = { - __typename?: 'UploadFileConnectionAlternativeText'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type UploadFileConnectionCaption = { - __typename?: 'UploadFileConnectionCaption'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type UploadFileConnectionCreated_At = { - __typename?: 'UploadFileConnectionCreated_at'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['DateTime']>; +export type UploadFileFiltersInput = { + alternativeText?: InputMaybe<StringFilterInput>; + and?: InputMaybe<Array<InputMaybe<UploadFileFiltersInput>>>; + caption?: InputMaybe<StringFilterInput>; + createdAt?: InputMaybe<DateTimeFilterInput>; + ext?: InputMaybe<StringFilterInput>; + folder?: InputMaybe<UploadFolderFiltersInput>; + folderPath?: InputMaybe<StringFilterInput>; + formats?: InputMaybe<JsonFilterInput>; + hash?: InputMaybe<StringFilterInput>; + height?: InputMaybe<IntFilterInput>; + id?: InputMaybe<IdFilterInput>; + mime?: InputMaybe<StringFilterInput>; + name?: InputMaybe<StringFilterInput>; + not?: InputMaybe<UploadFileFiltersInput>; + or?: InputMaybe<Array<InputMaybe<UploadFileFiltersInput>>>; + previewUrl?: InputMaybe<StringFilterInput>; + provider?: InputMaybe<StringFilterInput>; + provider_metadata?: InputMaybe<JsonFilterInput>; + size?: InputMaybe<FloatFilterInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; + url?: InputMaybe<StringFilterInput>; + width?: InputMaybe<IntFilterInput>; }; -export type UploadFileConnectionExt = { - __typename?: 'UploadFileConnectionExt'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type UploadFileConnectionFormats = { - __typename?: 'UploadFileConnectionFormats'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['JSON']>; -}; - -export type UploadFileConnectionHash = { - __typename?: 'UploadFileConnectionHash'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['String']>; +export type UploadFileInput = { + alternativeText?: InputMaybe<Scalars['String']>; + caption?: InputMaybe<Scalars['String']>; + ext?: InputMaybe<Scalars['String']>; + folder?: InputMaybe<Scalars['ID']>; + folderPath?: InputMaybe<Scalars['String']>; + formats?: InputMaybe<Scalars['JSON']>; + hash?: InputMaybe<Scalars['String']>; + height?: InputMaybe<Scalars['Int']>; + mime?: InputMaybe<Scalars['String']>; + name?: InputMaybe<Scalars['String']>; + previewUrl?: InputMaybe<Scalars['String']>; + provider?: InputMaybe<Scalars['String']>; + provider_metadata?: InputMaybe<Scalars['JSON']>; + size?: InputMaybe<Scalars['Float']>; + url?: InputMaybe<Scalars['String']>; + width?: InputMaybe<Scalars['Int']>; }; -export type UploadFileConnectionHeight = { - __typename?: 'UploadFileConnectionHeight'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['Int']>; +export type UploadFileRelationResponseCollection = { + __typename?: 'UploadFileRelationResponseCollection'; + data: Array<UploadFileEntity>; }; -export type UploadFileConnectionId = { - __typename?: 'UploadFileConnectionId'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['ID']>; +export type UploadFolder = { + __typename?: 'UploadFolder'; + children?: Maybe<UploadFolderRelationResponseCollection>; + createdAt?: Maybe<Scalars['DateTime']>; + files?: Maybe<UploadFileRelationResponseCollection>; + name: Scalars['String']; + parent?: Maybe<UploadFolderEntityResponse>; + path: Scalars['String']; + pathId: Scalars['Int']; + updatedAt?: Maybe<Scalars['DateTime']>; }; -export type UploadFileConnectionMime = { - __typename?: 'UploadFileConnectionMime'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['String']>; -}; -export type UploadFileConnectionName = { - __typename?: 'UploadFileConnectionName'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['String']>; +export type UploadFolderChildrenArgs = { + filters?: InputMaybe<UploadFolderFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type UploadFileConnectionPreviewUrl = { - __typename?: 'UploadFileConnectionPreviewUrl'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['String']>; -}; -export type UploadFileConnectionProvider = { - __typename?: 'UploadFileConnectionProvider'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['String']>; +export type UploadFolderFilesArgs = { + filters?: InputMaybe<UploadFileFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type UploadFileConnectionProvider_Metadata = { - __typename?: 'UploadFileConnectionProvider_metadata'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['JSON']>; +export type UploadFolderEntity = { + __typename?: 'UploadFolderEntity'; + attributes?: Maybe<UploadFolder>; + id?: Maybe<Scalars['ID']>; }; -export type UploadFileConnectionSize = { - __typename?: 'UploadFileConnectionSize'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['Float']>; +export type UploadFolderEntityResponse = { + __typename?: 'UploadFolderEntityResponse'; + data?: Maybe<UploadFolderEntity>; }; -export type UploadFileConnectionUpdated_At = { - __typename?: 'UploadFileConnectionUpdated_at'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['DateTime']>; +export type UploadFolderEntityResponseCollection = { + __typename?: 'UploadFolderEntityResponseCollection'; + data: Array<UploadFolderEntity>; + meta: ResponseCollectionMeta; }; -export type UploadFileConnectionUrl = { - __typename?: 'UploadFileConnectionUrl'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['String']>; +export type UploadFolderFiltersInput = { + and?: InputMaybe<Array<InputMaybe<UploadFolderFiltersInput>>>; + children?: InputMaybe<UploadFolderFiltersInput>; + createdAt?: InputMaybe<DateTimeFilterInput>; + files?: InputMaybe<UploadFileFiltersInput>; + id?: InputMaybe<IdFilterInput>; + name?: InputMaybe<StringFilterInput>; + not?: InputMaybe<UploadFolderFiltersInput>; + or?: InputMaybe<Array<InputMaybe<UploadFolderFiltersInput>>>; + parent?: InputMaybe<UploadFolderFiltersInput>; + path?: InputMaybe<StringFilterInput>; + pathId?: InputMaybe<IntFilterInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; }; -export type UploadFileConnectionWidth = { - __typename?: 'UploadFileConnectionWidth'; - connection?: Maybe<UploadFileConnection>; - key?: Maybe<Scalars['Int']>; +export type UploadFolderInput = { + children?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; + files?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; + name?: InputMaybe<Scalars['String']>; + parent?: InputMaybe<Scalars['ID']>; + path?: InputMaybe<Scalars['String']>; + pathId?: InputMaybe<Scalars['Int']>; }; -export type UploadFileGroupBy = { - __typename?: 'UploadFileGroupBy'; - alternativeText?: Maybe<Array<Maybe<UploadFileConnectionAlternativeText>>>; - caption?: Maybe<Array<Maybe<UploadFileConnectionCaption>>>; - created_at?: Maybe<Array<Maybe<UploadFileConnectionCreated_At>>>; - ext?: Maybe<Array<Maybe<UploadFileConnectionExt>>>; - formats?: Maybe<Array<Maybe<UploadFileConnectionFormats>>>; - hash?: Maybe<Array<Maybe<UploadFileConnectionHash>>>; - height?: Maybe<Array<Maybe<UploadFileConnectionHeight>>>; - id?: Maybe<Array<Maybe<UploadFileConnectionId>>>; - mime?: Maybe<Array<Maybe<UploadFileConnectionMime>>>; - name?: Maybe<Array<Maybe<UploadFileConnectionName>>>; - previewUrl?: Maybe<Array<Maybe<UploadFileConnectionPreviewUrl>>>; - provider?: Maybe<Array<Maybe<UploadFileConnectionProvider>>>; - provider_metadata?: Maybe<Array<Maybe<UploadFileConnectionProvider_Metadata>>>; - size?: Maybe<Array<Maybe<UploadFileConnectionSize>>>; - updated_at?: Maybe<Array<Maybe<UploadFileConnectionUpdated_At>>>; - url?: Maybe<Array<Maybe<UploadFileConnectionUrl>>>; - width?: Maybe<Array<Maybe<UploadFileConnectionWidth>>>; +export type UploadFolderRelationResponseCollection = { + __typename?: 'UploadFolderRelationResponseCollection'; + data: Array<UploadFolderEntity>; }; -export type UserInput = { - blocked?: InputMaybe<Scalars['Boolean']>; - confirmationToken?: InputMaybe<Scalars['String']>; - confirmed?: InputMaybe<Scalars['Boolean']>; - created_by?: InputMaybe<Scalars['ID']>; - email: Scalars['String']; - events?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - firstName?: InputMaybe<Scalars['String']>; - lang?: InputMaybe<Enum_Userspermissionsuser_Lang>; - lastName?: InputMaybe<Scalars['String']>; - onboardingCreator?: InputMaybe<Scalars['Boolean']>; - onboardingUser?: InputMaybe<Scalars['Boolean']>; - passengers?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - password?: InputMaybe<Scalars['String']>; - provider?: InputMaybe<Scalars['String']>; - resetPasswordToken?: InputMaybe<Scalars['String']>; - role?: InputMaybe<Scalars['ID']>; - updated_by?: InputMaybe<Scalars['ID']>; - username: Scalars['String']; - vehicles?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; +export type UsersPermissionsCreateRolePayload = { + __typename?: 'UsersPermissionsCreateRolePayload'; + ok: Scalars['Boolean']; }; -export type UserPermissionsPasswordPayload = { - __typename?: 'UserPermissionsPasswordPayload'; +export type UsersPermissionsDeleteRolePayload = { + __typename?: 'UsersPermissionsDeleteRolePayload'; ok: Scalars['Boolean']; }; export type UsersPermissionsLoginInput = { identifier: Scalars['String']; password: Scalars['String']; - provider?: InputMaybe<Scalars['String']>; + provider?: Scalars['String']; }; export type UsersPermissionsLoginPayload = {

@@ -1357,7 +1249,7 @@ export type UsersPermissionsMe = {

__typename?: 'UsersPermissionsMe'; blocked?: Maybe<Scalars['Boolean']>; confirmed?: Maybe<Scalars['Boolean']>; - email: Scalars['String']; + email?: Maybe<Scalars['String']>; id: Scalars['ID']; profile?: Maybe<UsersPermissionsUser>; role?: Maybe<UsersPermissionsMeRole>;

@@ -1372,15 +1264,39 @@ name: Scalars['String'];

type?: Maybe<Scalars['String']>; }; +export type UsersPermissionsPasswordPayload = { + __typename?: 'UsersPermissionsPasswordPayload'; + ok: Scalars['Boolean']; +}; + export type UsersPermissionsPermission = { __typename?: 'UsersPermissionsPermission'; action: Scalars['String']; - controller: Scalars['String']; - enabled: Scalars['Boolean']; - id: Scalars['ID']; - policy?: Maybe<Scalars['String']>; - role?: Maybe<UsersPermissionsRole>; - type: Scalars['String']; + createdAt?: Maybe<Scalars['DateTime']>; + role?: Maybe<UsersPermissionsRoleEntityResponse>; + updatedAt?: Maybe<Scalars['DateTime']>; +}; + +export type UsersPermissionsPermissionEntity = { + __typename?: 'UsersPermissionsPermissionEntity'; + attributes?: Maybe<UsersPermissionsPermission>; + id?: Maybe<Scalars['ID']>; +}; + +export type UsersPermissionsPermissionFiltersInput = { + action?: InputMaybe<StringFilterInput>; + and?: InputMaybe<Array<InputMaybe<UsersPermissionsPermissionFiltersInput>>>; + createdAt?: InputMaybe<DateTimeFilterInput>; + id?: InputMaybe<IdFilterInput>; + not?: InputMaybe<UsersPermissionsPermissionFiltersInput>; + or?: InputMaybe<Array<InputMaybe<UsersPermissionsPermissionFiltersInput>>>; + role?: InputMaybe<UsersPermissionsRoleFiltersInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; +}; + +export type UsersPermissionsPermissionRelationResponseCollection = { + __typename?: 'UsersPermissionsPermissionRelationResponseCollection'; + data: Array<UsersPermissionsPermissionEntity>; }; export type UsersPermissionsRegisterInput = {

@@ -1394,613 +1310,151 @@ };

export type UsersPermissionsRole = { __typename?: 'UsersPermissionsRole'; + createdAt?: Maybe<Scalars['DateTime']>; description?: Maybe<Scalars['String']>; - id: Scalars['ID']; name: Scalars['String']; - permissions?: Maybe<Array<Maybe<UsersPermissionsPermission>>>; + permissions?: Maybe<UsersPermissionsPermissionRelationResponseCollection>; type?: Maybe<Scalars['String']>; - users?: Maybe<Array<Maybe<UsersPermissionsUser>>>; + updatedAt?: Maybe<Scalars['DateTime']>; + users?: Maybe<UsersPermissionsUserRelationResponseCollection>; }; export type UsersPermissionsRolePermissionsArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; + filters?: InputMaybe<UsersPermissionsPermissionFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; export type UsersPermissionsRoleUsersArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; + filters?: InputMaybe<UsersPermissionsUserFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type UsersPermissionsRoleAggregator = { - __typename?: 'UsersPermissionsRoleAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; -}; - -export type UsersPermissionsRoleConnection = { - __typename?: 'UsersPermissionsRoleConnection'; - aggregate?: Maybe<UsersPermissionsRoleAggregator>; - groupBy?: Maybe<UsersPermissionsRoleGroupBy>; - values?: Maybe<Array<Maybe<UsersPermissionsRole>>>; +export type UsersPermissionsRoleEntity = { + __typename?: 'UsersPermissionsRoleEntity'; + attributes?: Maybe<UsersPermissionsRole>; + id?: Maybe<Scalars['ID']>; }; -export type UsersPermissionsRoleConnectionDescription = { - __typename?: 'UsersPermissionsRoleConnectionDescription'; - connection?: Maybe<UsersPermissionsRoleConnection>; - key?: Maybe<Scalars['String']>; +export type UsersPermissionsRoleEntityResponse = { + __typename?: 'UsersPermissionsRoleEntityResponse'; + data?: Maybe<UsersPermissionsRoleEntity>; }; -export type UsersPermissionsRoleConnectionId = { - __typename?: 'UsersPermissionsRoleConnectionId'; - connection?: Maybe<UsersPermissionsRoleConnection>; - key?: Maybe<Scalars['ID']>; +export type UsersPermissionsRoleEntityResponseCollection = { + __typename?: 'UsersPermissionsRoleEntityResponseCollection'; + data: Array<UsersPermissionsRoleEntity>; + meta: ResponseCollectionMeta; }; -export type UsersPermissionsRoleConnectionName = { - __typename?: 'UsersPermissionsRoleConnectionName'; - connection?: Maybe<UsersPermissionsRoleConnection>; - key?: Maybe<Scalars['String']>; +export type UsersPermissionsRoleFiltersInput = { + and?: InputMaybe<Array<InputMaybe<UsersPermissionsRoleFiltersInput>>>; + createdAt?: InputMaybe<DateTimeFilterInput>; + description?: InputMaybe<StringFilterInput>; + id?: InputMaybe<IdFilterInput>; + name?: InputMaybe<StringFilterInput>; + not?: InputMaybe<UsersPermissionsRoleFiltersInput>; + or?: InputMaybe<Array<InputMaybe<UsersPermissionsRoleFiltersInput>>>; + permissions?: InputMaybe<UsersPermissionsPermissionFiltersInput>; + type?: InputMaybe<StringFilterInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; + users?: InputMaybe<UsersPermissionsUserFiltersInput>; }; -export type UsersPermissionsRoleConnectionType = { - __typename?: 'UsersPermissionsRoleConnectionType'; - connection?: Maybe<UsersPermissionsRoleConnection>; - key?: Maybe<Scalars['String']>; +export type UsersPermissionsRoleInput = { + description?: InputMaybe<Scalars['String']>; + name?: InputMaybe<Scalars['String']>; + permissions?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; + type?: InputMaybe<Scalars['String']>; + users?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; }; -export type UsersPermissionsRoleGroupBy = { - __typename?: 'UsersPermissionsRoleGroupBy'; - description?: Maybe<Array<Maybe<UsersPermissionsRoleConnectionDescription>>>; - id?: Maybe<Array<Maybe<UsersPermissionsRoleConnectionId>>>; - name?: Maybe<Array<Maybe<UsersPermissionsRoleConnectionName>>>; - type?: Maybe<Array<Maybe<UsersPermissionsRoleConnectionType>>>; +export type UsersPermissionsUpdateRolePayload = { + __typename?: 'UsersPermissionsUpdateRolePayload'; + ok: Scalars['Boolean']; }; export type UsersPermissionsUser = { __typename?: 'UsersPermissionsUser'; - blocked?: Maybe<Scalars['Boolean']>; confirmed?: Maybe<Scalars['Boolean']>; - created_at: Scalars['DateTime']; + createdAt?: Maybe<Scalars['DateTime']>; email: Scalars['String']; - events?: Maybe<Array<Maybe<Event>>>; + events?: Maybe<EventRelationResponseCollection>; firstName?: Maybe<Scalars['String']>; - id: Scalars['ID']; lang?: Maybe<Enum_Userspermissionsuser_Lang>; lastName?: Maybe<Scalars['String']>; onboardingCreator?: Maybe<Scalars['Boolean']>; onboardingUser?: Maybe<Scalars['Boolean']>; - passengers?: Maybe<Array<Maybe<Passenger>>>; - provider?: Maybe<Scalars['String']>; - role?: Maybe<UsersPermissionsRole>; - updated_at: Scalars['DateTime']; + role?: Maybe<UsersPermissionsRoleEntityResponse>; + updatedAt?: Maybe<Scalars['DateTime']>; username: Scalars['String']; - vehicles?: Maybe<Array<Maybe<Vehicle>>>; + vehicles?: Maybe<VehicleRelationResponseCollection>; }; export type UsersPermissionsUserEventsArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; -}; - - -export type UsersPermissionsUserPassengersArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; + filters?: InputMaybe<EventFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; export type UsersPermissionsUserVehiclesArgs = { - limit?: InputMaybe<Scalars['Int']>; - sort?: InputMaybe<Scalars['String']>; - start?: InputMaybe<Scalars['Int']>; - where?: InputMaybe<Scalars['JSON']>; -}; - -export type UsersPermissionsUserAggregator = { - __typename?: 'UsersPermissionsUserAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; -}; - -export type UsersPermissionsUserConnection = { - __typename?: 'UsersPermissionsUserConnection'; - aggregate?: Maybe<UsersPermissionsUserAggregator>; - groupBy?: Maybe<UsersPermissionsUserGroupBy>; - values?: Maybe<Array<Maybe<UsersPermissionsUser>>>; -}; - -export type UsersPermissionsUserConnectionBlocked = { - __typename?: 'UsersPermissionsUserConnectionBlocked'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['Boolean']>; -}; - -export type UsersPermissionsUserConnectionConfirmed = { - __typename?: 'UsersPermissionsUserConnectionConfirmed'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['Boolean']>; -}; - -export type UsersPermissionsUserConnectionCreated_At = { - __typename?: 'UsersPermissionsUserConnectionCreated_at'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type UsersPermissionsUserConnectionEmail = { - __typename?: 'UsersPermissionsUserConnectionEmail'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type UsersPermissionsUserConnectionFirstName = { - __typename?: 'UsersPermissionsUserConnectionFirstName'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type UsersPermissionsUserConnectionId = { - __typename?: 'UsersPermissionsUserConnectionId'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type UsersPermissionsUserConnectionLang = { - __typename?: 'UsersPermissionsUserConnectionLang'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type UsersPermissionsUserConnectionLastName = { - __typename?: 'UsersPermissionsUserConnectionLastName'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type UsersPermissionsUserConnectionOnboardingCreator = { - __typename?: 'UsersPermissionsUserConnectionOnboardingCreator'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['Boolean']>; -}; - -export type UsersPermissionsUserConnectionOnboardingUser = { - __typename?: 'UsersPermissionsUserConnectionOnboardingUser'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['Boolean']>; -}; - -export type UsersPermissionsUserConnectionProvider = { - __typename?: 'UsersPermissionsUserConnectionProvider'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type UsersPermissionsUserConnectionRole = { - __typename?: 'UsersPermissionsUserConnectionRole'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type UsersPermissionsUserConnectionUpdated_At = { - __typename?: 'UsersPermissionsUserConnectionUpdated_at'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type UsersPermissionsUserConnectionUsername = { - __typename?: 'UsersPermissionsUserConnectionUsername'; - connection?: Maybe<UsersPermissionsUserConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type UsersPermissionsUserGroupBy = { - __typename?: 'UsersPermissionsUserGroupBy'; - blocked?: Maybe<Array<Maybe<UsersPermissionsUserConnectionBlocked>>>; - confirmed?: Maybe<Array<Maybe<UsersPermissionsUserConnectionConfirmed>>>; - created_at?: Maybe<Array<Maybe<UsersPermissionsUserConnectionCreated_At>>>; - email?: Maybe<Array<Maybe<UsersPermissionsUserConnectionEmail>>>; - firstName?: Maybe<Array<Maybe<UsersPermissionsUserConnectionFirstName>>>; - id?: Maybe<Array<Maybe<UsersPermissionsUserConnectionId>>>; - lang?: Maybe<Array<Maybe<UsersPermissionsUserConnectionLang>>>; - lastName?: Maybe<Array<Maybe<UsersPermissionsUserConnectionLastName>>>; - onboardingCreator?: Maybe<Array<Maybe<UsersPermissionsUserConnectionOnboardingCreator>>>; - onboardingUser?: Maybe<Array<Maybe<UsersPermissionsUserConnectionOnboardingUser>>>; - provider?: Maybe<Array<Maybe<UsersPermissionsUserConnectionProvider>>>; - role?: Maybe<Array<Maybe<UsersPermissionsUserConnectionRole>>>; - updated_at?: Maybe<Array<Maybe<UsersPermissionsUserConnectionUpdated_At>>>; - username?: Maybe<Array<Maybe<UsersPermissionsUserConnectionUsername>>>; -}; - -export type Vehicle = { - __typename?: 'Vehicle'; - created_at: Scalars['DateTime']; - id: Scalars['ID']; - name: Scalars['String']; - phone_number?: Maybe<Scalars['String']>; - seats?: Maybe<Scalars['Int']>; - updated_at: Scalars['DateTime']; - user?: Maybe<UsersPermissionsUser>; -}; - -export type VehicleAggregator = { - __typename?: 'VehicleAggregator'; - avg?: Maybe<VehicleAggregatorAvg>; - count?: Maybe<Scalars['Int']>; - max?: Maybe<VehicleAggregatorMax>; - min?: Maybe<VehicleAggregatorMin>; - sum?: Maybe<VehicleAggregatorSum>; - totalCount?: Maybe<Scalars['Int']>; -}; - -export type VehicleAggregatorAvg = { - __typename?: 'VehicleAggregatorAvg'; - seats?: Maybe<Scalars['Float']>; -}; - -export type VehicleAggregatorMax = { - __typename?: 'VehicleAggregatorMax'; - seats?: Maybe<Scalars['Float']>; -}; - -export type VehicleAggregatorMin = { - __typename?: 'VehicleAggregatorMin'; - seats?: Maybe<Scalars['Float']>; -}; - -export type VehicleAggregatorSum = { - __typename?: 'VehicleAggregatorSum'; - seats?: Maybe<Scalars['Float']>; -}; - -export type VehicleConnection = { - __typename?: 'VehicleConnection'; - aggregate?: Maybe<VehicleAggregator>; - groupBy?: Maybe<VehicleGroupBy>; - values?: Maybe<Array<Maybe<Vehicle>>>; -}; - -export type VehicleConnectionCreated_At = { - __typename?: 'VehicleConnectionCreated_at'; - connection?: Maybe<VehicleConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type VehicleConnectionId = { - __typename?: 'VehicleConnectionId'; - connection?: Maybe<VehicleConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type VehicleConnectionName = { - __typename?: 'VehicleConnectionName'; - connection?: Maybe<VehicleConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type VehicleConnectionPhone_Number = { - __typename?: 'VehicleConnectionPhone_number'; - connection?: Maybe<VehicleConnection>; - key?: Maybe<Scalars['String']>; -}; - -export type VehicleConnectionSeats = { - __typename?: 'VehicleConnectionSeats'; - connection?: Maybe<VehicleConnection>; - key?: Maybe<Scalars['Int']>; -}; - -export type VehicleConnectionUpdated_At = { - __typename?: 'VehicleConnectionUpdated_at'; - connection?: Maybe<VehicleConnection>; - key?: Maybe<Scalars['DateTime']>; -}; - -export type VehicleConnectionUser = { - __typename?: 'VehicleConnectionUser'; - connection?: Maybe<VehicleConnection>; - key?: Maybe<Scalars['ID']>; -}; - -export type VehicleGroupBy = { - __typename?: 'VehicleGroupBy'; - created_at?: Maybe<Array<Maybe<VehicleConnectionCreated_At>>>; - id?: Maybe<Array<Maybe<VehicleConnectionId>>>; - name?: Maybe<Array<Maybe<VehicleConnectionName>>>; - phone_number?: Maybe<Array<Maybe<VehicleConnectionPhone_Number>>>; - seats?: Maybe<Array<Maybe<VehicleConnectionSeats>>>; - updated_at?: Maybe<Array<Maybe<VehicleConnectionUpdated_At>>>; - user?: Maybe<Array<Maybe<VehicleConnectionUser>>>; -}; - -export type VehicleInput = { - created_by?: InputMaybe<Scalars['ID']>; - name: Scalars['String']; - phone_number?: InputMaybe<Scalars['String']>; - seats?: InputMaybe<Scalars['Int']>; - updated_by?: InputMaybe<Scalars['ID']>; - user?: InputMaybe<Scalars['ID']>; -}; - -export type CreateEventInput = { - data?: InputMaybe<EventInput>; -}; - -export type CreateEventPayload = { - __typename?: 'createEventPayload'; - event?: Maybe<Event>; -}; - -export type CreatePageInput = { - data?: InputMaybe<PageInput>; -}; - -export type CreatePagePayload = { - __typename?: 'createPagePayload'; - page?: Maybe<Page>; -}; - -export type CreatePassengerInput = { - data?: InputMaybe<PassengerInput>; -}; - -export type CreatePassengerPayload = { - __typename?: 'createPassengerPayload'; - passenger?: Maybe<Passenger>; -}; - -export type CreateRoleInput = { - data?: InputMaybe<RoleInput>; -}; - -export type CreateRolePayload = { - __typename?: 'createRolePayload'; - role?: Maybe<UsersPermissionsRole>; -}; - -export type CreateTravelInput = { - data?: InputMaybe<TravelInput>; -}; - -export type CreateTravelPayload = { - __typename?: 'createTravelPayload'; - travel?: Maybe<Travel>; -}; - -export type CreateUserInput = { - data?: InputMaybe<UserInput>; -}; - -export type CreateUserPayload = { - __typename?: 'createUserPayload'; - user?: Maybe<UsersPermissionsUser>; -}; - -export type CreateVehicleInput = { - data?: InputMaybe<VehicleInput>; -}; - -export type CreateVehiclePayload = { - __typename?: 'createVehiclePayload'; - vehicle?: Maybe<Vehicle>; -}; - -export type DeleteEventInput = { - where?: InputMaybe<InputId>; -}; - -export type DeleteEventPayload = { - __typename?: 'deleteEventPayload'; - event?: Maybe<Event>; -}; - -export type DeleteFileInput = { - where?: InputMaybe<InputId>; -}; - -export type DeleteFilePayload = { - __typename?: 'deleteFilePayload'; - file?: Maybe<UploadFile>; -}; - -export type DeletePageInput = { - where?: InputMaybe<InputId>; -}; - -export type DeletePagePayload = { - __typename?: 'deletePagePayload'; - page?: Maybe<Page>; -}; - -export type DeletePassengerInput = { - where?: InputMaybe<InputId>; -}; - -export type DeletePassengerPayload = { - __typename?: 'deletePassengerPayload'; - passenger?: Maybe<Passenger>; -}; - -export type DeleteRoleInput = { - where?: InputMaybe<InputId>; -}; - -export type DeleteRolePayload = { - __typename?: 'deleteRolePayload'; - role?: Maybe<UsersPermissionsRole>; -}; - -export type DeleteSettingPayload = { - __typename?: 'deleteSettingPayload'; - setting?: Maybe<Settings>; -}; - -export type DeleteTravelInput = { - where?: InputMaybe<InputId>; -}; - -export type DeleteTravelPayload = { - __typename?: 'deleteTravelPayload'; - travel?: Maybe<Travel>; -}; - -export type DeleteUserInput = { - where?: InputMaybe<InputId>; -}; - -export type DeleteUserPayload = { - __typename?: 'deleteUserPayload'; - user?: Maybe<UsersPermissionsUser>; -}; - -export type DeleteVehicleInput = { - where?: InputMaybe<InputId>; -}; - -export type DeleteVehiclePayload = { - __typename?: 'deleteVehiclePayload'; - vehicle?: Maybe<Vehicle>; -}; - -export type EditComponentPassengerPassengerInput = { - email?: InputMaybe<Scalars['String']>; - id?: InputMaybe<Scalars['ID']>; - location?: InputMaybe<Scalars['String']>; - name?: InputMaybe<Scalars['String']>; - user?: InputMaybe<Scalars['ID']>; -}; - -export type EditEmailTemplateInput = { - bodyHtml?: InputMaybe<Scalars['String']>; - bodyText?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; - design?: InputMaybe<Scalars['JSON']>; - enabled?: InputMaybe<Scalars['Boolean']>; - name?: InputMaybe<Scalars['String']>; - sourceCodeToTemplateId?: InputMaybe<Scalars['Int']>; - subject?: InputMaybe<Scalars['String']>; - tags?: InputMaybe<Scalars['JSON']>; - updated_by?: InputMaybe<Scalars['ID']>; -}; - -export type EditEventInput = { - address?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; - date?: InputMaybe<Scalars['Date']>; - description?: InputMaybe<Scalars['String']>; - email?: InputMaybe<Scalars['String']>; - name?: InputMaybe<Scalars['String']>; - newsletter?: InputMaybe<Scalars['Boolean']>; - position?: InputMaybe<Scalars['JSON']>; - travels?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - updated_by?: InputMaybe<Scalars['ID']>; - users?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - uuid?: InputMaybe<Scalars['String']>; - waitingPassengers?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; -}; - -export type EditFileInput = { - alternativeText?: InputMaybe<Scalars['String']>; - caption?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; - ext?: InputMaybe<Scalars['String']>; - formats?: InputMaybe<Scalars['JSON']>; - hash?: InputMaybe<Scalars['String']>; - height?: InputMaybe<Scalars['Int']>; - mime?: InputMaybe<Scalars['String']>; - name?: InputMaybe<Scalars['String']>; - previewUrl?: InputMaybe<Scalars['String']>; - provider?: InputMaybe<Scalars['String']>; - provider_metadata?: InputMaybe<Scalars['JSON']>; - related?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - size?: InputMaybe<Scalars['Float']>; - updated_by?: InputMaybe<Scalars['ID']>; - url?: InputMaybe<Scalars['String']>; - width?: InputMaybe<Scalars['Int']>; -}; - -export type EditLocaleInput = { - code?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; - name?: InputMaybe<Scalars['String']>; - updated_by?: InputMaybe<Scalars['ID']>; -}; - -export type EditPageInput = { - content?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; - name?: InputMaybe<Scalars['String']>; - type?: InputMaybe<Enum_Page_Type>; - updated_by?: InputMaybe<Scalars['ID']>; -}; - -export type EditPassengerInput = { - created_by?: InputMaybe<Scalars['ID']>; - email?: InputMaybe<Scalars['String']>; - event?: InputMaybe<Scalars['ID']>; - location?: InputMaybe<Scalars['String']>; - name?: InputMaybe<Scalars['String']>; - travel?: InputMaybe<Scalars['ID']>; - updated_by?: InputMaybe<Scalars['ID']>; - user?: InputMaybe<Scalars['ID']>; + filters?: InputMaybe<VehicleFiltersInput>; + pagination?: InputMaybe<PaginationArg>; + sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>; }; -export type EditRoleInput = { - created_by?: InputMaybe<Scalars['ID']>; - description?: InputMaybe<Scalars['String']>; - name?: InputMaybe<Scalars['String']>; - permissions?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - type?: InputMaybe<Scalars['String']>; - updated_by?: InputMaybe<Scalars['ID']>; - users?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; +export type UsersPermissionsUserEntity = { + __typename?: 'UsersPermissionsUserEntity'; + attributes?: Maybe<UsersPermissionsUser>; + id?: Maybe<Scalars['ID']>; }; -export type EditSettingInput = { - about_link?: InputMaybe<Scalars['String']>; - announcement?: InputMaybe<Scalars['String']>; - created_by?: InputMaybe<Scalars['ID']>; - faq_link?: InputMaybe<Scalars['String']>; - gtm_id?: InputMaybe<Scalars['String']>; - locale?: InputMaybe<Scalars['String']>; - localizations?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - updated_by?: InputMaybe<Scalars['ID']>; +export type UsersPermissionsUserEntityResponse = { + __typename?: 'UsersPermissionsUserEntityResponse'; + data?: Maybe<UsersPermissionsUserEntity>; }; -export type EditTravelInput = { - created_by?: InputMaybe<Scalars['ID']>; - departure?: InputMaybe<Scalars['DateTime']>; - details?: InputMaybe<Scalars['String']>; - event?: InputMaybe<Scalars['ID']>; - meeting?: InputMaybe<Scalars['String']>; - passengers?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; - phone_number?: InputMaybe<Scalars['String']>; - seats?: InputMaybe<Scalars['Int']>; - updated_by?: InputMaybe<Scalars['ID']>; - vehicleName?: InputMaybe<Scalars['String']>; +export type UsersPermissionsUserFiltersInput = { + and?: InputMaybe<Array<InputMaybe<UsersPermissionsUserFiltersInput>>>; + blocked?: InputMaybe<BooleanFilterInput>; + confirmationToken?: InputMaybe<StringFilterInput>; + confirmed?: InputMaybe<BooleanFilterInput>; + createdAt?: InputMaybe<DateTimeFilterInput>; + email?: InputMaybe<StringFilterInput>; + events?: InputMaybe<EventFiltersInput>; + firstName?: InputMaybe<StringFilterInput>; + id?: InputMaybe<IdFilterInput>; + lang?: InputMaybe<StringFilterInput>; + lastName?: InputMaybe<StringFilterInput>; + not?: InputMaybe<UsersPermissionsUserFiltersInput>; + onboardingCreator?: InputMaybe<BooleanFilterInput>; + onboardingUser?: InputMaybe<BooleanFilterInput>; + or?: InputMaybe<Array<InputMaybe<UsersPermissionsUserFiltersInput>>>; + passengers?: InputMaybe<PassengerFiltersInput>; + password?: InputMaybe<StringFilterInput>; + provider?: InputMaybe<StringFilterInput>; + resetPasswordToken?: InputMaybe<StringFilterInput>; + role?: InputMaybe<UsersPermissionsRoleFiltersInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; + username?: InputMaybe<StringFilterInput>; + vehicles?: InputMaybe<VehicleFiltersInput>; }; -export type EditUserInput = { +export type UsersPermissionsUserInput = { blocked?: InputMaybe<Scalars['Boolean']>; confirmationToken?: InputMaybe<Scalars['String']>; confirmed?: InputMaybe<Scalars['Boolean']>; - created_by?: InputMaybe<Scalars['ID']>; email?: InputMaybe<Scalars['String']>; events?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; firstName?: InputMaybe<Scalars['String']>; lang?: InputMaybe<Enum_Userspermissionsuser_Lang>; lastName?: InputMaybe<Scalars['String']>; - old_password?: InputMaybe<Scalars['String']>; + oldPassword?: InputMaybe<Scalars['String']>; onboardingCreator?: InputMaybe<Scalars['Boolean']>; onboardingUser?: InputMaybe<Scalars['Boolean']>; passengers?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;

@@ -2008,102 +1462,59 @@ password?: InputMaybe<Scalars['String']>;

provider?: InputMaybe<Scalars['String']>; resetPasswordToken?: InputMaybe<Scalars['String']>; role?: InputMaybe<Scalars['ID']>; - updated_by?: InputMaybe<Scalars['ID']>; username?: InputMaybe<Scalars['String']>; vehicles?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>; }; -export type EditVehicleInput = { - created_by?: InputMaybe<Scalars['ID']>; - name?: InputMaybe<Scalars['String']>; - phone_number?: InputMaybe<Scalars['String']>; - seats?: InputMaybe<Scalars['Int']>; - updated_by?: InputMaybe<Scalars['ID']>; - user?: InputMaybe<Scalars['ID']>; -}; - -export type UpdateEventByUuidInput = { - data?: InputMaybe<EditEventInput>; - where?: InputMaybe<InputUuid>; +export type UsersPermissionsUserRelationResponseCollection = { + __typename?: 'UsersPermissionsUserRelationResponseCollection'; + data: Array<UsersPermissionsUserEntity>; }; -export type UpdateEventInput = { - data?: InputMaybe<EditEventInput>; - where?: InputMaybe<InputId>; +export type Vehicle = { + __typename?: 'Vehicle'; + createdAt?: Maybe<Scalars['DateTime']>; + name: Scalars['String']; + phone_number?: Maybe<Scalars['String']>; + seats?: Maybe<Scalars['Int']>; + updatedAt?: Maybe<Scalars['DateTime']>; + user?: Maybe<UsersPermissionsUserEntityResponse>; }; -export type UpdateEventPayload = { - __typename?: 'updateEventPayload'; - event?: Maybe<Event>; +export type VehicleEntity = { + __typename?: 'VehicleEntity'; + attributes?: Maybe<Vehicle>; + id?: Maybe<Scalars['ID']>; }; -export type UpdatePageInput = { - data?: InputMaybe<EditPageInput>; - where?: InputMaybe<InputId>; +export type VehicleEntityResponse = { + __typename?: 'VehicleEntityResponse'; + data?: Maybe<VehicleEntity>; }; -export type UpdatePagePayload = { - __typename?: 'updatePagePayload'; - page?: Maybe<Page>; -}; - -export type UpdatePassengerInput = { - data?: InputMaybe<EditPassengerInput>; - where?: InputMaybe<InputId>; -}; - -export type UpdatePassengerPayload = { - __typename?: 'updatePassengerPayload'; - passenger?: Maybe<Passenger>; -}; - -export type UpdateRoleInput = { - data?: InputMaybe<EditRoleInput>; - where?: InputMaybe<InputId>; -}; - -export type UpdateRolePayload = { - __typename?: 'updateRolePayload'; - role?: Maybe<UsersPermissionsRole>; -}; - -export type UpdateSettingInput = { - data?: InputMaybe<EditSettingInput>; -}; - -export type UpdateSettingPayload = { - __typename?: 'updateSettingPayload'; - setting?: Maybe<Settings>; -}; - -export type UpdateTravelInput = { - data?: InputMaybe<EditTravelInput>; - where?: InputMaybe<InputId>; -}; - -export type UpdateTravelPayload = { - __typename?: 'updateTravelPayload'; - travel?: Maybe<Travel>; -}; - -export type UpdateUserInput = { - data?: InputMaybe<EditUserInput>; - where?: InputMaybe<InputId>; -}; - -export type UpdateUserPayload = { - __typename?: 'updateUserPayload'; - user?: Maybe<UsersPermissionsUser>; +export type VehicleFiltersInput = { + and?: InputMaybe<Array<InputMaybe<VehicleFiltersInput>>>; + createdAt?: InputMaybe<DateTimeFilterInput>; + id?: InputMaybe<IdFilterInput>; + name?: InputMaybe<StringFilterInput>; + not?: InputMaybe<VehicleFiltersInput>; + or?: InputMaybe<Array<InputMaybe<VehicleFiltersInput>>>; + phone_number?: InputMaybe<StringFilterInput>; + seats?: InputMaybe<IntFilterInput>; + updatedAt?: InputMaybe<DateTimeFilterInput>; + user?: InputMaybe<UsersPermissionsUserFiltersInput>; }; -export type UpdateVehicleInput = { - data?: InputMaybe<EditVehicleInput>; - where?: InputMaybe<InputId>; +export type VehicleInput = { + name?: InputMaybe<Scalars['String']>; + phone_number?: InputMaybe<Scalars['String']>; + seats?: InputMaybe<Scalars['Int']>; + user?: InputMaybe<Scalars['ID']>; }; -export type UpdateVehiclePayload = { - __typename?: 'updateVehiclePayload'; - vehicle?: Maybe<Vehicle>; +export type VehicleRelationResponseCollection = { + __typename?: 'VehicleRelationResponseCollection'; + data: Array<VehicleEntity>; }; export const MeFieldsFragmentDoc = gql`

@@ -2115,84 +1526,121 @@ confirmed

} `; export const EventFieldsFragmentDoc = gql` - fragment EventFields on Event { + fragment EventFields on EventEntity { id - uuid - name - description - email - date - address - position - waitingPassengers { - id + attributes { + uuid name + description email - location - user { - id - firstName - lastName + date + address + position + waitingPassengers { + data { + id + attributes { + name + email + location + user { + data { + id + attributes { + firstName + lastName + } + } + } + } + } } - } - travels { - id - meeting - departure - details - vehicleName - phone_number - seats - passengers { - id - name - location - user { + travels { + data { id - firstName - lastName + attributes { + meeting + departure + details + vehicleName + phone_number + seats + passengers { + data { + id + attributes { + name + location + user { + data { + id + attributes { + firstName + lastName + } + } + } + } + } + } + } } } } } `; export const PassengerFieldsFragmentDoc = gql` - fragment PassengerFields on Passenger { + fragment PassengerFields on PassengerEntity { id - name - location - email - user { - id - firstName - lastName + attributes { + name + location + email + user { + data { + id + attributes { + firstName + lastName + } + } + } } } `; export const TravelFieldsFragmentDoc = gql` - fragment TravelFields on Travel { + fragment TravelFields on TravelEntity { id - meeting - departure - details - vehicleName - phone_number - seats - passengers { - id - name - location - user { - id - firstName - lastName + attributes { + meeting + departure + details + vehicleName + phone_number + seats + passengers { + data { + id + attributes { + name + location + user { + data { + id + attributes { + firstName + lastName + } + } + } + } + } } } } `; export const UserFieldsFragmentDoc = gql` fragment UserFields on UsersPermissionsUser { - id username email confirmed

@@ -2202,20 +1650,26 @@ lang

onboardingUser onboardingCreator events { - id - uuid - name - date - address + data { + id + attributes { + uuid + name + date + address + } + } } } `; export const VehicleFieldsFragmentDoc = gql` - fragment VehicleFields on Vehicle { + fragment VehicleFields on VehicleEntity { id - name - seats - phone_number + attributes { + name + seats + phone_number + } } `; export const RegisterDocument = gql`

@@ -2262,18 +1716,18 @@ ${MeFieldsFragmentDoc}`;

export const CreateEventDocument = gql` mutation createEvent($name: String!, $email: String!, $date: Date, $address: String, $description: String, $newsletter: Boolean) { createEvent( - input: {data: {name: $name, email: $email, date: $date, address: $address, description: $description, newsletter: $newsletter}} + data: {name: $name, email: $email, date: $date, address: $address, description: $description, newsletter: $newsletter} ) { - event { + data { ...EventFields } } } ${EventFieldsFragmentDoc}`; export const UpdateEventDocument = gql` - mutation updateEvent($uuid: String!, $eventUpdate: editEventInput) { - updateEventByUUID(input: {where: {uuid: $uuid}, data: $eventUpdate}) { - event { + mutation updateEvent($uuid: String!, $eventUpdate: EventInput!) { + updateEventByUUID(uuid: $uuid, data: $eventUpdate) { + data { ...EventFields } }

@@ -2282,23 +1736,25 @@ ${EventFieldsFragmentDoc}`;

export const EventByUuidDocument = gql` query eventByUUID($uuid: String!) { eventByUUID(uuid: $uuid) { - ...EventFields + data { + ...EventFields + } } } ${EventFieldsFragmentDoc}`; export const CreatePassengerDocument = gql` - mutation createPassenger($passenger: PassengerInput) { - createPassenger(input: {data: $passenger}) { - passenger { + mutation createPassenger($passenger: PassengerInput!) { + createPassenger(data: $passenger) { + data { ...PassengerFields } } } ${PassengerFieldsFragmentDoc}`; export const UpdatePassengerDocument = gql` - mutation updatePassenger($id: ID!, $passengerUpdate: editPassengerInput!) { - updatePassenger(input: {where: {id: $id}, data: $passengerUpdate}) { - passenger { + mutation updatePassenger($id: ID!, $passengerUpdate: PassengerInput!) { + updatePassenger(id: $id, data: $passengerUpdate) { + data { ...PassengerFields } }

@@ -2306,37 +1762,41 @@ }

${PassengerFieldsFragmentDoc}`; export const DeletePassengerDocument = gql` mutation deletePassenger($id: ID!) { - deletePassenger(input: {where: {id: $id}}) { - passenger { + deletePassenger(id: $id) { + data { id } } } `; export const SettingDocument = gql` - query setting($locale: String!) { + query setting($locale: I18NLocaleCode!) { setting(locale: $locale) { - id - gtm_id - about_link - announcement - faq_link + data { + id + attributes { + gtm_id + about_link + faq_link + announcement + } + } } } `; export const CreateTravelDocument = gql` - mutation createTravel($travel: TravelInput!) { - createTravel(input: {data: $travel}) { - travel { + mutation createTravel($travel: TravelInput!, $createVehicle: Boolean) { + createTravel(data: $travel, createVehicle: $createVehicle) { + data { ...TravelFields } } } ${TravelFieldsFragmentDoc}`; export const UpdateTravelDocument = gql` - mutation updateTravel($id: ID!, $travelUpdate: editTravelInput!) { - updateTravel(input: {where: {id: $id}, data: $travelUpdate}) { - travel { + mutation updateTravel($id: ID!, $travelUpdate: TravelInput!) { + updateTravel(id: $id, data: $travelUpdate) { + data { ...TravelFields } }

@@ -2344,8 +1804,8 @@ }

${TravelFieldsFragmentDoc}`; export const DeleteTravelDocument = gql` mutation deleteTravel($id: ID!) { - deleteTravel(input: {where: {id: $id}}) { - travel { + deleteTravel(id: $id) { + data { id } }

@@ -2363,10 +1823,13 @@ }

} ${UserFieldsFragmentDoc}`; export const UpdateMeDocument = gql` - mutation updateMe($userUpdate: editUserInput!) { - updateMe(input: $userUpdate) { - user { - ...UserFields + mutation updateMe($userUpdate: UsersPermissionsUserInput!) { + updateMe(data: $userUpdate) { + data { + id + attributes { + ...UserFields + } } } }

@@ -2378,7 +1841,9 @@ id

username profile { vehicles { - ...VehicleFields + data { + ...VehicleFields + } } } }

@@ -2386,10 +1851,12 @@ }

${VehicleFieldsFragmentDoc}`; export const DeleteVehicleDocument = gql` mutation deleteVehicle($id: ID!) { - deleteVehicle(input: {where: {id: $id}}) { - vehicle { + deleteVehicle(id: $id) { + data { id - name + attributes { + name + } } } }

@@ -2423,7 +1890,7 @@ },

eventByUUID(variables: EventByUuidQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<EventByUuidQuery> { return withWrapper((wrappedRequestHeaders) => client.request<EventByUuidQuery>(EventByUuidDocument, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'eventByUUID', 'query'); }, - createPassenger(variables?: CreatePassengerMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<CreatePassengerMutation> { + createPassenger(variables: CreatePassengerMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<CreatePassengerMutation> { return withWrapper((wrappedRequestHeaders) => client.request<CreatePassengerMutation>(CreatePassengerDocument, variables, {...requestHeaders, ...wrappedRequestHeaders}), 'createPassenger', 'mutation'); }, updatePassenger(variables: UpdatePassengerMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<UpdatePassengerMutation> {

@@ -2459,14 +1926,14 @@ }

}; } export type Sdk = ReturnType<typeof getSdk>; -export type MeFieldsFragment = { __typename?: 'UsersPermissionsMe', id: string, username: string, email: string, confirmed?: boolean | null }; +export type MeFieldsFragment = { __typename?: 'UsersPermissionsMe', id: string, username: string, email?: string | null, confirmed?: boolean | null }; export type RegisterMutationVariables = Exact<{ user: UsersPermissionsRegisterInput; }>; -export type RegisterMutation = { __typename?: 'Mutation', register: { __typename?: 'UsersPermissionsLoginPayload', jwt?: string | null, user: { __typename?: 'UsersPermissionsMe', id: string, username: string, email: string, confirmed?: boolean | null } } }; +export type RegisterMutation = { __typename?: 'Mutation', register: { __typename?: 'UsersPermissionsLoginPayload', jwt?: string | null, user: { __typename?: 'UsersPermissionsMe', id: string, username: string, email?: string | null, confirmed?: boolean | null } } }; export type LoginMutationVariables = Exact<{ identifier: Scalars['String'];

@@ -2474,14 +1941,14 @@ password: Scalars['String'];

}>; -export type LoginMutation = { __typename?: 'Mutation', login: { __typename?: 'UsersPermissionsLoginPayload', jwt?: string | null, user: { __typename?: 'UsersPermissionsMe', id: string, username: string, email: string, confirmed?: boolean | null } } }; +export type LoginMutation = { __typename?: 'Mutation', login: { __typename?: 'UsersPermissionsLoginPayload', jwt?: string | null, user: { __typename?: 'UsersPermissionsMe', id: string, username: string, email?: string | null, confirmed?: boolean | null } } }; export type ForgotPasswordMutationVariables = Exact<{ email: Scalars['String']; }>; -export type ForgotPasswordMutation = { __typename?: 'Mutation', forgotPassword?: { __typename?: 'UserPermissionsPasswordPayload', ok: boolean } | null }; +export type ForgotPasswordMutation = { __typename?: 'Mutation', forgotPassword?: { __typename?: 'UsersPermissionsPasswordPayload', ok: boolean } | null }; export type ResetPasswordMutationVariables = Exact<{ password: Scalars['String'];

@@ -2490,9 +1957,9 @@ code: Scalars['String'];

}>; -export type ResetPasswordMutation = { __typename?: 'Mutation', resetPassword?: { __typename?: 'UsersPermissionsLoginPayload', jwt?: string | null, user: { __typename?: 'UsersPermissionsMe', id: string, username: string, email: string, confirmed?: boolean | null } } | null }; +export type ResetPasswordMutation = { __typename?: 'Mutation', resetPassword?: { __typename?: 'UsersPermissionsLoginPayload', jwt?: string | null, user: { __typename?: 'UsersPermissionsMe', id: string, username: string, email?: string | null, confirmed?: boolean | null } } | null }; -export type EventFieldsFragment = { __typename?: 'Event', id: string, uuid?: string | null, name: string, description?: string | null, email: string, date?: any | null, address?: string | null, position?: any | null, waitingPassengers?: Array<{ __typename?: 'Passenger', id: string, name: string, email?: string | null, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null, travels?: Array<{ __typename?: 'Travel', id: string, meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: Array<{ __typename?: 'Passenger', id: string, name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null } | null> | null }; +export type EventFieldsFragment = { __typename?: 'EventEntity', id?: string | null, attributes?: { __typename?: 'Event', uuid?: string | null, name: string, description?: string | null, email: string, date?: any | null, address?: string | null, position?: any | null, waitingPassengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, email?: string | null, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null, travels?: { __typename?: 'TravelRelationResponseCollection', data: Array<{ __typename?: 'TravelEntity', id?: string | null, attributes?: { __typename?: 'Travel', meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null } | null }> } | null } | null }; export type CreateEventMutationVariables = Exact<{ name: Scalars['String'];

@@ -2504,102 +1971,103 @@ newsletter?: InputMaybe<Scalars['Boolean']>;

}>; -export type CreateEventMutation = { __typename?: 'Mutation', createEvent?: { __typename?: 'createEventPayload', event?: { __typename?: 'Event', id: string, uuid?: string | null, name: string, description?: string | null, email: string, date?: any | null, address?: string | null, position?: any | null, waitingPassengers?: Array<{ __typename?: 'Passenger', id: string, name: string, email?: string | null, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null, travels?: Array<{ __typename?: 'Travel', id: string, meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: Array<{ __typename?: 'Passenger', id: string, name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null } | null> | null } | null } | null }; +export type CreateEventMutation = { __typename?: 'Mutation', createEvent?: { __typename?: 'EventEntityResponse', data?: { __typename?: 'EventEntity', id?: string | null, attributes?: { __typename?: 'Event', uuid?: string | null, name: string, description?: string | null, email: string, date?: any | null, address?: string | null, position?: any | null, waitingPassengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, email?: string | null, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null, travels?: { __typename?: 'TravelRelationResponseCollection', data: Array<{ __typename?: 'TravelEntity', id?: string | null, attributes?: { __typename?: 'Travel', meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null } | null }> } | null } | null } | null } | null }; export type UpdateEventMutationVariables = Exact<{ uuid: Scalars['String']; - eventUpdate?: InputMaybe<EditEventInput>; + eventUpdate: EventInput; }>; -export type UpdateEventMutation = { __typename?: 'Mutation', updateEventByUUID?: { __typename?: 'updateEventPayload', event?: { __typename?: 'Event', id: string, uuid?: string | null, name: string, description?: string | null, email: string, date?: any | null, address?: string | null, position?: any | null, waitingPassengers?: Array<{ __typename?: 'Passenger', id: string, name: string, email?: string | null, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null, travels?: Array<{ __typename?: 'Travel', id: string, meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: Array<{ __typename?: 'Passenger', id: string, name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null } | null> | null } | null } | null }; +export type UpdateEventMutation = { __typename?: 'Mutation', updateEventByUUID?: { __typename?: 'EventEntityResponse', data?: { __typename?: 'EventEntity', id?: string | null, attributes?: { __typename?: 'Event', uuid?: string | null, name: string, description?: string | null, email: string, date?: any | null, address?: string | null, position?: any | null, waitingPassengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, email?: string | null, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null, travels?: { __typename?: 'TravelRelationResponseCollection', data: Array<{ __typename?: 'TravelEntity', id?: string | null, attributes?: { __typename?: 'Travel', meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null } | null }> } | null } | null } | null } | null }; export type EventByUuidQueryVariables = Exact<{ uuid: Scalars['String']; }>; -export type EventByUuidQuery = { __typename?: 'Query', eventByUUID?: { __typename?: 'Event', id: string, uuid?: string | null, name: string, description?: string | null, email: string, date?: any | null, address?: string | null, position?: any | null, waitingPassengers?: Array<{ __typename?: 'Passenger', id: string, name: string, email?: string | null, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null, travels?: Array<{ __typename?: 'Travel', id: string, meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: Array<{ __typename?: 'Passenger', id: string, name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null } | null> | null } | null }; +export type EventByUuidQuery = { __typename?: 'Query', eventByUUID?: { __typename?: 'EventEntityResponse', data?: { __typename?: 'EventEntity', id?: string | null, attributes?: { __typename?: 'Event', uuid?: string | null, name: string, description?: string | null, email: string, date?: any | null, address?: string | null, position?: any | null, waitingPassengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, email?: string | null, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null, travels?: { __typename?: 'TravelRelationResponseCollection', data: Array<{ __typename?: 'TravelEntity', id?: string | null, attributes?: { __typename?: 'Travel', meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null } | null }> } | null } | null } | null } | null }; -export type PassengerFieldsFragment = { __typename?: 'Passenger', id: string, name: string, location?: string | null, email?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null }; +export type PassengerFieldsFragment = { __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, email?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }; export type CreatePassengerMutationVariables = Exact<{ - passenger?: InputMaybe<PassengerInput>; + passenger: PassengerInput; }>; -export type CreatePassengerMutation = { __typename?: 'Mutation', createPassenger?: { __typename?: 'createPassengerPayload', passenger?: { __typename?: 'Passenger', id: string, name: string, location?: string | null, email?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null } | null }; +export type CreatePassengerMutation = { __typename?: 'Mutation', createPassenger?: { __typename?: 'PassengerEntityResponse', data?: { __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, email?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null } | null } | null }; export type UpdatePassengerMutationVariables = Exact<{ id: Scalars['ID']; - passengerUpdate: EditPassengerInput; + passengerUpdate: PassengerInput; }>; -export type UpdatePassengerMutation = { __typename?: 'Mutation', updatePassenger?: { __typename?: 'updatePassengerPayload', passenger?: { __typename?: 'Passenger', id: string, name: string, location?: string | null, email?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null } | null }; +export type UpdatePassengerMutation = { __typename?: 'Mutation', updatePassenger?: { __typename?: 'PassengerEntityResponse', data?: { __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, email?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null } | null } | null }; export type DeletePassengerMutationVariables = Exact<{ id: Scalars['ID']; }>; -export type DeletePassengerMutation = { __typename?: 'Mutation', deletePassenger?: { __typename?: 'deletePassengerPayload', passenger?: { __typename?: 'Passenger', id: string } | null } | null }; +export type DeletePassengerMutation = { __typename?: 'Mutation', deletePassenger?: { __typename?: 'PassengerEntityResponse', data?: { __typename?: 'PassengerEntity', id?: string | null } | null } | null }; export type SettingQueryVariables = Exact<{ - locale: Scalars['String']; + locale: Scalars['I18NLocaleCode']; }>; -export type SettingQuery = { __typename?: 'Query', setting?: { __typename?: 'Settings', id: string, gtm_id?: string | null, about_link?: string | null, announcement?: string | null, faq_link?: string | null } | null }; +export type SettingQuery = { __typename?: 'Query', setting?: { __typename?: 'SettingEntityResponse', data?: { __typename?: 'SettingEntity', id?: string | null, attributes?: { __typename?: 'Setting', gtm_id?: string | null, about_link?: string | null, faq_link?: string | null, announcement?: string | null } | null } | null } | null }; -export type TravelFieldsFragment = { __typename?: 'Travel', id: string, meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: Array<{ __typename?: 'Passenger', id: string, name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null }; +export type TravelFieldsFragment = { __typename?: 'TravelEntity', id?: string | null, attributes?: { __typename?: 'Travel', meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null } | null }; export type CreateTravelMutationVariables = Exact<{ travel: TravelInput; + createVehicle?: InputMaybe<Scalars['Boolean']>; }>; -export type CreateTravelMutation = { __typename?: 'Mutation', createTravel?: { __typename?: 'createTravelPayload', travel?: { __typename?: 'Travel', id: string, meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: Array<{ __typename?: 'Passenger', id: string, name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null } | null } | null }; +export type CreateTravelMutation = { __typename?: 'Mutation', createTravel?: { __typename?: 'TravelEntityResponse', data?: { __typename?: 'TravelEntity', id?: string | null, attributes?: { __typename?: 'Travel', meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null } | null } | null } | null }; export type UpdateTravelMutationVariables = Exact<{ id: Scalars['ID']; - travelUpdate: EditTravelInput; + travelUpdate: TravelInput; }>; -export type UpdateTravelMutation = { __typename?: 'Mutation', updateTravel?: { __typename?: 'updateTravelPayload', travel?: { __typename?: 'Travel', id: string, meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: Array<{ __typename?: 'Passenger', id: string, name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUser', id: string, firstName?: string | null, lastName?: string | null } | null } | null> | null } | null } | null }; +export type UpdateTravelMutation = { __typename?: 'Mutation', updateTravel?: { __typename?: 'TravelEntityResponse', data?: { __typename?: 'TravelEntity', id?: string | null, attributes?: { __typename?: 'Travel', meeting?: string | null, departure?: any | null, details?: string | null, vehicleName?: string | null, phone_number?: string | null, seats?: number | null, passengers?: { __typename?: 'PassengerRelationResponseCollection', data: Array<{ __typename?: 'PassengerEntity', id?: string | null, attributes?: { __typename?: 'Passenger', name: string, location?: string | null, user?: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', firstName?: string | null, lastName?: string | null } | null } | null } | null } | null }> } | null } | null } | null } | null }; export type DeleteTravelMutationVariables = Exact<{ id: Scalars['ID']; }>; -export type DeleteTravelMutation = { __typename?: 'Mutation', deleteTravel?: { __typename?: 'deleteTravelPayload', travel?: { __typename?: 'Travel', id: string } | null } | null }; +export type DeleteTravelMutation = { __typename?: 'Mutation', deleteTravel?: { __typename?: 'TravelEntityResponse', data?: { __typename?: 'TravelEntity', id?: string | null } | null } | null }; -export type UserFieldsFragment = { __typename?: 'UsersPermissionsUser', id: string, username: string, email: string, confirmed?: boolean | null, lastName?: string | null, firstName?: string | null, lang?: Enum_Userspermissionsuser_Lang | null, onboardingUser?: boolean | null, onboardingCreator?: boolean | null, events?: Array<{ __typename?: 'Event', id: string, uuid?: string | null, name: string, date?: any | null, address?: string | null } | null> | null }; +export type UserFieldsFragment = { __typename?: 'UsersPermissionsUser', username: string, email: string, confirmed?: boolean | null, lastName?: string | null, firstName?: string | null, lang?: Enum_Userspermissionsuser_Lang | null, onboardingUser?: boolean | null, onboardingCreator?: boolean | null, events?: { __typename?: 'EventRelationResponseCollection', data: Array<{ __typename?: 'EventEntity', id?: string | null, attributes?: { __typename?: 'Event', uuid?: string | null, name: string, date?: any | null, address?: string | null } | null }> } | null }; export type ProfileQueryVariables = Exact<{ [key: string]: never; }>; -export type ProfileQuery = { __typename?: 'Query', me?: { __typename?: 'UsersPermissionsMe', id: string, username: string, profile?: { __typename?: 'UsersPermissionsUser', id: string, username: string, email: string, confirmed?: boolean | null, lastName?: string | null, firstName?: string | null, lang?: Enum_Userspermissionsuser_Lang | null, onboardingUser?: boolean | null, onboardingCreator?: boolean | null, events?: Array<{ __typename?: 'Event', id: string, uuid?: string | null, name: string, date?: any | null, address?: string | null } | null> | null } | null } | null }; +export type ProfileQuery = { __typename?: 'Query', me?: { __typename?: 'UsersPermissionsMe', id: string, username: string, profile?: { __typename?: 'UsersPermissionsUser', username: string, email: string, confirmed?: boolean | null, lastName?: string | null, firstName?: string | null, lang?: Enum_Userspermissionsuser_Lang | null, onboardingUser?: boolean | null, onboardingCreator?: boolean | null, events?: { __typename?: 'EventRelationResponseCollection', data: Array<{ __typename?: 'EventEntity', id?: string | null, attributes?: { __typename?: 'Event', uuid?: string | null, name: string, date?: any | null, address?: string | null } | null }> } | null } | null } | null }; export type UpdateMeMutationVariables = Exact<{ - userUpdate: EditUserInput; + userUpdate: UsersPermissionsUserInput; }>; -export type UpdateMeMutation = { __typename?: 'Mutation', updateMe: { __typename?: 'updateUserPayload', user?: { __typename?: 'UsersPermissionsUser', id: string, username: string, email: string, confirmed?: boolean | null, lastName?: string | null, firstName?: string | null, lang?: Enum_Userspermissionsuser_Lang | null, onboardingUser?: boolean | null, onboardingCreator?: boolean | null, events?: Array<{ __typename?: 'Event', id: string, uuid?: string | null, name: string, date?: any | null, address?: string | null } | null> | null } | null } }; +export type UpdateMeMutation = { __typename?: 'Mutation', updateMe: { __typename?: 'UsersPermissionsUserEntityResponse', data?: { __typename?: 'UsersPermissionsUserEntity', id?: string | null, attributes?: { __typename?: 'UsersPermissionsUser', username: string, email: string, confirmed?: boolean | null, lastName?: string | null, firstName?: string | null, lang?: Enum_Userspermissionsuser_Lang | null, onboardingUser?: boolean | null, onboardingCreator?: boolean | null, events?: { __typename?: 'EventRelationResponseCollection', data: Array<{ __typename?: 'EventEntity', id?: string | null, attributes?: { __typename?: 'Event', uuid?: string | null, name: string, date?: any | null, address?: string | null } | null }> } | null } | null } | null } }; -export type VehicleFieldsFragment = { __typename?: 'Vehicle', id: string, name: string, seats?: number | null, phone_number?: string | null }; +export type VehicleFieldsFragment = { __typename?: 'VehicleEntity', id?: string | null, attributes?: { __typename?: 'Vehicle', name: string, seats?: number | null, phone_number?: string | null } | null }; export type FindUserVehiclesQueryVariables = Exact<{ [key: string]: never; }>; -export type FindUserVehiclesQuery = { __typename?: 'Query', me?: { __typename?: 'UsersPermissionsMe', id: string, username: string, profile?: { __typename?: 'UsersPermissionsUser', vehicles?: Array<{ __typename?: 'Vehicle', id: string, name: string, seats?: number | null, phone_number?: string | null } | null> | null } | null } | null }; +export type FindUserVehiclesQuery = { __typename?: 'Query', me?: { __typename?: 'UsersPermissionsMe', id: string, username: string, profile?: { __typename?: 'UsersPermissionsUser', vehicles?: { __typename?: 'VehicleRelationResponseCollection', data: Array<{ __typename?: 'VehicleEntity', id?: string | null, attributes?: { __typename?: 'Vehicle', name: string, seats?: number | null, phone_number?: string | null } | null }> } | null } | null } | null }; export type DeleteVehicleMutationVariables = Exact<{ id: Scalars['ID']; }>; -export type DeleteVehicleMutation = { __typename?: 'Mutation', deleteVehicle?: { __typename?: 'deleteVehiclePayload', vehicle?: { __typename?: 'Vehicle', id: string, name: string } | null } | null }; +export type DeleteVehicleMutation = { __typename?: 'Mutation', deleteVehicle?: { __typename?: 'VehicleEntityResponse', data?: { __typename?: 'VehicleEntity', id?: string | null, attributes?: { __typename?: 'Vehicle', name: string } | null } | null } | null };
M e2e/jest.config.jse2e/jest.config.js

@@ -3,4 +3,5 @@ module.exports = {

preset: "ts-jest", testEnvironment: "node", globalSetup: "./lib/setup-tests.ts", + testSequencer: "./testSequencer.js", };
M e2e/lib/strapi-utils.tse2e/lib/strapi-utils.ts

@@ -5,7 +5,7 @@ import { wait } from "./wait";

export const restartStrapi = async () => { await fs.promises.writeFile("../backend/restart.test", "Restart Strapi"); - await wait(2500); + await wait(4000); }; export const getJwtToken = async () => {
A e2e/testSequencer.js

@@ -0,0 +1,9 @@

+const Sequencer = require("@jest/test-sequencer").default; + +class CustomSequencer extends Sequencer { + sort(tests) { + return tests.sort((testA, testB) => testA.path.localeCompare(testB.path)); + } +} + +module.exports = CustomSequencer;
M e2e/tests/1.register.test.tse2e/tests/1.register.test.ts

@@ -7,6 +7,7 @@ email: `test+${userRandomId}@test.com`,

username: `testregister-${userRandomId}`, firstName: `firstname-${userRandomId}`, lastName: `lastname-${userRandomId}`, + lang: "FR", password: "TestPassword34", }; const request = sdk.register({

@@ -18,6 +19,7 @@ register: expect.objectContaining({

jwt: expect.stringMatching(/(^[\w-]*\.[\w-]*\.[\w-]*$)/), user: expect.objectContaining({ id: expect.stringMatching(/\d/), + email: `test+${userRandomId}@test.com`, }), }), });
M e2e/tests/2.login.test.tse2e/tests/2.login.test.ts

@@ -27,7 +27,7 @@ await expect(request).rejects.toMatchObject({

response: { errors: expect.arrayContaining([ expect.objectContaining({ - message: "Bad Request", + message: "Invalid identifier or password", }), ]), },
M e2e/tests/3.event.test.tse2e/tests/3.event.test.ts

@@ -1,9 +1,8 @@

import { EVENT, EVENT_ID, EVENT_UUID } from "../constants"; -import { EventInput } from "../graphql"; import { sdk } from "../lib/gqlSdk"; test("createEvent returns created event with minimal parameters", async () => { - const event: EventInput = { + const event = { email: "test+event@octree.ch", name: "Test event", };

@@ -11,17 +10,19 @@ const request = sdk.createEvent(event);

await expect(request).resolves.toMatchObject({ createEvent: { - event: { + data: { id: expect.stringMatching(/\d/), - waitingPassengers: [], - ...event, + attributes: { + waitingPassengers: { data: [] }, + ...event, + }, }, }, }); }); test("createEvent returns created event with all parameters", async () => { - const event: EventInput = { + const event = { email: "test+event@octree.ch", name: "Test event", address: "Test address",

@@ -32,10 +33,12 @@ const request = sdk.createEvent(event);

await expect(request).resolves.toMatchObject({ createEvent: { - event: { + data: { id: expect.stringMatching(/\d/), - waitingPassengers: [], - ...event, + attributes: { + waitingPassengers: { data: [] }, + ...event, + }, }, }, });

@@ -52,16 +55,18 @@ });

await expect(request).resolves.toMatchObject({ updateEventByUUID: { - event: { + data: { id: EVENT_ID, - description: EVENT.description, - name: updatedName, + attributes: { + description: EVENT.description, + name: updatedName, + }, }, }, }); }); -test("updateEvent returns no event if UUID doesn´t exist", async () => { +test("updateEvent throws error if UUID doesn´t exist", async () => { const request = sdk.updateEvent({ uuid: "uuid-that-not-exists", eventUpdate: {

@@ -69,11 +74,7 @@ name: "random name",

}, }); - await expect(request).resolves.toMatchObject({ - updateEventByUUID: { - event: null, - }, - }); + await expect(request).rejects.toThrow("No matching event"); }); test("eventByUUID returns event corresponding to UUID", async () => {

@@ -83,7 +84,9 @@ });

await expect(request).resolves.toMatchObject({ eventByUUID: { - id: EVENT_ID, + data: { + id: EVENT_ID, + }, }, }); });

@@ -93,7 +96,5 @@ const request = sdk.eventByUUID({

uuid: "uuid-that-not-exists", }); - await expect(request).rejects.toThrow( - "Cannot return null for non-nullable field Event.id" - ); + await expect(request).rejects.toThrow("No matching event"); });
M e2e/tests/4.passenger.test.tse2e/tests/4.passenger.test.ts

@@ -1,10 +1,10 @@

import { EVENT_ID, EVENT_UUID, TRAVEL_ID, USER, USER_ID } from "../constants"; -import { EditPassengerInput, PassengerInput } from "../graphql"; +import { PassengerInput } from "../graphql"; import { sdk } from "../lib/gqlSdk"; test("createPassenger add a new passenger to event's waiting list", async () => { const passenger: PassengerInput = { - name: "Oki Doki", + name: "Test waiting list passenger", email: "okidoki@octree.ch", location: "Church place", };

@@ -14,7 +14,10 @@ });

await expect(createPassengerRequest).resolves.toMatchObject({ createPassenger: { - passenger, + data: { + id: expect.stringMatching(/\d/), + attributes: passenger, + }, }, });

@@ -23,13 +26,19 @@ uuid: EVENT_UUID,

}); await expect(getEventRequest).resolves.toMatchObject({ eventByUUID: { - waitingPassengers: [ - { - ...passenger, - user: null, - id: "1", + data: { + id: expect.stringMatching(/\d/), + attributes: { + waitingPassengers: { + data: [ + { + id: expect.stringMatching(/\d/), + attributes: { ...passenger }, + }, + ], + }, }, - ], + }, }, }); });

@@ -47,12 +56,18 @@ });

await expect(createPassengerRequest).resolves.toMatchObject({ createPassenger: { - passenger: { - ...passenger, - user: { - id: USER.id, - firstName: USER.firstName, - lastName: USER.lastName, + data: { + attributes: { + ...passenger, + user: { + data: { + id: USER_ID, + attributes: { + firstName: expect.any(String), + lastName: USER.lastName, + }, + }, + }, }, }, },

@@ -63,23 +78,38 @@ uuid: EVENT_UUID,

}); await expect(getEventRequest).resolves.toMatchObject({ eventByUUID: { - waitingPassengers: expect.arrayContaining([ - expect.objectContaining({ - ...passenger, - user: { - id: USER.id, - firstName: USER.firstName, - lastName: USER.lastName, + data: { + id: expect.stringMatching(/\d/), + attributes: { + waitingPassengers: { + data: expect.arrayContaining([ + expect.any(Object), + { + id: expect.stringMatching(/./), + attributes: { + ...passenger, + user: { + data: { + id: USER_ID, + attributes: { + firstName: expect.any(String), + lastName: USER.lastName, + }, + }, + }, + }, + }, + ]), }, - }), - ]), + }, + }, }, }); }); test("createPassenger add a new passenger to travel's passengers list", async () => { const passenger: PassengerInput = { - name: "Oki Doki", + name: "Test travel list passenger", email: "okidoki@octree.ch", location: "Church place", };

@@ -89,7 +119,10 @@ });

await expect(createPassengerRequest).resolves.toMatchObject({ createPassenger: { - passenger, + data: { + id: expect.stringMatching(/\d/), + attributes: passenger, + }, }, });

@@ -98,24 +131,39 @@ uuid: EVENT_UUID,

}); await expect(getEventRequest).resolves.toMatchObject({ eventByUUID: { - travels: [ - { - id: TRAVEL_ID, - passengers: [ - { - name: passenger.name, - location: passenger.location, - user: null, - }, - ], + data: { + id: expect.stringMatching(/\d/), + attributes: { + travels: { + data: [ + { + attributes: { + passengers: { + data: [ + { + id: expect.any(String), + attributes: { + name: passenger.name, + location: passenger.location, + user: { + data: null, + }, + }, + }, + ], + }, + }, + }, + ], + }, }, - ], + }, }, }); }); test("updatePassenger returns updated passenger", async () => { - const passengerUpdate: EditPassengerInput = { + const passengerUpdate: PassengerInput = { name: "Updated name", }; const request = sdk.updatePassenger({

@@ -125,23 +173,26 @@ });

await expect(request).resolves.toMatchObject({ updatePassenger: { - passenger: expect.objectContaining({ - name: passengerUpdate.name, - email: "okidoki@octree.ch", - }), + data: { + id: "1", + attributes: { + name: passengerUpdate.name, + email: "okidoki@octree.ch", + }, + }, }, }); }); test("deletePassenger returns ID of deleted passenger", async () => { const request = sdk.deletePassenger({ - id: "1", + id: "2", }); await expect(request).resolves.toMatchObject({ deletePassenger: { - passenger: { - id: "1", + data: { + id: "2", }, }, });
M e2e/tests/5.setting.test.tse2e/tests/5.setting.test.ts

@@ -6,8 +6,10 @@ const request = sdk.setting({ locale: "fr-CH" });

await expect(request).resolves.toMatchObject({ setting: { - ...SETTING_FR, - id: expect.stringMatching(/\d/), + data: { + id: expect.stringMatching(/\d/), + attributes: SETTING_FR, + }, }, }); });

@@ -17,8 +19,10 @@ const request = sdk.setting({ locale: "en" });

await expect(request).resolves.toMatchObject({ setting: { - ...SETTING_EN, - id: expect.stringMatching(/\d/), + data: { + id: expect.stringMatching(/\d/), + attributes: SETTING_EN, + }, }, }); });
M e2e/tests/6.travel.test.tse2e/tests/6.travel.test.ts

@@ -1,6 +1,7 @@

import { EVENT_ID, TRAVEL, TRAVEL_ID } from "../constants"; -import { EditTravelInput, TravelInput } from "../graphql"; +import { TravelInput } from "../graphql"; import { sdk } from "../lib/gqlSdk"; +import { getJwtToken } from "../lib/strapi-utils"; test("createTravel returns created travel", async () => { const travel: TravelInput = {

@@ -13,15 +14,16 @@ const request = sdk.createTravel({ travel: { ...travel, event: EVENT_ID } });

await expect(request).resolves.toMatchObject({ createTravel: { - travel: { - ...travel, + data: { + id: expect.any(String), + attributes: travel, }, }, }); }); test("updateTravel returns updated travel", async () => { - const travelUpdate: EditTravelInput = { + const travelUpdate = { vehicleName: "Updated travel car name", seats: 12, };

@@ -29,9 +31,12 @@ const request = sdk.updateTravel({ id: "1", travelUpdate });

await expect(request).resolves.toMatchObject({ updateTravel: { - travel: { - ...travelUpdate, - meeting: TRAVEL.meeting, + data: { + id: expect.any(String), + attributes: { + ...travelUpdate, + meeting: TRAVEL.meeting, + }, }, }, });

@@ -42,9 +47,36 @@ const request = sdk.deleteTravel({ id: TRAVEL_ID });

await expect(request).resolves.toMatchObject({ deleteTravel: { - travel: { + data: { id: TRAVEL_ID, }, }, }); }); + +test("createTravel creates a vehicle with 'createVehicle' param and logged user", async () => { + const jwt = await getJwtToken(); + + const travel = { + vehicleName: "My travel's car", + seats: 2, + phone_number: "12", + }; + const request = sdk.createTravel( + { + createVehicle: true, + travel, + }, + { + authorization: `Bearer ${jwt}`, + } + ); + + await expect(request).resolves.toMatchObject({ + createTravel: { + data: { + attributes: travel, + }, + }, + }); +});
M e2e/tests/7.user.test.tse2e/tests/7.user.test.ts

@@ -1,4 +1,4 @@

-import { USER, USER_ID } from "../constants"; +import { USER, USER_ID, USER_PASSWORD } from "../constants"; import { sdk } from "../lib/gqlSdk"; import { getJwtToken } from "../lib/strapi-utils";

@@ -20,7 +20,7 @@ });

test("profile throws error if no auth", async () => { const request = sdk.profile(); - await expect(request).rejects.toThrow("no_user"); + await expect(request).rejects.toThrow("Forbidden access"); }); test("updateMe returns updated user", async () => {

@@ -38,9 +38,37 @@ );

await expect(request).resolves.toMatchObject({ updateMe: { - user: { - id: USER_ID, - firstName: "Updated firstname", + data: { + id: expect.any(String), + attributes: { + firstName: "Updated firstname", + }, + }, + }, + }); +}); + +test("updateMe updates password", async () => { + const jwt = await getJwtToken(); + const request = sdk.updateMe( + { + userUpdate: { + password: USER_PASSWORD, + oldPassword: USER_PASSWORD, + }, + }, + { + authorization: `Bearer ${jwt}`, + } + ); + + await expect(request).resolves.toMatchObject({ + updateMe: { + data: { + id: expect.any(String), + attributes: { + firstName: "Updated firstname", + }, }, }, });

@@ -54,3 +82,30 @@ },

}); await expect(request).rejects.toThrow("Forbidden"); }); + +test("updateMe link user to an event", async () => { + const jwt = await getJwtToken(); + const request = sdk.updateMe( + { + userUpdate: { + events: ["2"], + }, + }, + { + authorization: `Bearer ${jwt}`, + } + ); + + await expect(request).resolves.toMatchObject({ + updateMe: { + data: { + id: expect.any(String), + attributes: { + events: { + data: [{ id: "1" }, { id: "2" }], + }, + }, + }, + }, + }); +});
M e2e/tests/8.vehicle.test.tse2e/tests/8.vehicle.test.ts

@@ -12,14 +12,18 @@ await expect(request).resolves.toMatchObject({

me: { id: USER_ID, profile: { - vehicles: [ - { - id: VEHICLE.id, - name: VEHICLE.name, - phone_number: VEHICLE.phone_number, - seats: VEHICLE.seats, - }, - ], + vehicles: { + data: expect.arrayContaining([ + { + id: VEHICLE_ID, + attributes: { + name: VEHICLE.name, + phone_number: VEHICLE.phone_number, + seats: VEHICLE.seats, + }, + }, + ]), + }, }, }, });

@@ -27,7 +31,7 @@ });

test("findUserVehicles throws error if no auth", async () => { const request = sdk.findUserVehicles(); - await expect(request).rejects.toThrow("no_user"); + await expect(request).rejects.toThrow("Forbidden access:"); }); test("deleteVehicle returns ID of deleted vehicle", async () => {

@@ -41,14 +45,17 @@ );

await expect(request).resolves.toMatchObject({ deleteVehicle: { - vehicle: { + data: { id: VEHICLE_ID, + attributes: { + name: expect.any(String), + }, }, }, }); }); -test.skip("deleteVehicle fails if logged user doesn't own vehicle", async () => { +test("deleteVehicle fails if logged user doesn't own the vehicle", async () => { const jwt = await getJwtToken(); const request = sdk.deleteVehicle( { id: "2" },

@@ -57,5 +64,5 @@ authorization: `Bearer ${jwt}`,

} ); - await expect(request).rejects.toThrow("yolo"); + await expect(request).rejects.toThrow("Not Authorized"); });
M frontend/containers/CreateEvent/index.jsfrontend/containers/CreateEvent/index.tsx

@@ -17,9 +17,9 @@ const createEvent = async eventData => {

try { const variables = {...event, ...eventData}; const {data} = await sendEvent({variables}); - const returnedEvent = data.createEvent.event; - addToUserEvents(returnedEvent.id); - return returnedEvent; + const {id, attributes} = data.createEvent.data; + addToUserEvents(id); + return {id, ...attributes}; } catch (err) { console.error(err); return false;
M frontend/containers/DashboardEvents/EventCard.jsfrontend/containers/DashboardEvents/EventCard.tsx

@@ -5,27 +5,32 @@ import CardContent from '@material-ui/core/CardContent';

import Typography from '@material-ui/core/Typography'; import Button from '@material-ui/core/Button'; import {useTranslation} from 'react-i18next'; +import {EventEntity} from '../../generated/graphql'; -const EventCard = ({event}) => { +interface Props { + event: EventEntity; +} + +const EventCard = ({event}: Props) => { const {t} = useTranslation(); return ( <Card> <CardContent> <Typography gutterBottom variant="h6" component="h3"> - {event.name} + {event.attributes.name} </Typography> <Typography variant="overline">{t('event.fields.date')}</Typography> <Typography variant="body2" gutterBottom> - {event.date || t('event.fields.empty')} + {event.attributes.date || t('event.fields.empty')} </Typography> <Typography variant="overline">{t('event.fields.address')}</Typography> <Typography variant="body2" gutterBottom> - {event.address || t('event.fields.empty')} + {event.attributes.address || t('event.fields.empty')} </Typography> </CardContent> <CardActions> - <Link href={`/e/${event.uuid}`}> + <Link href={`/e/${event.attributes.uuid}`} passHref> <Button color="primary">{t('dashboard.actions.see_event')}</Button> </Link> </CardActions>
M frontend/containers/DashboardEvents/Section.tsxfrontend/containers/DashboardEvents/Section.tsx

@@ -3,10 +3,11 @@ import Grid from '@material-ui/core/Grid';

import Typography from '@material-ui/core/Typography'; import Box from '@material-ui/core/Box'; import EventCard from './EventCard'; +import { EventEntity } from '../../generated/graphql'; interface Props { label: string; - events: object[]; + events: EventEntity[]; } const Section = (props: Props) => {
M frontend/containers/DashboardEvents/index.tsxfrontend/containers/DashboardEvents/index.tsx

@@ -1,11 +1,16 @@

import {useTranslation} from 'react-i18next'; import Box from '@material-ui/core/Box'; import Section from './Section'; +import { EventEntity } from '../../generated/graphql'; const DashboardEvents = ({ futureEvents = [], noDateEvents = [], pastEvents = [], +}: { + futureEvents: EventEntity[]; + noDateEvents: EventEntity[]; + pastEvents: EventEntity[]; }) => { const {t} = useTranslation();
M frontend/containers/NewPassengerDialog/AddPassengerToTravel.tsxfrontend/containers/NewPassengerDialog/AddPassengerToTravel.tsx

@@ -16,7 +16,7 @@ import usePassengersActions from '../../hooks/usePassengersActions';

import {validateEmail} from './validation'; interface Props { - travel: TravelType; + travel: TravelType & {id: string}; toggle: () => void; open: boolean; }
M frontend/containers/NewTravelDialog/index.tsxfrontend/containers/NewTravelDialog/index.tsx

@@ -78,7 +78,7 @@ event: event.id,

}; const createVehicle = !context.vehicle; - await createTravel({...travel, createVehicle}); + await createTravel(travel, createVehicle); toggle({opened: false}); clearState();
M frontend/containers/NewTravelDialog/useActions.tsfrontend/containers/NewTravelDialog/useActions.ts

@@ -1,19 +1,18 @@

import {useTranslation} from 'react-i18next'; +import {PureQueryOptions} from '@apollo/client/core'; import useToastsStore from '../../stores/useToastStore'; import useAddToEvents from '../../hooks/useAddToEvents'; +import useProfile from '../../hooks/useProfile'; import { - Event, EventByUuidDocument, useCreateTravelMutation, TravelInput, FindUserVehiclesDocument, + Event } from '../../generated/graphql'; -import useProfile from '../../hooks/useProfile'; -import {DocumentNode, PureQueryOptions} from '@apollo/client/core'; -import {RefetchQueriesFunction} from '@apollo/client/react/types/types'; interface Props { - event: Event; + event: Event & {id: string}; } const useActions = (props: Props) => {

@@ -24,7 +23,10 @@ const {addToEvent} = useAddToEvents();

const [createTravelMutation] = useCreateTravelMutation(); const {user} = useProfile(); - const createTravel = async (travelInput: TravelInput) => { + const createTravel = async ( + travelInput: TravelInput, + createVehicle: boolean + ) => { const refetchQueries: Array<PureQueryOptions> = [ { query: EventByUuidDocument,

@@ -40,7 +42,7 @@ });

} try { await createTravelMutation({ - variables: {travel: travelInput}, + variables: {travel: travelInput, createVehicle}, refetchQueries, }); addToEvent(event.id);
M frontend/containers/PassengersList/Passenger.tsxfrontend/containers/PassengersList/Passenger.tsx

@@ -5,12 +5,12 @@ import ListItemText from '@material-ui/core/ListItemText';

import Icon from '@material-ui/core/Icon'; import {makeStyles} from '@material-ui/core/styles'; import {useTranslation} from 'react-i18next'; -import {Passenger as PassengerType} from '../../generated/graphql'; +import {PassengerEntity} from '../../generated/graphql'; import useProfile from '../../hooks/useProfile'; import Chip from '@material-ui/core/Chip'; interface Props { - passenger?: PassengerType; + passenger?: PassengerEntity; button?: ReactNode; isVehicle?: boolean; }

@@ -21,8 +21,8 @@ const {t} = useTranslation();

const classes = useStyles(); const {user} = useProfile(); - const isUser = user && `${user.id}` === passenger?.user?.id; - const showLocation = isVehicle ? false : passenger.location; + const isUser = user && `${user.id}` === passenger?.attributes.user?.data?.id; + const showLocation = isVehicle ? false : passenger.attributes.location; if (passenger) { return (

@@ -30,7 +30,7 @@ <>

<ListItemText primary={ <> - {passenger.name} + {passenger.attributes.name} {isUser && ( <Chip className={classes.me}
M frontend/containers/PassengersList/index.tsxfrontend/containers/PassengersList/index.tsx

@@ -2,10 +2,10 @@ import List from '@material-ui/core/List';

import ListItem from '@material-ui/core/ListItem'; import {makeStyles} from '@material-ui/core/styles'; import Passenger from './Passenger'; -import {Passenger as PassengerType} from '../../generated/graphql'; +import {PassengerEntity} from '../../generated/graphql'; interface Props { - passengers: PassengerType[]; + passengers: PassengerEntity[]; Button: ({ onClick, disabled,
M frontend/containers/Profile/index.jsfrontend/containers/Profile/index.tsx

@@ -69,7 +69,7 @@ );

return ( <form> - <Card className={classes.container}> + <Card> <CardContent> <ProfileField name="firstName"
M frontend/containers/ShareEvent/index.tsxfrontend/containers/ShareEvent/index.tsx

@@ -6,7 +6,7 @@

interface Props { title: string; url: string; - className: string; + className?: string; } const ShareEvent = ({title, url, className}: ButtonProps & Props) => {
M frontend/containers/SignInForm/index.jsfrontend/containers/SignInForm/index.tsx

@@ -60,17 +60,15 @@ if (search) authWithGoogle(search);

}, [router.route]); // eslint-disable-line react-hooks/exhaustive-deps const handleAuthError = error => { - const strapiError = getStrapiError(error); + const strapiError = error.message; console.error({strapiError}); - if (strapiError === 'Auth.form.error.invalid') { + if (strapiError === 'Invalid identifier or password') { setError(t('signin.errors')); addToast(t('signin.errors')); } else if (strapiError === 'Auth.form.error.confirmed') { setError(t('signin.unconfirmed')); addToast(t('signin.unconfirmed')); - } else if (strapiError === 'Auth.form.error.email.taken') { - addToast(t('signup.errors.email_taken')); - } else console.error(error); + } }; return (

@@ -130,12 +128,6 @@ </Button>

</CardActions> </form> ); -}; - -const getStrapiError = error => { - if (error.message?.[0]?.messages?.[0]) return error.message[0].messages[0].id; - return error?.graphQLErrors?.[0]?.extensions.exception.data.message[0] - .messages[0].id; }; const getURLSearch = router => router.asPath.replace(router.route, '');
M frontend/containers/SignUpForm/index.tsxfrontend/containers/SignUpForm/index.tsx

@@ -52,9 +52,9 @@ },

}); router.push('/auth/confirm'); } catch (error) { - const strapiError = getStrapiError(error); + const strapiError = error.message; console.error({strapiError}); - if (strapiError === 'Auth.form.error.email.taken') + if (strapiError === 'Email or Username are already taken') setError(t('signup.errors.email_taken')); else addToast(t(`generic.errors.unknown`)); }

@@ -127,7 +127,7 @@ id="SignUpSubmit"

endIcon={ isLoading && ( <CircularProgress - class={classes.loader} + className={classes.loader} size={20} color="secondary" />
D frontend/containers/TosDialog/index.js

@@ -1,49 +0,0 @@

-import React, {useEffect} from 'react'; -import Dialog from '@material-ui/core/Dialog'; -import DialogActions from '@material-ui/core/DialogActions'; -import DialogContent from '@material-ui/core/DialogContent'; -import DialogContentText from '@material-ui/core/DialogContentText'; -import DialogTitle from '@material-ui/core/DialogTitle'; -import Button from '@material-ui/core/Button'; -import Slide from '@material-ui/core/Slide'; -import {useStrapi} from 'strapi-react-context'; -import marked from 'marked'; -import {useTranslation} from 'react-i18next'; - -const Transition = React.forwardRef(function Transition(props, ref) { - return <Slide direction="up" ref={ref} {...props} />; -}); - -const TosDialog = ({open, toggle}) => { - const strapi = useStrapi(); - const {t} = useTranslation(); - const page = strapi.stores?.pages?.find(({type}) => type === 'tos'); - - useEffect(() => { - strapi.services.pages.find({type: 'tos'}); - }, [strapi.services.pages]); - - return ( - <Dialog - open={open} - TransitionComponent={Transition} - onClose={toggle} - fullWidth - maxWidth="sm" - > - <DialogTitle>{page?.name}</DialogTitle> - <DialogContent> - {page && ( - <DialogContentText - dangerouslySetInnerHTML={{__html: marked(page.content)}} - /> - )} - </DialogContent> - <DialogActions> - <Button onClick={toggle}>{t('generic.close')}</Button> - </DialogActions> - </Dialog> - ); -}; - -export default TosDialog;
M frontend/containers/Travel/index.tsxfrontend/containers/Travel/index.tsx

@@ -11,7 +11,7 @@ import Header from './Header';

import useActions from './useActions'; interface Props { - travel: TravelType; + travel: TravelType & {id: string}; getAddPassengerFunction: (addSelf: boolean) => () => void; canAddSelf: boolean; }

@@ -23,8 +23,7 @@ const [isEditing, toggleEditing] = useReducer(i => !i, false);

const actions = useActions({travel}); if (!travel) return null; - const disableNewPassengers = - travel.passengers.length >= travel.seats; + const disableNewPassengers = travel.passengers.data?.length >= travel.seats; return ( <Paper className={classes.root}>

@@ -43,7 +42,7 @@ />

<Divider /> {!isEditing && ( <PassengersList - passengers={travel.passengers} + passengers={travel.passengers.data} places={travel?.seats} onClick={actions.sendPassengerToWaitingList} isVehicle
M frontend/containers/Travel/useActions.tsfrontend/containers/Travel/useActions.ts

@@ -6,12 +6,12 @@ useUpdateTravelMutation,

useDeleteTravelMutation, EventByUuidDocument, Travel, - EditTravelInput, useUpdatePassengerMutation, + TravelInput } from '../../generated/graphql'; interface Props { - travel: Travel; + travel: Travel & {id: string}; } const useActions = (props: Props) => {

@@ -41,7 +41,7 @@ addToast(t('travel.errors.cant_remove_passenger'));

} }; - const updateTravel = async (travelUpdate: EditTravelInput) => { + const updateTravel = async (travelUpdate: TravelInput) => { try { await updateTravelMutation({ variables: {
M frontend/containers/TravelColumns/index.tsxfrontend/containers/TravelColumns/index.tsx

@@ -3,7 +3,7 @@ import {makeStyles} from '@material-ui/core/styles';

import Container from '@material-ui/core/Container'; import Slider from 'react-slick'; import {useTranslation} from 'react-i18next'; -import {Travel as TravelType} from '../../generated/graphql'; +import {Travel as TravelData, TravelEntity} from '../../generated/graphql'; import useEventStore from '../../stores/useEventStore'; import useToastStore from '../../stores/useToastStore'; import useProfile from '../../hooks/useProfile';

@@ -13,6 +13,8 @@ import Travel from '../Travel';

import sliderSettings from './_SliderSettings'; import usePassengersActions from '../../hooks/usePassengersActions'; import NoCar from './NoCar'; + +type TravelType = TravelData & {id: string}; interface Props { toggle: () => void;

@@ -20,7 +22,7 @@ }

const TravelColumns = (props: Props) => { const event = useEventStore(s => s.event); - const {travels = []} = event || {}; + const travels = event?.travels?.data || []; const slider = useRef(null); const {t} = useTranslation(); const addToast = useToastStore(s => s.addToast);

@@ -35,11 +37,13 @@ const sortedTravels = travels?.slice().sort(sortTravels);

const canAddSelf = useMemo(() => { if (!user) return false; - const isInWaitingList = event?.waitingPassengers?.some( - passenger => passenger.user?.id === `${user.id}` + const isInWaitingList = event?.waitingPassengers?.data.some( + passenger => passenger.attributes.user?.data?.id === `${user.id}` ); - const isInTravel = event?.travels?.some(travel => - travel.passengers?.some(passenger => passenger.user?.id === `${user.id}`) + const isInTravel = event?.travels?.data.some(travel => + travel.attributes.passengers?.data.some( + passenger => passenger.attributes.user?.data?.id === `${user.id}` + ) ); return !(isInWaitingList || isInTravel); }, [event, user]);

@@ -62,7 +66,7 @@

return ( <div className={classes.container}> <div className={classes.dots} id="slider-dots" /> - {(travels.length === 0 && ( + {(travels?.length === 0 && ( <NoCar image eventName={event?.name}

@@ -70,19 +74,26 @@ title={t('event.no_travel.title')}

/> )) || ( <Slider ref={slider} {...sliderSettings}> - {sortedTravels?.map(travel => ( - <Container key={travel.id} maxWidth="sm" className={classes.slide}> - <Travel - travel={travel} - {...props} - canAddSelf={canAddSelf} - getAddPassengerFunction={(addSelf: boolean) => () => - addSelf - ? addSelfToTravel(travel) - : toggleNewPassengerToTravel({travel})} - /> - </Container> - ))} + {sortedTravels?.map(({id, attributes}) => { + const travel = {id, ...attributes}; + return ( + <Container + key={travel.id} + maxWidth="sm" + className={classes.slide} + > + <Travel + travel={travel} + {...props} + canAddSelf={canAddSelf} + getAddPassengerFunction={(addSelf: boolean) => () => + addSelf + ? addSelfToTravel(travel) + : toggleNewPassengerToTravel({travel})} + /> + </Container> + ); + })} <Container maxWidth="sm" className={classes.slide}> <NoCar eventName={event?.name}

@@ -102,12 +113,15 @@ </div>

); }; -const sortTravels = (a: TravelType, b: TravelType) => { +const sortTravels = ( + {attributes: a}: TravelEntity, + {attributes: b}: TravelEntity +) => { if (!b) return 1; const dateA = new Date(a.departure).getTime(); const dateB = new Date(b.departure).getTime(); if (dateA === dateB) - return new Date(a.created_at).getTime() - new Date(b.created_at).getTime(); + return new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime(); else return dateA - dateB; };
M frontend/containers/VehicleChoiceDialog/VehicleItem.tsxfrontend/containers/VehicleChoiceDialog/VehicleItem.tsx

@@ -5,14 +5,14 @@ import Button from '@material-ui/core/Button';

import {makeStyles} from '@material-ui/core/styles'; import {useTranslation} from 'react-i18next'; import { - VehicleFieldsFragment, + Vehicle, FindUserVehiclesDocument, useDeleteVehicleMutation, } from '../../generated/graphql'; import useProfile from '../../hooks/useProfile'; interface Props { - vehicle: VehicleFieldsFragment; + vehicle: Vehicle & {id: string}; select: () => void; }
M frontend/containers/VehicleChoiceDialog/index.tsxfrontend/containers/VehicleChoiceDialog/index.tsx

@@ -12,7 +12,7 @@ import Slide from '@material-ui/core/Slide';

import {useTranslation} from 'react-i18next'; import VehicleItem from './VehicleItem'; import Typography from '@material-ui/core/Typography'; -import {VehicleFieldsFragment} from '../../generated/graphql'; +import {Vehicle, VehicleEntity} from '../../generated/graphql'; import Icon from '@material-ui/core/Icon'; interface Props {

@@ -23,9 +23,9 @@ opened,

vehicle, }: { opened: boolean; - vehicle?: VehicleFieldsFragment; + vehicle?: Vehicle & {id: string}; }) => void; - vehicles: Array<VehicleFieldsFragment>; + vehicles: Array<VehicleEntity>; } const VehicleChoiceDialog = ({

@@ -54,12 +54,15 @@ </DialogTitle>

<DialogContent dividers className={classes.content}> {(vehicles && vehicles.length != 0 && ( <List> - {vehicles.map((vehicle, index, {length}) => ( + {vehicles.map(({id, attributes}, index, {length}) => ( <Fragment key={index}> <VehicleItem - vehicle={vehicle} + vehicle={{id, ...attributes}} select={() => { - toggleNewTravel({vehicle, opened: true}); + toggleNewTravel({ + vehicle: {id, ...attributes}, + opened: true, + }); toggle(); }} />
M frontend/containers/WaitingList/TravelDialog.tsxfrontend/containers/WaitingList/TravelDialog.tsx

@@ -16,15 +16,15 @@ import {useTranslation} from 'react-i18next';

import {forwardRef} from 'react'; import getMapsLink from '../../utils/getMapsLink'; import ShareEvent from '../ShareEvent'; -import {Passenger, Travel} from '../../generated/graphql'; +import {Passenger, TravelEntity, Travel} from '../../generated/graphql'; interface Props { eventName: string; - travels: Array<Travel>; + travels: Array<TravelEntity>; passenger: Passenger; open: boolean; onClose: () => void; - onSelect: (travel: Travel) => void; + onSelect: (travel: Travel & {id: string}) => void; } const TravelDialog = ({

@@ -39,7 +39,9 @@ const classes = useStyles();

const {t} = useTranslation(); const availableTravels = travels?.filter( - travel => travel.passengers && travel?.seats > travel.passengers.length + ({attributes}) => + attributes.passengers && + attributes?.seats > attributes.passengers.data.length ); return (

@@ -72,14 +74,15 @@ <ShareEvent

color="primary" className={classes.share} title={`Caroster ${eventName}`} - url={`${window.location.href}`} + url={`${typeof window !== 'undefined' ? window.location.href : ''}`} /> </Box> )) || ( <div className={classes.offset}> <List disablePadding> - {availableTravels.map((travel, i) => { - const passengersCount = travel?.passengers?.length || 0; + {availableTravels.map(({id, attributes}, i) => { + const travel = {id, ...attributes}; + const passengersCount = travel?.passengers?.data.length || 0; const counter = `${passengersCount} / ${travel?.seats || 0}`; return ( <ListItem key={i} divider className={classes.listItem}>
M frontend/containers/WaitingList/index.tsxfrontend/containers/WaitingList/index.tsx

@@ -19,6 +19,7 @@ import Button from '@material-ui/core/Button';

import router from 'next/dist/client/router'; import Box from '@material-ui/core/Box'; import Container from '@material-ui/core/Container'; +import {PassengerEntity} from '../../generated/graphql'; interface Props { getToggleNewPassengerDialogFunction: (addSelf: boolean) => () => void;

@@ -36,17 +37,19 @@ const event = useEventStore(s => s.event);

const addToast = useToastStore(s => s.addToast); const [isEditing, toggleEditing] = useReducer(i => !i, false); const [removingPassenger, setRemovingPassenger] = useState(null); - const [addingPassenger, setAddingPassenger] = useState(null); + const [addingPassenger, setAddingPassenger] = useState<PassengerEntity>(null); const travels = - event?.travels?.length > 0 ? event?.travels.slice().sort(sortTravels) : []; + event?.travels?.data?.length > 0 + ? event?.travels?.data.slice().sort(sortTravels) + : []; const {updatePassenger, removePassenger} = usePassengersActions(); const availability = useMemo(() => { if (!travels) return; - return travels.reduce((count, {vehicle, passengers = []}) => { - if (!vehicle) return 0; - else if (!passengers) return count + vehicle.seats; - return count + vehicle.seats - passengers.length; + return travels.reduce((count, {attributes: {seats, passengers}}) => { + if (!seats) return 0; + else if (!passengers) return count + seats; + return count + seats - passengers?.data?.length; }, 0); }, [travels]);

@@ -62,7 +65,7 @@ });

setAddingPassenger(null); addToast( t('passenger.success.added_to_car', { - name: addingPassenger.name, + name: addingPassenger.attributes.name, }), <Button size="small"

@@ -86,7 +89,7 @@ );

const onPress = useCallback( (passengerId: string) => { - const selectedPassenger = event?.waitingPassengers.find( + const selectedPassenger = event?.waitingPassengers?.data.find( item => item.id === passengerId ); if (isEditing) setRemovingPassenger(selectedPassenger);

@@ -121,7 +124,7 @@ <IconButton

size="small" color="primary" className={classes.editBtn} - disabled={!event?.waitingPassengers?.length} + disabled={!event?.waitingPassengers?.data?.length} onClick={toggleEditing} > {isEditing ? <Icon>check</Icon> : <Icon>edit</Icon>}

@@ -139,7 +142,7 @@ variant="waitingList"

/> <Divider /> <PassengersList - passengers={event?.waitingPassengers} + passengers={event?.waitingPassengers?.data} onPress={onPress} Button={ListButton} />
M frontend/generated/graphql.tsxfrontend/generated/graphql.tsx

@@ -15,46 +15,86 @@ /** A date string, such as 2007-12-03, compliant with the `full-date` format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar. */

Date: any; /** A date-time string at UTC, such as 2007-12-03T10:15:30Z, compliant with the `date-time` format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar. */ DateTime: any; + /** A string used to identify an i18n locale */ + I18NLocaleCode: any; /** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */ JSON: any; - /** The `Long` scalar type represents 52-bit integers */ - Long: any; - /** A time string with format: HH:mm:ss.SSS */ - Time: any; /** The `Upload` scalar type represents a file upload. */ Upload: any; }; -export type AdminUser = { - __typename?: 'AdminUser'; - id: Scalars['ID']; - username?: Maybe<Scalars['String']>; - firstname: Scalars['String']; - lastname: Scalars['String']; +export type BooleanFilterInput = { + and?: Maybe<Array<Maybe<Scalars['Boolean']>>>; + or?: Maybe<Array<Maybe<Scalars['Boolean']>>>; + not?: Maybe<BooleanFilterInput>; + eq?: Maybe<Scalars['Boolean']>; + eqi?: Maybe<Scalars['Boolean']>; + ne?: Maybe<Scalars['Boolean']>; + startsWith?: Maybe<Scalars['Boolean']>; + endsWith?: Maybe<Scalars['Boolean']>; + contains?: Maybe<Scalars['Boolean']>; + notContains?: Maybe<Scalars['Boolean']>; + containsi?: Maybe<Scalars['Boolean']>; + notContainsi?: Maybe<Scalars['Boolean']>; + gt?: Maybe<Scalars['Boolean']>; + gte?: Maybe<Scalars['Boolean']>; + lt?: Maybe<Scalars['Boolean']>; + lte?: Maybe<Scalars['Boolean']>; + null?: Maybe<Scalars['Boolean']>; + notNull?: Maybe<Scalars['Boolean']>; + in?: Maybe<Array<Maybe<Scalars['Boolean']>>>; + notIn?: Maybe<Array<Maybe<Scalars['Boolean']>>>; + between?: Maybe<Array<Maybe<Scalars['Boolean']>>>; }; -export type ComponentPassengerPassenger = { - __typename?: 'ComponentPassengerPassenger'; - id: Scalars['ID']; - name: Scalars['String']; - email?: Maybe<Scalars['String']>; - location?: Maybe<Scalars['String']>; - user?: Maybe<UsersPermissionsUser>; -}; -export type ComponentPassengerPassengerInput = { - name: Scalars['String']; - email?: Maybe<Scalars['String']>; - location?: Maybe<Scalars['String']>; - user?: Maybe<Scalars['ID']>; +export type DateFilterInput = { + and?: Maybe<Array<Maybe<Scalars['Date']>>>; + or?: Maybe<Array<Maybe<Scalars['Date']>>>; + not?: Maybe<DateFilterInput>; + eq?: Maybe<Scalars['Date']>; + eqi?: Maybe<Scalars['Date']>; + ne?: Maybe<Scalars['Date']>; + startsWith?: Maybe<Scalars['Date']>; + endsWith?: Maybe<Scalars['Date']>; + contains?: Maybe<Scalars['Date']>; + notContains?: Maybe<Scalars['Date']>; + containsi?: Maybe<Scalars['Date']>; + notContainsi?: Maybe<Scalars['Date']>; + gt?: Maybe<Scalars['Date']>; + gte?: Maybe<Scalars['Date']>; + lt?: Maybe<Scalars['Date']>; + lte?: Maybe<Scalars['Date']>; + null?: Maybe<Scalars['Boolean']>; + notNull?: Maybe<Scalars['Boolean']>; + in?: Maybe<Array<Maybe<Scalars['Date']>>>; + notIn?: Maybe<Array<Maybe<Scalars['Date']>>>; + between?: Maybe<Array<Maybe<Scalars['Date']>>>; }; - -export type Dependency = { - __typename?: 'Dependency'; - name: Scalars['String']; - version: Scalars['String']; +export type DateTimeFilterInput = { + and?: Maybe<Array<Maybe<Scalars['DateTime']>>>; + or?: Maybe<Array<Maybe<Scalars['DateTime']>>>; + not?: Maybe<DateTimeFilterInput>; + eq?: Maybe<Scalars['DateTime']>; + eqi?: Maybe<Scalars['DateTime']>; + ne?: Maybe<Scalars['DateTime']>; + startsWith?: Maybe<Scalars['DateTime']>; + endsWith?: Maybe<Scalars['DateTime']>; + contains?: Maybe<Scalars['DateTime']>; + notContains?: Maybe<Scalars['DateTime']>; + containsi?: Maybe<Scalars['DateTime']>; + notContainsi?: Maybe<Scalars['DateTime']>; + gt?: Maybe<Scalars['DateTime']>; + gte?: Maybe<Scalars['DateTime']>; + lt?: Maybe<Scalars['DateTime']>; + lte?: Maybe<Scalars['DateTime']>; + null?: Maybe<Scalars['Boolean']>; + notNull?: Maybe<Scalars['Boolean']>; + in?: Maybe<Array<Maybe<Scalars['DateTime']>>>; + notIn?: Maybe<Array<Maybe<Scalars['DateTime']>>>; + between?: Maybe<Array<Maybe<Scalars['DateTime']>>>; }; export enum Enum_Page_Type {

@@ -68,10 +108,7 @@ }

export type EmailDesignerEmailTemplate = { __typename?: 'EmailDesignerEmailTemplate'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; - sourceCodeToTemplateId?: Maybe<Scalars['Int']>; + templateReferenceId?: Maybe<Scalars['Int']>; design?: Maybe<Scalars['JSON']>; name?: Maybe<Scalars['String']>; subject?: Maybe<Scalars['String']>;

@@ -79,10 +116,46 @@ bodyHtml?: Maybe<Scalars['String']>;

bodyText?: Maybe<Scalars['String']>; enabled?: Maybe<Scalars['Boolean']>; tags?: Maybe<Scalars['JSON']>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; -export type EmailTemplateInput = { - sourceCodeToTemplateId?: Maybe<Scalars['Int']>; +export type EmailDesignerEmailTemplateEntity = { + __typename?: 'EmailDesignerEmailTemplateEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<EmailDesignerEmailTemplate>; +}; + +export type EmailDesignerEmailTemplateEntityResponse = { + __typename?: 'EmailDesignerEmailTemplateEntityResponse'; + data?: Maybe<EmailDesignerEmailTemplateEntity>; +}; + +export type EmailDesignerEmailTemplateEntityResponseCollection = { + __typename?: 'EmailDesignerEmailTemplateEntityResponseCollection'; + data: Array<EmailDesignerEmailTemplateEntity>; + meta: ResponseCollectionMeta; +}; + +export type EmailDesignerEmailTemplateFiltersInput = { + id?: Maybe<IdFilterInput>; + templateReferenceId?: Maybe<IntFilterInput>; + design?: Maybe<JsonFilterInput>; + name?: Maybe<StringFilterInput>; + subject?: Maybe<StringFilterInput>; + bodyHtml?: Maybe<StringFilterInput>; + bodyText?: Maybe<StringFilterInput>; + enabled?: Maybe<BooleanFilterInput>; + tags?: Maybe<JsonFilterInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<EmailDesignerEmailTemplateFiltersInput>>>; + or?: Maybe<Array<Maybe<EmailDesignerEmailTemplateFiltersInput>>>; + not?: Maybe<EmailDesignerEmailTemplateFiltersInput>; +}; + +export type EmailDesignerEmailTemplateInput = { + templateReferenceId?: Maybe<Scalars['Int']>; design?: Maybe<Scalars['JSON']>; name?: Maybe<Scalars['String']>; subject?: Maybe<Scalars['String']>;

@@ -90,162 +163,85 @@ bodyHtml?: Maybe<Scalars['String']>;

bodyText?: Maybe<Scalars['String']>; enabled?: Maybe<Scalars['Boolean']>; tags?: Maybe<Scalars['JSON']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; }; export type Event = { __typename?: 'Event'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; name: Scalars['String']; email: Scalars['String']; date?: Maybe<Scalars['Date']>; address?: Maybe<Scalars['String']>; position?: Maybe<Scalars['JSON']>; uuid?: Maybe<Scalars['String']>; - waitingList?: Maybe<Array<Maybe<ComponentPassengerPassenger>>>; description?: Maybe<Scalars['String']>; - newsletter?: Maybe<Scalars['Boolean']>; - users?: Maybe<Array<Maybe<UsersPermissionsUser>>>; - travels?: Maybe<Array<Maybe<Travel>>>; - waitingPassengers?: Maybe<Array<Maybe<Passenger>>>; -}; - - -export type EventUsersArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; + travels?: Maybe<TravelRelationResponseCollection>; + waitingPassengers?: Maybe<PassengerRelationResponseCollection>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; export type EventTravelsArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; + filters?: Maybe<TravelFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; export type EventWaitingPassengersArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; + filters?: Maybe<PassengerFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type EventAggregator = { - __typename?: 'EventAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; +export type EventEntity = { + __typename?: 'EventEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<Event>; }; -export type EventConnection = { - __typename?: 'EventConnection'; - values?: Maybe<Array<Maybe<Event>>>; - groupBy?: Maybe<EventGroupBy>; - aggregate?: Maybe<EventAggregator>; +export type EventEntityResponse = { + __typename?: 'EventEntityResponse'; + data?: Maybe<EventEntity>; }; -export type EventConnectionAddress = { - __typename?: 'EventConnectionAddress'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionCreated_At = { - __typename?: 'EventConnectionCreated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionDate = { - __typename?: 'EventConnectionDate'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionDescription = { - __typename?: 'EventConnectionDescription'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionEmail = { - __typename?: 'EventConnectionEmail'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionId = { - __typename?: 'EventConnectionId'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionName = { - __typename?: 'EventConnectionName'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionNewsletter = { - __typename?: 'EventConnectionNewsletter'; - key?: Maybe<Scalars['Boolean']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionPosition = { - __typename?: 'EventConnectionPosition'; - key?: Maybe<Scalars['JSON']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionUpdated_At = { - __typename?: 'EventConnectionUpdated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<EventConnection>; -}; - -export type EventConnectionUuid = { - __typename?: 'EventConnectionUuid'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<EventConnection>; -}; - -export type EventGroupBy = { - __typename?: 'EventGroupBy'; - id?: Maybe<Array<Maybe<EventConnectionId>>>; - created_at?: Maybe<Array<Maybe<EventConnectionCreated_At>>>; - updated_at?: Maybe<Array<Maybe<EventConnectionUpdated_At>>>; - name?: Maybe<Array<Maybe<EventConnectionName>>>; - email?: Maybe<Array<Maybe<EventConnectionEmail>>>; - date?: Maybe<Array<Maybe<EventConnectionDate>>>; - address?: Maybe<Array<Maybe<EventConnectionAddress>>>; - position?: Maybe<Array<Maybe<EventConnectionPosition>>>; - uuid?: Maybe<Array<Maybe<EventConnectionUuid>>>; - description?: Maybe<Array<Maybe<EventConnectionDescription>>>; - newsletter?: Maybe<Array<Maybe<EventConnectionNewsletter>>>; +export type EventFiltersInput = { + id?: Maybe<IdFilterInput>; + name?: Maybe<StringFilterInput>; + email?: Maybe<StringFilterInput>; + date?: Maybe<DateFilterInput>; + address?: Maybe<StringFilterInput>; + position?: Maybe<JsonFilterInput>; + uuid?: Maybe<StringFilterInput>; + description?: Maybe<StringFilterInput>; + newsletter?: Maybe<BooleanFilterInput>; + users?: Maybe<UsersPermissionsUserFiltersInput>; + travels?: Maybe<TravelFiltersInput>; + waitingPassengers?: Maybe<PassengerFiltersInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<EventFiltersInput>>>; + or?: Maybe<Array<Maybe<EventFiltersInput>>>; + not?: Maybe<EventFiltersInput>; }; export type EventInput = { - name: Scalars['String']; - email: Scalars['String']; + name?: Maybe<Scalars['String']>; + email?: Maybe<Scalars['String']>; date?: Maybe<Scalars['Date']>; address?: Maybe<Scalars['String']>; position?: Maybe<Scalars['JSON']>; - users?: Maybe<Array<Maybe<Scalars['ID']>>>; uuid?: Maybe<Scalars['String']>; - waitingList?: Maybe<Array<Maybe<ComponentPassengerPassengerInput>>>; - travels?: Maybe<Array<Maybe<Scalars['ID']>>>; description?: Maybe<Scalars['String']>; - waitingPassengers?: Maybe<Array<Maybe<Scalars['ID']>>>; newsletter?: Maybe<Scalars['Boolean']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; + users?: Maybe<Array<Maybe<Scalars['ID']>>>; + travels?: Maybe<Array<Maybe<Scalars['ID']>>>; + waitingPassengers?: Maybe<Array<Maybe<Scalars['ID']>>>; +}; + +export type EventRelationResponseCollection = { + __typename?: 'EventRelationResponseCollection'; + data: Array<EventEntity>; }; export type FileInfoInput = {

@@ -254,267 +250,408 @@ alternativeText?: Maybe<Scalars['String']>;

caption?: Maybe<Scalars['String']>; }; -export type FileInput = { - name: Scalars['String']; - alternativeText?: Maybe<Scalars['String']>; - caption?: Maybe<Scalars['String']>; - width?: Maybe<Scalars['Int']>; - height?: Maybe<Scalars['Int']>; - formats?: Maybe<Scalars['JSON']>; - hash: Scalars['String']; - ext?: Maybe<Scalars['String']>; - mime: Scalars['String']; - size: Scalars['Float']; - url: Scalars['String']; - previewUrl?: Maybe<Scalars['String']>; - provider: Scalars['String']; - provider_metadata?: Maybe<Scalars['JSON']>; - related?: Maybe<Array<Maybe<Scalars['ID']>>>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; +export type FloatFilterInput = { + and?: Maybe<Array<Maybe<Scalars['Float']>>>; + or?: Maybe<Array<Maybe<Scalars['Float']>>>; + not?: Maybe<FloatFilterInput>; + eq?: Maybe<Scalars['Float']>; + eqi?: Maybe<Scalars['Float']>; + ne?: Maybe<Scalars['Float']>; + startsWith?: Maybe<Scalars['Float']>; + endsWith?: Maybe<Scalars['Float']>; + contains?: Maybe<Scalars['Float']>; + notContains?: Maybe<Scalars['Float']>; + containsi?: Maybe<Scalars['Float']>; + notContainsi?: Maybe<Scalars['Float']>; + gt?: Maybe<Scalars['Float']>; + gte?: Maybe<Scalars['Float']>; + lt?: Maybe<Scalars['Float']>; + lte?: Maybe<Scalars['Float']>; + null?: Maybe<Scalars['Boolean']>; + notNull?: Maybe<Scalars['Boolean']>; + in?: Maybe<Array<Maybe<Scalars['Float']>>>; + notIn?: Maybe<Array<Maybe<Scalars['Float']>>>; + between?: Maybe<Array<Maybe<Scalars['Float']>>>; }; +export type GenericMorph = UploadFile | UploadFolder | I18NLocale | UsersPermissionsPermission | UsersPermissionsRole | UsersPermissionsUser | EmailDesignerEmailTemplate | Event | Page | Passenger | Setting | Travel | Vehicle; + export type I18NLocale = { __typename?: 'I18NLocale'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; name?: Maybe<Scalars['String']>; code?: Maybe<Scalars['String']>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; -export type Info = { - __typename?: 'Info'; - appVersion?: Maybe<Scalars['String']>; - host: Scalars['String']; - environment: Scalars['String']; - uuid: Scalars['String']; - launchedAt: Scalars['String']; - cron?: Maybe<Scalars['Boolean']>; - installedPlugins?: Maybe<Array<Maybe<Scalars['String']>>>; - installedMiddlewares?: Maybe<Array<Maybe<Scalars['String']>>>; - name: Scalars['String']; - npmVersion: Scalars['String']; - description: Scalars['String']; - strapiVersion: Scalars['String']; - license: Scalars['String']; - dependencies?: Maybe<Array<Maybe<Dependency>>>; + +export type I18NLocaleEntity = { + __typename?: 'I18NLocaleEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<I18NLocale>; }; -export type InputId = { - id: Scalars['ID']; +export type I18NLocaleEntityResponse = { + __typename?: 'I18NLocaleEntityResponse'; + data?: Maybe<I18NLocaleEntity>; }; -export type InputUuid = { - uuid: Scalars['String']; +export type I18NLocaleEntityResponseCollection = { + __typename?: 'I18NLocaleEntityResponseCollection'; + data: Array<I18NLocaleEntity>; + meta: ResponseCollectionMeta; }; +export type I18NLocaleFiltersInput = { + id?: Maybe<IdFilterInput>; + name?: Maybe<StringFilterInput>; + code?: Maybe<StringFilterInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<I18NLocaleFiltersInput>>>; + or?: Maybe<Array<Maybe<I18NLocaleFiltersInput>>>; + not?: Maybe<I18NLocaleFiltersInput>; +}; -export type LocaleInput = { - name?: Maybe<Scalars['String']>; - code?: Maybe<Scalars['String']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; +export type IdFilterInput = { + and?: Maybe<Array<Maybe<Scalars['ID']>>>; + or?: Maybe<Array<Maybe<Scalars['ID']>>>; + not?: Maybe<IdFilterInput>; + eq?: Maybe<Scalars['ID']>; + eqi?: Maybe<Scalars['ID']>; + ne?: Maybe<Scalars['ID']>; + startsWith?: Maybe<Scalars['ID']>; + endsWith?: Maybe<Scalars['ID']>; + contains?: Maybe<Scalars['ID']>; + notContains?: Maybe<Scalars['ID']>; + containsi?: Maybe<Scalars['ID']>; + notContainsi?: Maybe<Scalars['ID']>; + gt?: Maybe<Scalars['ID']>; + gte?: Maybe<Scalars['ID']>; + lt?: Maybe<Scalars['ID']>; + lte?: Maybe<Scalars['ID']>; + null?: Maybe<Scalars['Boolean']>; + notNull?: Maybe<Scalars['Boolean']>; + in?: Maybe<Array<Maybe<Scalars['ID']>>>; + notIn?: Maybe<Array<Maybe<Scalars['ID']>>>; + between?: Maybe<Array<Maybe<Scalars['ID']>>>; +}; + +export type IntFilterInput = { + and?: Maybe<Array<Maybe<Scalars['Int']>>>; + or?: Maybe<Array<Maybe<Scalars['Int']>>>; + not?: Maybe<IntFilterInput>; + eq?: Maybe<Scalars['Int']>; + eqi?: Maybe<Scalars['Int']>; + ne?: Maybe<Scalars['Int']>; + startsWith?: Maybe<Scalars['Int']>; + endsWith?: Maybe<Scalars['Int']>; + contains?: Maybe<Scalars['Int']>; + notContains?: Maybe<Scalars['Int']>; + containsi?: Maybe<Scalars['Int']>; + notContainsi?: Maybe<Scalars['Int']>; + gt?: Maybe<Scalars['Int']>; + gte?: Maybe<Scalars['Int']>; + lt?: Maybe<Scalars['Int']>; + lte?: Maybe<Scalars['Int']>; + null?: Maybe<Scalars['Boolean']>; + notNull?: Maybe<Scalars['Boolean']>; + in?: Maybe<Array<Maybe<Scalars['Int']>>>; + notIn?: Maybe<Array<Maybe<Scalars['Int']>>>; + between?: Maybe<Array<Maybe<Scalars['Int']>>>; }; -export type Morph = Dependency | Info | UsersPermissionsMe | UsersPermissionsMeRole | UsersPermissionsLoginPayload | UserPermissionsPasswordPayload | Event | EventConnection | EventAggregator | EventGroupBy | EventConnectionId | EventConnectionCreated_At | EventConnectionUpdated_At | EventConnectionName | EventConnectionEmail | EventConnectionDate | EventConnectionAddress | EventConnectionPosition | EventConnectionUuid | EventConnectionDescription | EventConnectionNewsletter | CreateEventPayload | UpdateEventPayload | DeleteEventPayload | Page | PageConnection | PageAggregator | PageGroupBy | PageConnectionId | PageConnectionCreated_At | PageConnectionUpdated_At | PageConnectionName | PageConnectionContent | PageConnectionType | CreatePagePayload | UpdatePagePayload | DeletePagePayload | Passenger | PassengerConnection | PassengerAggregator | PassengerGroupBy | PassengerConnectionId | PassengerConnectionCreated_At | PassengerConnectionUpdated_At | PassengerConnectionName | PassengerConnectionEmail | PassengerConnectionLocation | PassengerConnectionUser | PassengerConnectionEvent | PassengerConnectionTravel | CreatePassengerPayload | UpdatePassengerPayload | DeletePassengerPayload | Settings | UpdateSettingPayload | DeleteSettingPayload | Travel | TravelConnection | TravelAggregator | TravelAggregatorSum | TravelAggregatorAvg | TravelAggregatorMin | TravelAggregatorMax | TravelGroupBy | TravelConnectionId | TravelConnectionCreated_At | TravelConnectionUpdated_At | TravelConnectionMeeting | TravelConnectionDeparture | TravelConnectionDetails | TravelConnectionEvent | TravelConnectionVehicleName | TravelConnectionSeats | TravelConnectionPhone_Number | CreateTravelPayload | UpdateTravelPayload | DeleteTravelPayload | Vehicle | VehicleConnection | VehicleAggregator | VehicleAggregatorSum | VehicleAggregatorAvg | VehicleAggregatorMin | VehicleAggregatorMax | VehicleGroupBy | VehicleConnectionId | VehicleConnectionCreated_At | VehicleConnectionUpdated_At | VehicleConnectionName | VehicleConnectionSeats | VehicleConnectionPhone_Number | VehicleConnectionUser | CreateVehiclePayload | UpdateVehiclePayload | DeleteVehiclePayload | EmailDesignerEmailTemplate | I18NLocale | UploadFile | UploadFileConnection | UploadFileAggregator | UploadFileAggregatorSum | UploadFileAggregatorAvg | UploadFileAggregatorMin | UploadFileAggregatorMax | UploadFileGroupBy | UploadFileConnectionId | UploadFileConnectionCreated_At | UploadFileConnectionUpdated_At | UploadFileConnectionName | UploadFileConnectionAlternativeText | UploadFileConnectionCaption | UploadFileConnectionWidth | UploadFileConnectionHeight | UploadFileConnectionFormats | UploadFileConnectionHash | UploadFileConnectionExt | UploadFileConnectionMime | UploadFileConnectionSize | UploadFileConnectionUrl | UploadFileConnectionPreviewUrl | UploadFileConnectionProvider | UploadFileConnectionProvider_Metadata | DeleteFilePayload | UsersPermissionsPermission | UsersPermissionsRole | UsersPermissionsRoleConnection | UsersPermissionsRoleAggregator | UsersPermissionsRoleGroupBy | UsersPermissionsRoleConnectionId | UsersPermissionsRoleConnectionName | UsersPermissionsRoleConnectionDescription | UsersPermissionsRoleConnectionType | CreateRolePayload | UpdateRolePayload | DeleteRolePayload | UsersPermissionsUser | UsersPermissionsUserConnection | UsersPermissionsUserAggregator | UsersPermissionsUserGroupBy | UsersPermissionsUserConnectionId | UsersPermissionsUserConnectionCreated_At | UsersPermissionsUserConnectionUpdated_At | UsersPermissionsUserConnectionUsername | UsersPermissionsUserConnectionFirstName | UsersPermissionsUserConnectionLastName | UsersPermissionsUserConnectionEmail | UsersPermissionsUserConnectionProvider | UsersPermissionsUserConnectionConfirmed | UsersPermissionsUserConnectionBlocked | UsersPermissionsUserConnectionRole | UsersPermissionsUserConnectionOnboardingUser | UsersPermissionsUserConnectionOnboardingCreator | UsersPermissionsUserConnectionLang | CreateUserPayload | UpdateUserPayload | DeleteUserPayload | ComponentPassengerPassenger; +export type JsonFilterInput = { + and?: Maybe<Array<Maybe<Scalars['JSON']>>>; + or?: Maybe<Array<Maybe<Scalars['JSON']>>>; + not?: Maybe<JsonFilterInput>; + eq?: Maybe<Scalars['JSON']>; + eqi?: Maybe<Scalars['JSON']>; + ne?: Maybe<Scalars['JSON']>; + startsWith?: Maybe<Scalars['JSON']>; + endsWith?: Maybe<Scalars['JSON']>; + contains?: Maybe<Scalars['JSON']>; + notContains?: Maybe<Scalars['JSON']>; + containsi?: Maybe<Scalars['JSON']>; + notContainsi?: Maybe<Scalars['JSON']>; + gt?: Maybe<Scalars['JSON']>; + gte?: Maybe<Scalars['JSON']>; + lt?: Maybe<Scalars['JSON']>; + lte?: Maybe<Scalars['JSON']>; + null?: Maybe<Scalars['Boolean']>; + notNull?: Maybe<Scalars['Boolean']>; + in?: Maybe<Array<Maybe<Scalars['JSON']>>>; + notIn?: Maybe<Array<Maybe<Scalars['JSON']>>>; + between?: Maybe<Array<Maybe<Scalars['JSON']>>>; +}; export type Mutation = { __typename?: 'Mutation'; - createEvent?: Maybe<CreateEventPayload>; - updateEvent?: Maybe<UpdateEventPayload>; - deleteEvent?: Maybe<DeleteEventPayload>; - createPage?: Maybe<CreatePagePayload>; - updatePage?: Maybe<UpdatePagePayload>; - deletePage?: Maybe<DeletePagePayload>; - createPassenger?: Maybe<CreatePassengerPayload>; - updatePassenger?: Maybe<UpdatePassengerPayload>; - deletePassenger?: Maybe<DeletePassengerPayload>; - updateSetting?: Maybe<UpdateSettingPayload>; - deleteSetting?: Maybe<DeleteSettingPayload>; - createTravel?: Maybe<CreateTravelPayload>; - updateTravel?: Maybe<UpdateTravelPayload>; - deleteTravel?: Maybe<DeleteTravelPayload>; - createVehicle?: Maybe<CreateVehiclePayload>; - updateVehicle?: Maybe<UpdateVehiclePayload>; - deleteVehicle?: Maybe<DeleteVehiclePayload>; - /** Delete one file */ - deleteFile?: Maybe<DeleteFilePayload>; + createUploadFile?: Maybe<UploadFileEntityResponse>; + updateUploadFile?: Maybe<UploadFileEntityResponse>; + deleteUploadFile?: Maybe<UploadFileEntityResponse>; + createUploadFolder?: Maybe<UploadFolderEntityResponse>; + updateUploadFolder?: Maybe<UploadFolderEntityResponse>; + deleteUploadFolder?: Maybe<UploadFolderEntityResponse>; + createEmailDesignerEmailTemplate?: Maybe<EmailDesignerEmailTemplateEntityResponse>; + updateEmailDesignerEmailTemplate?: Maybe<EmailDesignerEmailTemplateEntityResponse>; + deleteEmailDesignerEmailTemplate?: Maybe<EmailDesignerEmailTemplateEntityResponse>; + createEvent?: Maybe<EventEntityResponse>; + updateEvent?: Maybe<EventEntityResponse>; + deleteEvent?: Maybe<EventEntityResponse>; + createPage?: Maybe<PageEntityResponse>; + updatePage?: Maybe<PageEntityResponse>; + deletePage?: Maybe<PageEntityResponse>; + createPassenger?: Maybe<PassengerEntityResponse>; + updatePassenger?: Maybe<PassengerEntityResponse>; + deletePassenger?: Maybe<PassengerEntityResponse>; + updateSetting?: Maybe<SettingEntityResponse>; + deleteSetting?: Maybe<SettingEntityResponse>; + createTravel?: Maybe<TravelEntityResponse>; + updateTravel?: Maybe<TravelEntityResponse>; + deleteTravel?: Maybe<TravelEntityResponse>; + createVehicle?: Maybe<VehicleEntityResponse>; + updateVehicle?: Maybe<VehicleEntityResponse>; + deleteVehicle?: Maybe<VehicleEntityResponse>; + upload: UploadFileEntityResponse; + multipleUpload: Array<Maybe<UploadFileEntityResponse>>; + updateFileInfo: UploadFileEntityResponse; + removeFile?: Maybe<UploadFileEntityResponse>; + createSettingLocalization?: Maybe<SettingEntityResponse>; /** Create a new role */ - createRole?: Maybe<CreateRolePayload>; + createUsersPermissionsRole?: Maybe<UsersPermissionsCreateRolePayload>; /** Update an existing role */ - updateRole?: Maybe<UpdateRolePayload>; + updateUsersPermissionsRole?: Maybe<UsersPermissionsUpdateRolePayload>; /** Delete an existing role */ - deleteRole?: Maybe<DeleteRolePayload>; + deleteUsersPermissionsRole?: Maybe<UsersPermissionsDeleteRolePayload>; /** Create a new user */ - createUser?: Maybe<CreateUserPayload>; + createUsersPermissionsUser: UsersPermissionsUserEntityResponse; /** Update an existing user */ - updateUser?: Maybe<UpdateUserPayload>; + updateUsersPermissionsUser: UsersPermissionsUserEntityResponse; /** Delete an existing user */ - deleteUser?: Maybe<DeleteUserPayload>; - createSettingLocalization: Settings; - upload: UploadFile; - multipleUpload: Array<Maybe<UploadFile>>; - updateFileInfo: UploadFile; + deleteUsersPermissionsUser: UsersPermissionsUserEntityResponse; login: UsersPermissionsLoginPayload; + /** Register a user */ register: UsersPermissionsLoginPayload; - forgotPassword?: Maybe<UserPermissionsPasswordPayload>; + /** Request a reset password token */ + forgotPassword?: Maybe<UsersPermissionsPasswordPayload>; + /** Reset user password. Confirm with a code (resetToken from forgotPassword) */ resetPassword?: Maybe<UsersPermissionsLoginPayload>; + /** Change user password. Confirm with the current password. */ + changePassword?: Maybe<UsersPermissionsLoginPayload>; + /** Confirm an email users email address */ emailConfirmation?: Maybe<UsersPermissionsLoginPayload>; - updateMe: UpdateUserPayload; - updateEventByUUID?: Maybe<UpdateEventPayload>; + /** Update an event using its UUID */ + updateEventByUUID?: Maybe<EventEntityResponse>; + updateMe: UsersPermissionsUserEntityResponse; +}; + + +export type MutationCreateUploadFileArgs = { + data: UploadFileInput; +}; + + +export type MutationUpdateUploadFileArgs = { + id: Scalars['ID']; + data: UploadFileInput; +}; + + +export type MutationDeleteUploadFileArgs = { + id: Scalars['ID']; +}; + + +export type MutationCreateUploadFolderArgs = { + data: UploadFolderInput; +}; + + +export type MutationUpdateUploadFolderArgs = { + id: Scalars['ID']; + data: UploadFolderInput; +}; + + +export type MutationDeleteUploadFolderArgs = { + id: Scalars['ID']; +}; + + +export type MutationCreateEmailDesignerEmailTemplateArgs = { + data: EmailDesignerEmailTemplateInput; +}; + + +export type MutationUpdateEmailDesignerEmailTemplateArgs = { + id: Scalars['ID']; + data: EmailDesignerEmailTemplateInput; +}; + + +export type MutationDeleteEmailDesignerEmailTemplateArgs = { + id: Scalars['ID']; }; export type MutationCreateEventArgs = { - input?: Maybe<CreateEventInput>; + data: EventInput; }; export type MutationUpdateEventArgs = { - input?: Maybe<UpdateEventInput>; + id: Scalars['ID']; + data: EventInput; }; export type MutationDeleteEventArgs = { - input?: Maybe<DeleteEventInput>; + id: Scalars['ID']; }; export type MutationCreatePageArgs = { - input?: Maybe<CreatePageInput>; + data: PageInput; }; export type MutationUpdatePageArgs = { - input?: Maybe<UpdatePageInput>; + id: Scalars['ID']; + data: PageInput; }; export type MutationDeletePageArgs = { - input?: Maybe<DeletePageInput>; + id: Scalars['ID']; }; export type MutationCreatePassengerArgs = { - input?: Maybe<CreatePassengerInput>; + data: PassengerInput; }; export type MutationUpdatePassengerArgs = { - input?: Maybe<UpdatePassengerInput>; + id: Scalars['ID']; + data: PassengerInput; }; export type MutationDeletePassengerArgs = { - input?: Maybe<DeletePassengerInput>; + id: Scalars['ID']; }; export type MutationUpdateSettingArgs = { - input?: Maybe<UpdateSettingInput>; - locale?: Maybe<Scalars['String']>; + data: SettingInput; + locale?: Maybe<Scalars['I18NLocaleCode']>; }; export type MutationDeleteSettingArgs = { - locale?: Maybe<Scalars['String']>; + locale?: Maybe<Scalars['I18NLocaleCode']>; }; export type MutationCreateTravelArgs = { - input?: Maybe<CreateTravelInput>; + data: TravelInput; + createVehicle?: Maybe<Scalars['Boolean']>; }; export type MutationUpdateTravelArgs = { - input?: Maybe<UpdateTravelInput>; + id: Scalars['ID']; + data: TravelInput; }; export type MutationDeleteTravelArgs = { - input?: Maybe<DeleteTravelInput>; + id: Scalars['ID']; }; export type MutationCreateVehicleArgs = { - input?: Maybe<CreateVehicleInput>; + data: VehicleInput; }; export type MutationUpdateVehicleArgs = { - input?: Maybe<UpdateVehicleInput>; + id: Scalars['ID']; + data: VehicleInput; }; export type MutationDeleteVehicleArgs = { - input?: Maybe<DeleteVehicleInput>; + id: Scalars['ID']; }; -export type MutationDeleteFileArgs = { - input?: Maybe<DeleteFileInput>; +export type MutationUploadArgs = { + refId?: Maybe<Scalars['ID']>; + ref?: Maybe<Scalars['String']>; + field?: Maybe<Scalars['String']>; + info?: Maybe<FileInfoInput>; + file: Scalars['Upload']; }; -export type MutationCreateRoleArgs = { - input?: Maybe<CreateRoleInput>; +export type MutationMultipleUploadArgs = { + refId?: Maybe<Scalars['ID']>; + ref?: Maybe<Scalars['String']>; + field?: Maybe<Scalars['String']>; + files: Array<Maybe<Scalars['Upload']>>; }; -export type MutationUpdateRoleArgs = { - input?: Maybe<UpdateRoleInput>; +export type MutationUpdateFileInfoArgs = { + id: Scalars['ID']; + info?: Maybe<FileInfoInput>; }; -export type MutationDeleteRoleArgs = { - input?: Maybe<DeleteRoleInput>; +export type MutationRemoveFileArgs = { + id: Scalars['ID']; }; -export type MutationCreateUserArgs = { - input?: Maybe<CreateUserInput>; +export type MutationCreateSettingLocalizationArgs = { + id?: Maybe<Scalars['ID']>; + data?: Maybe<SettingInput>; + locale?: Maybe<Scalars['I18NLocaleCode']>; }; -export type MutationUpdateUserArgs = { - input?: Maybe<UpdateUserInput>; +export type MutationCreateUsersPermissionsRoleArgs = { + data: UsersPermissionsRoleInput; }; -export type MutationDeleteUserArgs = { - input?: Maybe<DeleteUserInput>; +export type MutationUpdateUsersPermissionsRoleArgs = { + id: Scalars['ID']; + data: UsersPermissionsRoleInput; }; -export type MutationCreateSettingLocalizationArgs = { - input: UpdateSettingInput; +export type MutationDeleteUsersPermissionsRoleArgs = { + id: Scalars['ID']; }; -export type MutationUploadArgs = { - refId?: Maybe<Scalars['ID']>; - ref?: Maybe<Scalars['String']>; - field?: Maybe<Scalars['String']>; - source?: Maybe<Scalars['String']>; - info?: Maybe<FileInfoInput>; - file: Scalars['Upload']; +export type MutationCreateUsersPermissionsUserArgs = { + data: UsersPermissionsUserInput; }; -export type MutationMultipleUploadArgs = { - refId?: Maybe<Scalars['ID']>; - ref?: Maybe<Scalars['String']>; - field?: Maybe<Scalars['String']>; - source?: Maybe<Scalars['String']>; - files: Array<Maybe<Scalars['Upload']>>; +export type MutationUpdateUsersPermissionsUserArgs = { + id: Scalars['ID']; + data: UsersPermissionsUserInput; }; -export type MutationUpdateFileInfoArgs = { +export type MutationDeleteUsersPermissionsUserArgs = { id: Scalars['ID']; - info: FileInfoInput; };

@@ -540,420 +677,264 @@ code: Scalars['String'];

}; +export type MutationChangePasswordArgs = { + currentPassword: Scalars['String']; + password: Scalars['String']; + passwordConfirmation: Scalars['String']; +}; + + export type MutationEmailConfirmationArgs = { confirmation: Scalars['String']; }; -export type MutationUpdateMeArgs = { - input?: Maybe<EditUserInput>; +export type MutationUpdateEventByUuidArgs = { + uuid: Scalars['String']; + data: EventInput; }; -export type MutationUpdateEventByUuidArgs = { - input?: Maybe<UpdateEventByUuidInput>; +export type MutationUpdateMeArgs = { + data: UsersPermissionsUserInput; }; export type Page = { __typename?: 'Page'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; name: Scalars['String']; content?: Maybe<Scalars['String']>; type?: Maybe<Enum_Page_Type>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; -export type PageAggregator = { - __typename?: 'PageAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; +export type PageEntity = { + __typename?: 'PageEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<Page>; }; -export type PageConnection = { - __typename?: 'PageConnection'; - values?: Maybe<Array<Maybe<Page>>>; - groupBy?: Maybe<PageGroupBy>; - aggregate?: Maybe<PageAggregator>; -}; - -export type PageConnectionContent = { - __typename?: 'PageConnectionContent'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<PageConnection>; -}; - -export type PageConnectionCreated_At = { - __typename?: 'PageConnectionCreated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<PageConnection>; -}; - -export type PageConnectionId = { - __typename?: 'PageConnectionId'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<PageConnection>; +export type PageEntityResponse = { + __typename?: 'PageEntityResponse'; + data?: Maybe<PageEntity>; }; -export type PageConnectionName = { - __typename?: 'PageConnectionName'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<PageConnection>; +export type PageEntityResponseCollection = { + __typename?: 'PageEntityResponseCollection'; + data: Array<PageEntity>; + meta: ResponseCollectionMeta; }; -export type PageConnectionType = { - __typename?: 'PageConnectionType'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<PageConnection>; +export type PageFiltersInput = { + id?: Maybe<IdFilterInput>; + name?: Maybe<StringFilterInput>; + content?: Maybe<StringFilterInput>; + type?: Maybe<StringFilterInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<PageFiltersInput>>>; + or?: Maybe<Array<Maybe<PageFiltersInput>>>; + not?: Maybe<PageFiltersInput>; }; -export type PageConnectionUpdated_At = { - __typename?: 'PageConnectionUpdated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<PageConnection>; +export type PageInput = { + name?: Maybe<Scalars['String']>; + content?: Maybe<Scalars['String']>; + type?: Maybe<Enum_Page_Type>; }; -export type PageGroupBy = { - __typename?: 'PageGroupBy'; - id?: Maybe<Array<Maybe<PageConnectionId>>>; - created_at?: Maybe<Array<Maybe<PageConnectionCreated_At>>>; - updated_at?: Maybe<Array<Maybe<PageConnectionUpdated_At>>>; - name?: Maybe<Array<Maybe<PageConnectionName>>>; - content?: Maybe<Array<Maybe<PageConnectionContent>>>; - type?: Maybe<Array<Maybe<PageConnectionType>>>; +export type Pagination = { + __typename?: 'Pagination'; + total: Scalars['Int']; + page: Scalars['Int']; + pageSize: Scalars['Int']; + pageCount: Scalars['Int']; }; -export type PageInput = { - name: Scalars['String']; - content?: Maybe<Scalars['String']>; - type?: Maybe<Enum_Page_Type>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; +export type PaginationArg = { + page?: Maybe<Scalars['Int']>; + pageSize?: Maybe<Scalars['Int']>; + start?: Maybe<Scalars['Int']>; + limit?: Maybe<Scalars['Int']>; }; export type Passenger = { __typename?: 'Passenger'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; name: Scalars['String']; email?: Maybe<Scalars['String']>; location?: Maybe<Scalars['String']>; - user?: Maybe<UsersPermissionsUser>; - event?: Maybe<Event>; - travel?: Maybe<Travel>; + event?: Maybe<EventEntityResponse>; + user?: Maybe<UsersPermissionsUserEntityResponse>; + travel?: Maybe<TravelEntityResponse>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; -export type PassengerAggregator = { - __typename?: 'PassengerAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; +export type PassengerEntity = { + __typename?: 'PassengerEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<Passenger>; }; -export type PassengerConnection = { - __typename?: 'PassengerConnection'; - values?: Maybe<Array<Maybe<Passenger>>>; - groupBy?: Maybe<PassengerGroupBy>; - aggregate?: Maybe<PassengerAggregator>; +export type PassengerEntityResponse = { + __typename?: 'PassengerEntityResponse'; + data?: Maybe<PassengerEntity>; }; -export type PassengerConnectionCreated_At = { - __typename?: 'PassengerConnectionCreated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<PassengerConnection>; -}; - -export type PassengerConnectionEmail = { - __typename?: 'PassengerConnectionEmail'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<PassengerConnection>; -}; - -export type PassengerConnectionEvent = { - __typename?: 'PassengerConnectionEvent'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<PassengerConnection>; -}; - -export type PassengerConnectionId = { - __typename?: 'PassengerConnectionId'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<PassengerConnection>; -}; - -export type PassengerConnectionLocation = { - __typename?: 'PassengerConnectionLocation'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<PassengerConnection>; -}; - -export type PassengerConnectionName = { - __typename?: 'PassengerConnectionName'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<PassengerConnection>; -}; - -export type PassengerConnectionTravel = { - __typename?: 'PassengerConnectionTravel'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<PassengerConnection>; -}; - -export type PassengerConnectionUpdated_At = { - __typename?: 'PassengerConnectionUpdated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<PassengerConnection>; -}; - -export type PassengerConnectionUser = { - __typename?: 'PassengerConnectionUser'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<PassengerConnection>; -}; - -export type PassengerGroupBy = { - __typename?: 'PassengerGroupBy'; - id?: Maybe<Array<Maybe<PassengerConnectionId>>>; - created_at?: Maybe<Array<Maybe<PassengerConnectionCreated_At>>>; - updated_at?: Maybe<Array<Maybe<PassengerConnectionUpdated_At>>>; - name?: Maybe<Array<Maybe<PassengerConnectionName>>>; - email?: Maybe<Array<Maybe<PassengerConnectionEmail>>>; - location?: Maybe<Array<Maybe<PassengerConnectionLocation>>>; - user?: Maybe<Array<Maybe<PassengerConnectionUser>>>; - event?: Maybe<Array<Maybe<PassengerConnectionEvent>>>; - travel?: Maybe<Array<Maybe<PassengerConnectionTravel>>>; +export type PassengerFiltersInput = { + id?: Maybe<IdFilterInput>; + name?: Maybe<StringFilterInput>; + email?: Maybe<StringFilterInput>; + location?: Maybe<StringFilterInput>; + event?: Maybe<EventFiltersInput>; + user?: Maybe<UsersPermissionsUserFiltersInput>; + travel?: Maybe<TravelFiltersInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<PassengerFiltersInput>>>; + or?: Maybe<Array<Maybe<PassengerFiltersInput>>>; + not?: Maybe<PassengerFiltersInput>; }; export type PassengerInput = { - name: Scalars['String']; + name?: Maybe<Scalars['String']>; email?: Maybe<Scalars['String']>; location?: Maybe<Scalars['String']>; - user?: Maybe<Scalars['ID']>; event?: Maybe<Scalars['ID']>; + user?: Maybe<Scalars['ID']>; travel?: Maybe<Scalars['ID']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; }; -export enum PublicationState { - Live = 'LIVE', - Preview = 'PREVIEW' -} +export type PassengerRelationResponseCollection = { + __typename?: 'PassengerRelationResponseCollection'; + data: Array<PassengerEntity>; +}; export type Query = { __typename?: 'Query'; - event?: Maybe<Event>; - events?: Maybe<Array<Maybe<Event>>>; - eventsConnection?: Maybe<EventConnection>; - page?: Maybe<Page>; - pages?: Maybe<Array<Maybe<Page>>>; - pagesConnection?: Maybe<PageConnection>; - passenger?: Maybe<Passenger>; - passengers?: Maybe<Array<Maybe<Passenger>>>; - passengersConnection?: Maybe<PassengerConnection>; - setting?: Maybe<Settings>; - travel?: Maybe<Travel>; - travels?: Maybe<Array<Maybe<Travel>>>; - travelsConnection?: Maybe<TravelConnection>; - vehicle?: Maybe<Vehicle>; - vehicles?: Maybe<Array<Maybe<Vehicle>>>; - vehiclesConnection?: Maybe<VehicleConnection>; - files?: Maybe<Array<Maybe<UploadFile>>>; - filesConnection?: Maybe<UploadFileConnection>; - role?: Maybe<UsersPermissionsRole>; - /** Retrieve all the existing roles. You can't apply filters on this query. */ - roles?: Maybe<Array<Maybe<UsersPermissionsRole>>>; - rolesConnection?: Maybe<UsersPermissionsRoleConnection>; - user?: Maybe<UsersPermissionsUser>; - users?: Maybe<Array<Maybe<UsersPermissionsUser>>>; - usersConnection?: Maybe<UsersPermissionsUserConnection>; - strapiInfo: Info; + uploadFile?: Maybe<UploadFileEntityResponse>; + uploadFiles?: Maybe<UploadFileEntityResponseCollection>; + uploadFolder?: Maybe<UploadFolderEntityResponse>; + uploadFolders?: Maybe<UploadFolderEntityResponseCollection>; + i18NLocale?: Maybe<I18NLocaleEntityResponse>; + i18NLocales?: Maybe<I18NLocaleEntityResponseCollection>; + usersPermissionsRole?: Maybe<UsersPermissionsRoleEntityResponse>; + usersPermissionsRoles?: Maybe<UsersPermissionsRoleEntityResponseCollection>; + usersPermissionsUser?: Maybe<UsersPermissionsUserEntityResponse>; + emailDesignerEmailTemplate?: Maybe<EmailDesignerEmailTemplateEntityResponse>; + emailDesignerEmailTemplates?: Maybe<EmailDesignerEmailTemplateEntityResponseCollection>; + event?: Maybe<EventEntityResponse>; + page?: Maybe<PageEntityResponse>; + pages?: Maybe<PageEntityResponseCollection>; + passenger?: Maybe<PassengerEntityResponse>; + setting?: Maybe<SettingEntityResponse>; + travel?: Maybe<TravelEntityResponse>; + vehicle?: Maybe<VehicleEntityResponse>; me?: Maybe<UsersPermissionsMe>; - eventByUUID?: Maybe<Event>; -}; - - -export type QueryEventArgs = { - id: Scalars['ID']; - publicationState?: Maybe<PublicationState>; -}; - - -export type QueryEventsArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; - publicationState?: Maybe<PublicationState>; -}; - - -export type QueryEventsConnectionArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; + /** Retrieve an event using its UUID */ + eventByUUID?: Maybe<EventEntityResponse>; }; -export type QueryPageArgs = { - id: Scalars['ID']; - publicationState?: Maybe<PublicationState>; +export type QueryUploadFileArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QueryPagesArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; - publicationState?: Maybe<PublicationState>; -}; - - -export type QueryPagesConnectionArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; -}; - - -export type QueryPassengerArgs = { - id: Scalars['ID']; - publicationState?: Maybe<PublicationState>; -}; - - -export type QueryPassengersArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; - publicationState?: Maybe<PublicationState>; +export type QueryUploadFilesArgs = { + filters?: Maybe<UploadFileFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type QueryPassengersConnectionArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; +export type QueryUploadFolderArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QuerySettingArgs = { - publicationState?: Maybe<PublicationState>; - locale?: Maybe<Scalars['String']>; +export type QueryUploadFoldersArgs = { + filters?: Maybe<UploadFolderFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type QueryTravelArgs = { - id: Scalars['ID']; - publicationState?: Maybe<PublicationState>; +export type QueryI18NLocaleArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QueryTravelsArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; - publicationState?: Maybe<PublicationState>; +export type QueryI18NLocalesArgs = { + filters?: Maybe<I18NLocaleFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type QueryTravelsConnectionArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; +export type QueryUsersPermissionsRoleArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QueryVehicleArgs = { - id: Scalars['ID']; - publicationState?: Maybe<PublicationState>; +export type QueryUsersPermissionsRolesArgs = { + filters?: Maybe<UsersPermissionsRoleFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type QueryVehiclesArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; - publicationState?: Maybe<PublicationState>; +export type QueryUsersPermissionsUserArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QueryVehiclesConnectionArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; +export type QueryEmailDesignerEmailTemplateArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QueryFilesArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; - publicationState?: Maybe<PublicationState>; +export type QueryEmailDesignerEmailTemplatesArgs = { + filters?: Maybe<EmailDesignerEmailTemplateFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type QueryFilesConnectionArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; +export type QueryEventArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QueryRoleArgs = { - id: Scalars['ID']; - publicationState?: Maybe<PublicationState>; +export type QueryPageArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QueryRolesArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; - publicationState?: Maybe<PublicationState>; +export type QueryPagesArgs = { + filters?: Maybe<PageFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type QueryRolesConnectionArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; +export type QueryPassengerArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QueryUserArgs = { - id: Scalars['ID']; - publicationState?: Maybe<PublicationState>; +export type QuerySettingArgs = { + locale?: Maybe<Scalars['I18NLocaleCode']>; }; -export type QueryUsersArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; - publicationState?: Maybe<PublicationState>; +export type QueryTravelArgs = { + id?: Maybe<Scalars['ID']>; }; -export type QueryUsersConnectionArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; +export type QueryVehicleArgs = { + id?: Maybe<Scalars['ID']>; };

@@ -961,205 +942,138 @@ export type QueryEventByUuidArgs = {

uuid: Scalars['String']; }; -export type RoleInput = { - name: Scalars['String']; - description?: Maybe<Scalars['String']>; - type?: Maybe<Scalars['String']>; - permissions?: Maybe<Array<Maybe<Scalars['ID']>>>; - users?: Maybe<Array<Maybe<Scalars['ID']>>>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; +export type ResponseCollectionMeta = { + __typename?: 'ResponseCollectionMeta'; + pagination: Pagination; }; -export type SettingInput = { +export type Setting = { + __typename?: 'Setting'; gtm_id?: Maybe<Scalars['String']>; about_link?: Maybe<Scalars['String']>; - announcement?: Maybe<Scalars['String']>; faq_link?: Maybe<Scalars['String']>; - localizations?: Maybe<Array<Maybe<Scalars['ID']>>>; + announcement?: Maybe<Scalars['String']>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; + localizations?: Maybe<SettingRelationResponseCollection>; locale?: Maybe<Scalars['String']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; }; -export type Settings = { - __typename?: 'Settings'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; +export type SettingEntity = { + __typename?: 'SettingEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<Setting>; +}; + +export type SettingEntityResponse = { + __typename?: 'SettingEntityResponse'; + data?: Maybe<SettingEntity>; +}; + +export type SettingInput = { gtm_id?: Maybe<Scalars['String']>; about_link?: Maybe<Scalars['String']>; - announcement?: Maybe<Scalars['String']>; faq_link?: Maybe<Scalars['String']>; - locale?: Maybe<Scalars['String']>; - localizations?: Maybe<Array<Maybe<Settings>>>; + announcement?: Maybe<Scalars['String']>; }; +export type SettingRelationResponseCollection = { + __typename?: 'SettingRelationResponseCollection'; + data: Array<SettingEntity>; +}; -export type SettingsLocalizationsArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; +export type StringFilterInput = { + and?: Maybe<Array<Maybe<Scalars['String']>>>; + or?: Maybe<Array<Maybe<Scalars['String']>>>; + not?: Maybe<StringFilterInput>; + eq?: Maybe<Scalars['String']>; + eqi?: Maybe<Scalars['String']>; + ne?: Maybe<Scalars['String']>; + startsWith?: Maybe<Scalars['String']>; + endsWith?: Maybe<Scalars['String']>; + contains?: Maybe<Scalars['String']>; + notContains?: Maybe<Scalars['String']>; + containsi?: Maybe<Scalars['String']>; + notContainsi?: Maybe<Scalars['String']>; + gt?: Maybe<Scalars['String']>; + gte?: Maybe<Scalars['String']>; + lt?: Maybe<Scalars['String']>; + lte?: Maybe<Scalars['String']>; + null?: Maybe<Scalars['Boolean']>; + notNull?: Maybe<Scalars['Boolean']>; + in?: Maybe<Array<Maybe<Scalars['String']>>>; + notIn?: Maybe<Array<Maybe<Scalars['String']>>>; + between?: Maybe<Array<Maybe<Scalars['String']>>>; }; - export type Travel = { __typename?: 'Travel'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; meeting?: Maybe<Scalars['String']>; departure?: Maybe<Scalars['DateTime']>; details?: Maybe<Scalars['String']>; - passengersCompo?: Maybe<Array<Maybe<ComponentPassengerPassenger>>>; - event?: Maybe<Event>; vehicleName?: Maybe<Scalars['String']>; seats?: Maybe<Scalars['Int']>; phone_number?: Maybe<Scalars['String']>; - passengers?: Maybe<Array<Maybe<Passenger>>>; + event?: Maybe<EventEntityResponse>; + passengers?: Maybe<PassengerRelationResponseCollection>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; export type TravelPassengersArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; -}; - -export type TravelAggregator = { - __typename?: 'TravelAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; - sum?: Maybe<TravelAggregatorSum>; - avg?: Maybe<TravelAggregatorAvg>; - min?: Maybe<TravelAggregatorMin>; - max?: Maybe<TravelAggregatorMax>; -}; - -export type TravelAggregatorAvg = { - __typename?: 'TravelAggregatorAvg'; - seats?: Maybe<Scalars['Float']>; -}; - -export type TravelAggregatorMax = { - __typename?: 'TravelAggregatorMax'; - seats?: Maybe<Scalars['Float']>; -}; - -export type TravelAggregatorMin = { - __typename?: 'TravelAggregatorMin'; - seats?: Maybe<Scalars['Float']>; + filters?: Maybe<PassengerFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type TravelAggregatorSum = { - __typename?: 'TravelAggregatorSum'; - seats?: Maybe<Scalars['Float']>; +export type TravelEntity = { + __typename?: 'TravelEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<Travel>; }; -export type TravelConnection = { - __typename?: 'TravelConnection'; - values?: Maybe<Array<Maybe<Travel>>>; - groupBy?: Maybe<TravelGroupBy>; - aggregate?: Maybe<TravelAggregator>; +export type TravelEntityResponse = { + __typename?: 'TravelEntityResponse'; + data?: Maybe<TravelEntity>; }; -export type TravelConnectionCreated_At = { - __typename?: 'TravelConnectionCreated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelConnectionDeparture = { - __typename?: 'TravelConnectionDeparture'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelConnectionDetails = { - __typename?: 'TravelConnectionDetails'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelConnectionEvent = { - __typename?: 'TravelConnectionEvent'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelConnectionId = { - __typename?: 'TravelConnectionId'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelConnectionMeeting = { - __typename?: 'TravelConnectionMeeting'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelConnectionPhone_Number = { - __typename?: 'TravelConnectionPhone_number'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelConnectionSeats = { - __typename?: 'TravelConnectionSeats'; - key?: Maybe<Scalars['Int']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelConnectionUpdated_At = { - __typename?: 'TravelConnectionUpdated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelConnectionVehicleName = { - __typename?: 'TravelConnectionVehicleName'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<TravelConnection>; -}; - -export type TravelGroupBy = { - __typename?: 'TravelGroupBy'; - id?: Maybe<Array<Maybe<TravelConnectionId>>>; - created_at?: Maybe<Array<Maybe<TravelConnectionCreated_At>>>; - updated_at?: Maybe<Array<Maybe<TravelConnectionUpdated_At>>>; - meeting?: Maybe<Array<Maybe<TravelConnectionMeeting>>>; - departure?: Maybe<Array<Maybe<TravelConnectionDeparture>>>; - details?: Maybe<Array<Maybe<TravelConnectionDetails>>>; - event?: Maybe<Array<Maybe<TravelConnectionEvent>>>; - vehicleName?: Maybe<Array<Maybe<TravelConnectionVehicleName>>>; - seats?: Maybe<Array<Maybe<TravelConnectionSeats>>>; - phone_number?: Maybe<Array<Maybe<TravelConnectionPhone_Number>>>; +export type TravelFiltersInput = { + id?: Maybe<IdFilterInput>; + meeting?: Maybe<StringFilterInput>; + departure?: Maybe<DateTimeFilterInput>; + details?: Maybe<StringFilterInput>; + vehicleName?: Maybe<StringFilterInput>; + seats?: Maybe<IntFilterInput>; + phone_number?: Maybe<StringFilterInput>; + event?: Maybe<EventFiltersInput>; + passengers?: Maybe<PassengerFiltersInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<TravelFiltersInput>>>; + or?: Maybe<Array<Maybe<TravelFiltersInput>>>; + not?: Maybe<TravelFiltersInput>; }; export type TravelInput = { meeting?: Maybe<Scalars['String']>; departure?: Maybe<Scalars['DateTime']>; details?: Maybe<Scalars['String']>; - passengersCompo?: Maybe<Array<Maybe<ComponentPassengerPassengerInput>>>; - event?: Maybe<Scalars['ID']>; vehicleName?: Maybe<Scalars['String']>; seats?: Maybe<Scalars['Int']>; phone_number?: Maybe<Scalars['String']>; + event?: Maybe<Scalars['ID']>; passengers?: Maybe<Array<Maybe<Scalars['ID']>>>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; - createVehicle?: Maybe<Scalars['Boolean']>; +}; + +export type TravelRelationResponseCollection = { + __typename?: 'TravelRelationResponseCollection'; + data: Array<TravelEntity>; }; export type UploadFile = { __typename?: 'UploadFile'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; name: Scalars['String']; alternativeText?: Maybe<Scalars['String']>; caption?: Maybe<Scalars['String']>;

@@ -1174,216 +1088,163 @@ url: Scalars['String'];

previewUrl?: Maybe<Scalars['String']>; provider: Scalars['String']; provider_metadata?: Maybe<Scalars['JSON']>; - related?: Maybe<Array<Maybe<Morph>>>; + related?: Maybe<Array<Maybe<GenericMorph>>>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; - -export type UploadFileRelatedArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; -}; - -export type UploadFileAggregator = { - __typename?: 'UploadFileAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; - sum?: Maybe<UploadFileAggregatorSum>; - avg?: Maybe<UploadFileAggregatorAvg>; - min?: Maybe<UploadFileAggregatorMin>; - max?: Maybe<UploadFileAggregatorMax>; +export type UploadFileEntity = { + __typename?: 'UploadFileEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<UploadFile>; }; -export type UploadFileAggregatorAvg = { - __typename?: 'UploadFileAggregatorAvg'; - width?: Maybe<Scalars['Float']>; - height?: Maybe<Scalars['Float']>; - size?: Maybe<Scalars['Float']>; +export type UploadFileEntityResponse = { + __typename?: 'UploadFileEntityResponse'; + data?: Maybe<UploadFileEntity>; }; -export type UploadFileAggregatorMax = { - __typename?: 'UploadFileAggregatorMax'; - width?: Maybe<Scalars['Float']>; - height?: Maybe<Scalars['Float']>; - size?: Maybe<Scalars['Float']>; +export type UploadFileEntityResponseCollection = { + __typename?: 'UploadFileEntityResponseCollection'; + data: Array<UploadFileEntity>; + meta: ResponseCollectionMeta; }; -export type UploadFileAggregatorMin = { - __typename?: 'UploadFileAggregatorMin'; - width?: Maybe<Scalars['Float']>; - height?: Maybe<Scalars['Float']>; - size?: Maybe<Scalars['Float']>; +export type UploadFileFiltersInput = { + id?: Maybe<IdFilterInput>; + name?: Maybe<StringFilterInput>; + alternativeText?: Maybe<StringFilterInput>; + caption?: Maybe<StringFilterInput>; + width?: Maybe<IntFilterInput>; + height?: Maybe<IntFilterInput>; + formats?: Maybe<JsonFilterInput>; + hash?: Maybe<StringFilterInput>; + ext?: Maybe<StringFilterInput>; + mime?: Maybe<StringFilterInput>; + size?: Maybe<FloatFilterInput>; + url?: Maybe<StringFilterInput>; + previewUrl?: Maybe<StringFilterInput>; + provider?: Maybe<StringFilterInput>; + provider_metadata?: Maybe<JsonFilterInput>; + folder?: Maybe<UploadFolderFiltersInput>; + folderPath?: Maybe<StringFilterInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<UploadFileFiltersInput>>>; + or?: Maybe<Array<Maybe<UploadFileFiltersInput>>>; + not?: Maybe<UploadFileFiltersInput>; }; -export type UploadFileAggregatorSum = { - __typename?: 'UploadFileAggregatorSum'; - width?: Maybe<Scalars['Float']>; - height?: Maybe<Scalars['Float']>; +export type UploadFileInput = { + name?: Maybe<Scalars['String']>; + alternativeText?: Maybe<Scalars['String']>; + caption?: Maybe<Scalars['String']>; + width?: Maybe<Scalars['Int']>; + height?: Maybe<Scalars['Int']>; + formats?: Maybe<Scalars['JSON']>; + hash?: Maybe<Scalars['String']>; + ext?: Maybe<Scalars['String']>; + mime?: Maybe<Scalars['String']>; size?: Maybe<Scalars['Float']>; -}; - -export type UploadFileConnection = { - __typename?: 'UploadFileConnection'; - values?: Maybe<Array<Maybe<UploadFile>>>; - groupBy?: Maybe<UploadFileGroupBy>; - aggregate?: Maybe<UploadFileAggregator>; -}; - -export type UploadFileConnectionAlternativeText = { - __typename?: 'UploadFileConnectionAlternativeText'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UploadFileConnection>; -}; - -export type UploadFileConnectionCaption = { - __typename?: 'UploadFileConnectionCaption'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UploadFileConnection>; -}; - -export type UploadFileConnectionCreated_At = { - __typename?: 'UploadFileConnectionCreated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<UploadFileConnection>; -}; - -export type UploadFileConnectionExt = { - __typename?: 'UploadFileConnectionExt'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UploadFileConnection>; -}; - -export type UploadFileConnectionFormats = { - __typename?: 'UploadFileConnectionFormats'; - key?: Maybe<Scalars['JSON']>; - connection?: Maybe<UploadFileConnection>; + url?: Maybe<Scalars['String']>; + previewUrl?: Maybe<Scalars['String']>; + provider?: Maybe<Scalars['String']>; + provider_metadata?: Maybe<Scalars['JSON']>; + folder?: Maybe<Scalars['ID']>; + folderPath?: Maybe<Scalars['String']>; }; -export type UploadFileConnectionHash = { - __typename?: 'UploadFileConnectionHash'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFileRelationResponseCollection = { + __typename?: 'UploadFileRelationResponseCollection'; + data: Array<UploadFileEntity>; }; -export type UploadFileConnectionHeight = { - __typename?: 'UploadFileConnectionHeight'; - key?: Maybe<Scalars['Int']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFolder = { + __typename?: 'UploadFolder'; + name: Scalars['String']; + pathId: Scalars['Int']; + parent?: Maybe<UploadFolderEntityResponse>; + children?: Maybe<UploadFolderRelationResponseCollection>; + files?: Maybe<UploadFileRelationResponseCollection>; + path: Scalars['String']; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; -export type UploadFileConnectionId = { - __typename?: 'UploadFileConnectionId'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<UploadFileConnection>; -}; -export type UploadFileConnectionMime = { - __typename?: 'UploadFileConnectionMime'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFolderChildrenArgs = { + filters?: Maybe<UploadFolderFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type UploadFileConnectionName = { - __typename?: 'UploadFileConnectionName'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UploadFileConnection>; -}; -export type UploadFileConnectionPreviewUrl = { - __typename?: 'UploadFileConnectionPreviewUrl'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFolderFilesArgs = { + filters?: Maybe<UploadFileFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type UploadFileConnectionProvider = { - __typename?: 'UploadFileConnectionProvider'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFolderEntity = { + __typename?: 'UploadFolderEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<UploadFolder>; }; -export type UploadFileConnectionProvider_Metadata = { - __typename?: 'UploadFileConnectionProvider_metadata'; - key?: Maybe<Scalars['JSON']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFolderEntityResponse = { + __typename?: 'UploadFolderEntityResponse'; + data?: Maybe<UploadFolderEntity>; }; -export type UploadFileConnectionSize = { - __typename?: 'UploadFileConnectionSize'; - key?: Maybe<Scalars['Float']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFolderEntityResponseCollection = { + __typename?: 'UploadFolderEntityResponseCollection'; + data: Array<UploadFolderEntity>; + meta: ResponseCollectionMeta; }; -export type UploadFileConnectionUpdated_At = { - __typename?: 'UploadFileConnectionUpdated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFolderFiltersInput = { + id?: Maybe<IdFilterInput>; + name?: Maybe<StringFilterInput>; + pathId?: Maybe<IntFilterInput>; + parent?: Maybe<UploadFolderFiltersInput>; + children?: Maybe<UploadFolderFiltersInput>; + files?: Maybe<UploadFileFiltersInput>; + path?: Maybe<StringFilterInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<UploadFolderFiltersInput>>>; + or?: Maybe<Array<Maybe<UploadFolderFiltersInput>>>; + not?: Maybe<UploadFolderFiltersInput>; }; -export type UploadFileConnectionUrl = { - __typename?: 'UploadFileConnectionUrl'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFolderInput = { + name?: Maybe<Scalars['String']>; + pathId?: Maybe<Scalars['Int']>; + parent?: Maybe<Scalars['ID']>; + children?: Maybe<Array<Maybe<Scalars['ID']>>>; + files?: Maybe<Array<Maybe<Scalars['ID']>>>; + path?: Maybe<Scalars['String']>; }; -export type UploadFileConnectionWidth = { - __typename?: 'UploadFileConnectionWidth'; - key?: Maybe<Scalars['Int']>; - connection?: Maybe<UploadFileConnection>; +export type UploadFolderRelationResponseCollection = { + __typename?: 'UploadFolderRelationResponseCollection'; + data: Array<UploadFolderEntity>; }; -export type UploadFileGroupBy = { - __typename?: 'UploadFileGroupBy'; - id?: Maybe<Array<Maybe<UploadFileConnectionId>>>; - created_at?: Maybe<Array<Maybe<UploadFileConnectionCreated_At>>>; - updated_at?: Maybe<Array<Maybe<UploadFileConnectionUpdated_At>>>; - name?: Maybe<Array<Maybe<UploadFileConnectionName>>>; - alternativeText?: Maybe<Array<Maybe<UploadFileConnectionAlternativeText>>>; - caption?: Maybe<Array<Maybe<UploadFileConnectionCaption>>>; - width?: Maybe<Array<Maybe<UploadFileConnectionWidth>>>; - height?: Maybe<Array<Maybe<UploadFileConnectionHeight>>>; - formats?: Maybe<Array<Maybe<UploadFileConnectionFormats>>>; - hash?: Maybe<Array<Maybe<UploadFileConnectionHash>>>; - ext?: Maybe<Array<Maybe<UploadFileConnectionExt>>>; - mime?: Maybe<Array<Maybe<UploadFileConnectionMime>>>; - size?: Maybe<Array<Maybe<UploadFileConnectionSize>>>; - url?: Maybe<Array<Maybe<UploadFileConnectionUrl>>>; - previewUrl?: Maybe<Array<Maybe<UploadFileConnectionPreviewUrl>>>; - provider?: Maybe<Array<Maybe<UploadFileConnectionProvider>>>; - provider_metadata?: Maybe<Array<Maybe<UploadFileConnectionProvider_Metadata>>>; -}; - -export type UserInput = { - username: Scalars['String']; - firstName?: Maybe<Scalars['String']>; - lastName?: Maybe<Scalars['String']>; - email: Scalars['String']; - provider?: Maybe<Scalars['String']>; - password?: Maybe<Scalars['String']>; - resetPasswordToken?: Maybe<Scalars['String']>; - confirmed?: Maybe<Scalars['Boolean']>; - blocked?: Maybe<Scalars['Boolean']>; - role?: Maybe<Scalars['ID']>; - confirmationToken?: Maybe<Scalars['String']>; - events?: Maybe<Array<Maybe<Scalars['ID']>>>; - onboardingUser?: Maybe<Scalars['Boolean']>; - onboardingCreator?: Maybe<Scalars['Boolean']>; - lang?: Maybe<Enum_Userspermissionsuser_Lang>; - vehicles?: Maybe<Array<Maybe<Scalars['ID']>>>; - passengers?: Maybe<Array<Maybe<Scalars['ID']>>>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; +export type UsersPermissionsCreateRolePayload = { + __typename?: 'UsersPermissionsCreateRolePayload'; + ok: Scalars['Boolean']; }; -export type UserPermissionsPasswordPayload = { - __typename?: 'UserPermissionsPasswordPayload'; +export type UsersPermissionsDeleteRolePayload = { + __typename?: 'UsersPermissionsDeleteRolePayload'; ok: Scalars['Boolean']; }; export type UsersPermissionsLoginInput = { identifier: Scalars['String']; password: Scalars['String']; - provider?: Maybe<Scalars['String']>; + provider?: Scalars['String']; }; export type UsersPermissionsLoginPayload = {

@@ -1396,7 +1257,7 @@ export type UsersPermissionsMe = {

__typename?: 'UsersPermissionsMe'; id: Scalars['ID']; username: Scalars['String']; - email: Scalars['String']; + email?: Maybe<Scalars['String']>; confirmed?: Maybe<Scalars['Boolean']>; blocked?: Maybe<Scalars['Boolean']>; role?: Maybe<UsersPermissionsMeRole>;

@@ -1411,15 +1272,39 @@ description?: Maybe<Scalars['String']>;

type?: Maybe<Scalars['String']>; }; +export type UsersPermissionsPasswordPayload = { + __typename?: 'UsersPermissionsPasswordPayload'; + ok: Scalars['Boolean']; +}; + export type UsersPermissionsPermission = { __typename?: 'UsersPermissionsPermission'; - id: Scalars['ID']; - type: Scalars['String']; - controller: Scalars['String']; action: Scalars['String']; - enabled: Scalars['Boolean']; - policy?: Maybe<Scalars['String']>; - role?: Maybe<UsersPermissionsRole>; + role?: Maybe<UsersPermissionsRoleEntityResponse>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; +}; + +export type UsersPermissionsPermissionEntity = { + __typename?: 'UsersPermissionsPermissionEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<UsersPermissionsPermission>; +}; + +export type UsersPermissionsPermissionFiltersInput = { + id?: Maybe<IdFilterInput>; + action?: Maybe<StringFilterInput>; + role?: Maybe<UsersPermissionsRoleFiltersInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<UsersPermissionsPermissionFiltersInput>>>; + or?: Maybe<Array<Maybe<UsersPermissionsPermissionFiltersInput>>>; + not?: Maybe<UsersPermissionsPermissionFiltersInput>; +}; + +export type UsersPermissionsPermissionRelationResponseCollection = { + __typename?: 'UsersPermissionsPermissionRelationResponseCollection'; + data: Array<UsersPermissionsPermissionEntity>; }; export type UsersPermissionsRegisterInput = {

@@ -1433,718 +1318,211 @@ };

export type UsersPermissionsRole = { __typename?: 'UsersPermissionsRole'; - id: Scalars['ID']; name: Scalars['String']; description?: Maybe<Scalars['String']>; type?: Maybe<Scalars['String']>; - permissions?: Maybe<Array<Maybe<UsersPermissionsPermission>>>; - users?: Maybe<Array<Maybe<UsersPermissionsUser>>>; + permissions?: Maybe<UsersPermissionsPermissionRelationResponseCollection>; + users?: Maybe<UsersPermissionsUserRelationResponseCollection>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; export type UsersPermissionsRolePermissionsArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; + filters?: Maybe<UsersPermissionsPermissionFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; export type UsersPermissionsRoleUsersArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; + filters?: Maybe<UsersPermissionsUserFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type UsersPermissionsRoleAggregator = { - __typename?: 'UsersPermissionsRoleAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; -}; - -export type UsersPermissionsRoleConnection = { - __typename?: 'UsersPermissionsRoleConnection'; - values?: Maybe<Array<Maybe<UsersPermissionsRole>>>; - groupBy?: Maybe<UsersPermissionsRoleGroupBy>; - aggregate?: Maybe<UsersPermissionsRoleAggregator>; +export type UsersPermissionsRoleEntity = { + __typename?: 'UsersPermissionsRoleEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<UsersPermissionsRole>; }; -export type UsersPermissionsRoleConnectionDescription = { - __typename?: 'UsersPermissionsRoleConnectionDescription'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UsersPermissionsRoleConnection>; +export type UsersPermissionsRoleEntityResponse = { + __typename?: 'UsersPermissionsRoleEntityResponse'; + data?: Maybe<UsersPermissionsRoleEntity>; }; -export type UsersPermissionsRoleConnectionId = { - __typename?: 'UsersPermissionsRoleConnectionId'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<UsersPermissionsRoleConnection>; +export type UsersPermissionsRoleEntityResponseCollection = { + __typename?: 'UsersPermissionsRoleEntityResponseCollection'; + data: Array<UsersPermissionsRoleEntity>; + meta: ResponseCollectionMeta; }; -export type UsersPermissionsRoleConnectionName = { - __typename?: 'UsersPermissionsRoleConnectionName'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UsersPermissionsRoleConnection>; +export type UsersPermissionsRoleFiltersInput = { + id?: Maybe<IdFilterInput>; + name?: Maybe<StringFilterInput>; + description?: Maybe<StringFilterInput>; + type?: Maybe<StringFilterInput>; + permissions?: Maybe<UsersPermissionsPermissionFiltersInput>; + users?: Maybe<UsersPermissionsUserFiltersInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<UsersPermissionsRoleFiltersInput>>>; + or?: Maybe<Array<Maybe<UsersPermissionsRoleFiltersInput>>>; + not?: Maybe<UsersPermissionsRoleFiltersInput>; }; -export type UsersPermissionsRoleConnectionType = { - __typename?: 'UsersPermissionsRoleConnectionType'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UsersPermissionsRoleConnection>; +export type UsersPermissionsRoleInput = { + name?: Maybe<Scalars['String']>; + description?: Maybe<Scalars['String']>; + type?: Maybe<Scalars['String']>; + permissions?: Maybe<Array<Maybe<Scalars['ID']>>>; + users?: Maybe<Array<Maybe<Scalars['ID']>>>; }; -export type UsersPermissionsRoleGroupBy = { - __typename?: 'UsersPermissionsRoleGroupBy'; - id?: Maybe<Array<Maybe<UsersPermissionsRoleConnectionId>>>; - name?: Maybe<Array<Maybe<UsersPermissionsRoleConnectionName>>>; - description?: Maybe<Array<Maybe<UsersPermissionsRoleConnectionDescription>>>; - type?: Maybe<Array<Maybe<UsersPermissionsRoleConnectionType>>>; +export type UsersPermissionsUpdateRolePayload = { + __typename?: 'UsersPermissionsUpdateRolePayload'; + ok: Scalars['Boolean']; }; export type UsersPermissionsUser = { __typename?: 'UsersPermissionsUser'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; username: Scalars['String']; - firstName?: Maybe<Scalars['String']>; - lastName?: Maybe<Scalars['String']>; email: Scalars['String']; - provider?: Maybe<Scalars['String']>; confirmed?: Maybe<Scalars['Boolean']>; - blocked?: Maybe<Scalars['Boolean']>; - role?: Maybe<UsersPermissionsRole>; + role?: Maybe<UsersPermissionsRoleEntityResponse>; + events?: Maybe<EventRelationResponseCollection>; + vehicles?: Maybe<VehicleRelationResponseCollection>; + firstName?: Maybe<Scalars['String']>; + lastName?: Maybe<Scalars['String']>; onboardingUser?: Maybe<Scalars['Boolean']>; onboardingCreator?: Maybe<Scalars['Boolean']>; lang?: Maybe<Enum_Userspermissionsuser_Lang>; - events?: Maybe<Array<Maybe<Event>>>; - vehicles?: Maybe<Array<Maybe<Vehicle>>>; - passengers?: Maybe<Array<Maybe<Passenger>>>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; export type UsersPermissionsUserEventsArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; + filters?: Maybe<EventFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; export type UsersPermissionsUserVehiclesArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; -}; - - -export type UsersPermissionsUserPassengersArgs = { - sort?: Maybe<Scalars['String']>; - limit?: Maybe<Scalars['Int']>; - start?: Maybe<Scalars['Int']>; - where?: Maybe<Scalars['JSON']>; -}; - -export type UsersPermissionsUserAggregator = { - __typename?: 'UsersPermissionsUserAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; -}; - -export type UsersPermissionsUserConnection = { - __typename?: 'UsersPermissionsUserConnection'; - values?: Maybe<Array<Maybe<UsersPermissionsUser>>>; - groupBy?: Maybe<UsersPermissionsUserGroupBy>; - aggregate?: Maybe<UsersPermissionsUserAggregator>; -}; - -export type UsersPermissionsUserConnectionBlocked = { - __typename?: 'UsersPermissionsUserConnectionBlocked'; - key?: Maybe<Scalars['Boolean']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionConfirmed = { - __typename?: 'UsersPermissionsUserConnectionConfirmed'; - key?: Maybe<Scalars['Boolean']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionCreated_At = { - __typename?: 'UsersPermissionsUserConnectionCreated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionEmail = { - __typename?: 'UsersPermissionsUserConnectionEmail'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionFirstName = { - __typename?: 'UsersPermissionsUserConnectionFirstName'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionId = { - __typename?: 'UsersPermissionsUserConnectionId'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionLang = { - __typename?: 'UsersPermissionsUserConnectionLang'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionLastName = { - __typename?: 'UsersPermissionsUserConnectionLastName'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionOnboardingCreator = { - __typename?: 'UsersPermissionsUserConnectionOnboardingCreator'; - key?: Maybe<Scalars['Boolean']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionOnboardingUser = { - __typename?: 'UsersPermissionsUserConnectionOnboardingUser'; - key?: Maybe<Scalars['Boolean']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionProvider = { - __typename?: 'UsersPermissionsUserConnectionProvider'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionRole = { - __typename?: 'UsersPermissionsUserConnectionRole'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserConnectionUpdated_At = { - __typename?: 'UsersPermissionsUserConnectionUpdated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<UsersPermissionsUserConnection>; + filters?: Maybe<VehicleFiltersInput>; + pagination?: Maybe<PaginationArg>; + sort?: Maybe<Array<Maybe<Scalars['String']>>>; }; -export type UsersPermissionsUserConnectionUsername = { - __typename?: 'UsersPermissionsUserConnectionUsername'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<UsersPermissionsUserConnection>; -}; - -export type UsersPermissionsUserGroupBy = { - __typename?: 'UsersPermissionsUserGroupBy'; - id?: Maybe<Array<Maybe<UsersPermissionsUserConnectionId>>>; - created_at?: Maybe<Array<Maybe<UsersPermissionsUserConnectionCreated_At>>>; - updated_at?: Maybe<Array<Maybe<UsersPermissionsUserConnectionUpdated_At>>>; - username?: Maybe<Array<Maybe<UsersPermissionsUserConnectionUsername>>>; - firstName?: Maybe<Array<Maybe<UsersPermissionsUserConnectionFirstName>>>; - lastName?: Maybe<Array<Maybe<UsersPermissionsUserConnectionLastName>>>; - email?: Maybe<Array<Maybe<UsersPermissionsUserConnectionEmail>>>; - provider?: Maybe<Array<Maybe<UsersPermissionsUserConnectionProvider>>>; - confirmed?: Maybe<Array<Maybe<UsersPermissionsUserConnectionConfirmed>>>; - blocked?: Maybe<Array<Maybe<UsersPermissionsUserConnectionBlocked>>>; - role?: Maybe<Array<Maybe<UsersPermissionsUserConnectionRole>>>; - onboardingUser?: Maybe<Array<Maybe<UsersPermissionsUserConnectionOnboardingUser>>>; - onboardingCreator?: Maybe<Array<Maybe<UsersPermissionsUserConnectionOnboardingCreator>>>; - lang?: Maybe<Array<Maybe<UsersPermissionsUserConnectionLang>>>; -}; - -export type Vehicle = { - __typename?: 'Vehicle'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; - name: Scalars['String']; - seats?: Maybe<Scalars['Int']>; - phone_number?: Maybe<Scalars['String']>; - user?: Maybe<UsersPermissionsUser>; -}; - -export type VehicleAggregator = { - __typename?: 'VehicleAggregator'; - count?: Maybe<Scalars['Int']>; - totalCount?: Maybe<Scalars['Int']>; - sum?: Maybe<VehicleAggregatorSum>; - avg?: Maybe<VehicleAggregatorAvg>; - min?: Maybe<VehicleAggregatorMin>; - max?: Maybe<VehicleAggregatorMax>; -}; - -export type VehicleAggregatorAvg = { - __typename?: 'VehicleAggregatorAvg'; - seats?: Maybe<Scalars['Float']>; -}; - -export type VehicleAggregatorMax = { - __typename?: 'VehicleAggregatorMax'; - seats?: Maybe<Scalars['Float']>; -}; - -export type VehicleAggregatorMin = { - __typename?: 'VehicleAggregatorMin'; - seats?: Maybe<Scalars['Float']>; -}; - -export type VehicleAggregatorSum = { - __typename?: 'VehicleAggregatorSum'; - seats?: Maybe<Scalars['Float']>; -}; - -export type VehicleConnection = { - __typename?: 'VehicleConnection'; - values?: Maybe<Array<Maybe<Vehicle>>>; - groupBy?: Maybe<VehicleGroupBy>; - aggregate?: Maybe<VehicleAggregator>; -}; - -export type VehicleConnectionCreated_At = { - __typename?: 'VehicleConnectionCreated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<VehicleConnection>; -}; - -export type VehicleConnectionId = { - __typename?: 'VehicleConnectionId'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<VehicleConnection>; -}; - -export type VehicleConnectionName = { - __typename?: 'VehicleConnectionName'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<VehicleConnection>; -}; - -export type VehicleConnectionPhone_Number = { - __typename?: 'VehicleConnectionPhone_number'; - key?: Maybe<Scalars['String']>; - connection?: Maybe<VehicleConnection>; -}; - -export type VehicleConnectionSeats = { - __typename?: 'VehicleConnectionSeats'; - key?: Maybe<Scalars['Int']>; - connection?: Maybe<VehicleConnection>; -}; - -export type VehicleConnectionUpdated_At = { - __typename?: 'VehicleConnectionUpdated_at'; - key?: Maybe<Scalars['DateTime']>; - connection?: Maybe<VehicleConnection>; -}; - -export type VehicleConnectionUser = { - __typename?: 'VehicleConnectionUser'; - key?: Maybe<Scalars['ID']>; - connection?: Maybe<VehicleConnection>; -}; - -export type VehicleGroupBy = { - __typename?: 'VehicleGroupBy'; - id?: Maybe<Array<Maybe<VehicleConnectionId>>>; - created_at?: Maybe<Array<Maybe<VehicleConnectionCreated_At>>>; - updated_at?: Maybe<Array<Maybe<VehicleConnectionUpdated_At>>>; - name?: Maybe<Array<Maybe<VehicleConnectionName>>>; - seats?: Maybe<Array<Maybe<VehicleConnectionSeats>>>; - phone_number?: Maybe<Array<Maybe<VehicleConnectionPhone_Number>>>; - user?: Maybe<Array<Maybe<VehicleConnectionUser>>>; -}; - -export type VehicleInput = { - name: Scalars['String']; - seats?: Maybe<Scalars['Int']>; - phone_number?: Maybe<Scalars['String']>; - user?: Maybe<Scalars['ID']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; -}; - -export type CreateEventInput = { - data?: Maybe<EventInput>; -}; - -export type CreateEventPayload = { - __typename?: 'createEventPayload'; - event?: Maybe<Event>; -}; - -export type CreatePageInput = { - data?: Maybe<PageInput>; -}; - -export type CreatePagePayload = { - __typename?: 'createPagePayload'; - page?: Maybe<Page>; -}; - -export type CreatePassengerInput = { - data?: Maybe<PassengerInput>; -}; - -export type CreatePassengerPayload = { - __typename?: 'createPassengerPayload'; - passenger?: Maybe<Passenger>; -}; - -export type CreateRoleInput = { - data?: Maybe<RoleInput>; -}; - -export type CreateRolePayload = { - __typename?: 'createRolePayload'; - role?: Maybe<UsersPermissionsRole>; -}; - -export type CreateTravelInput = { - data?: Maybe<TravelInput>; -}; - -export type CreateTravelPayload = { - __typename?: 'createTravelPayload'; - travel?: Maybe<Travel>; -}; - -export type CreateUserInput = { - data?: Maybe<UserInput>; -}; - -export type CreateUserPayload = { - __typename?: 'createUserPayload'; - user?: Maybe<UsersPermissionsUser>; -}; - -export type CreateVehicleInput = { - data?: Maybe<VehicleInput>; -}; - -export type CreateVehiclePayload = { - __typename?: 'createVehiclePayload'; - vehicle?: Maybe<Vehicle>; -}; - -export type DeleteEventInput = { - where?: Maybe<InputId>; -}; - -export type DeleteEventPayload = { - __typename?: 'deleteEventPayload'; - event?: Maybe<Event>; -}; - -export type DeleteFileInput = { - where?: Maybe<InputId>; -}; - -export type DeleteFilePayload = { - __typename?: 'deleteFilePayload'; - file?: Maybe<UploadFile>; -}; - -export type DeletePageInput = { - where?: Maybe<InputId>; -}; - -export type DeletePagePayload = { - __typename?: 'deletePagePayload'; - page?: Maybe<Page>; -}; - -export type DeletePassengerInput = { - where?: Maybe<InputId>; -}; - -export type DeletePassengerPayload = { - __typename?: 'deletePassengerPayload'; - passenger?: Maybe<Passenger>; -}; - -export type DeleteRoleInput = { - where?: Maybe<InputId>; -}; - -export type DeleteRolePayload = { - __typename?: 'deleteRolePayload'; - role?: Maybe<UsersPermissionsRole>; -}; - -export type DeleteSettingPayload = { - __typename?: 'deleteSettingPayload'; - setting?: Maybe<Settings>; -}; - -export type DeleteTravelInput = { - where?: Maybe<InputId>; -}; - -export type DeleteTravelPayload = { - __typename?: 'deleteTravelPayload'; - travel?: Maybe<Travel>; -}; - -export type DeleteUserInput = { - where?: Maybe<InputId>; -}; - -export type DeleteUserPayload = { - __typename?: 'deleteUserPayload'; - user?: Maybe<UsersPermissionsUser>; -}; - -export type DeleteVehicleInput = { - where?: Maybe<InputId>; -}; - -export type DeleteVehiclePayload = { - __typename?: 'deleteVehiclePayload'; - vehicle?: Maybe<Vehicle>; -}; - -export type EditComponentPassengerPassengerInput = { +export type UsersPermissionsUserEntity = { + __typename?: 'UsersPermissionsUserEntity'; id?: Maybe<Scalars['ID']>; - name?: Maybe<Scalars['String']>; - email?: Maybe<Scalars['String']>; - location?: Maybe<Scalars['String']>; - user?: Maybe<Scalars['ID']>; -}; - -export type EditEmailTemplateInput = { - sourceCodeToTemplateId?: Maybe<Scalars['Int']>; - design?: Maybe<Scalars['JSON']>; - name?: Maybe<Scalars['String']>; - subject?: Maybe<Scalars['String']>; - bodyHtml?: Maybe<Scalars['String']>; - bodyText?: Maybe<Scalars['String']>; - enabled?: Maybe<Scalars['Boolean']>; - tags?: Maybe<Scalars['JSON']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; -}; - -export type EditEventInput = { - name?: Maybe<Scalars['String']>; - email?: Maybe<Scalars['String']>; - date?: Maybe<Scalars['Date']>; - address?: Maybe<Scalars['String']>; - position?: Maybe<Scalars['JSON']>; - users?: Maybe<Array<Maybe<Scalars['ID']>>>; - uuid?: Maybe<Scalars['String']>; - waitingList?: Maybe<Array<Maybe<EditComponentPassengerPassengerInput>>>; - travels?: Maybe<Array<Maybe<Scalars['ID']>>>; - description?: Maybe<Scalars['String']>; - waitingPassengers?: Maybe<Array<Maybe<Scalars['ID']>>>; - newsletter?: Maybe<Scalars['Boolean']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; -}; - -export type EditFileInput = { - name?: Maybe<Scalars['String']>; - alternativeText?: Maybe<Scalars['String']>; - caption?: Maybe<Scalars['String']>; - width?: Maybe<Scalars['Int']>; - height?: Maybe<Scalars['Int']>; - formats?: Maybe<Scalars['JSON']>; - hash?: Maybe<Scalars['String']>; - ext?: Maybe<Scalars['String']>; - mime?: Maybe<Scalars['String']>; - size?: Maybe<Scalars['Float']>; - url?: Maybe<Scalars['String']>; - previewUrl?: Maybe<Scalars['String']>; - provider?: Maybe<Scalars['String']>; - provider_metadata?: Maybe<Scalars['JSON']>; - related?: Maybe<Array<Maybe<Scalars['ID']>>>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; -}; - -export type EditLocaleInput = { - name?: Maybe<Scalars['String']>; - code?: Maybe<Scalars['String']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; + attributes?: Maybe<UsersPermissionsUser>; }; -export type EditPageInput = { - name?: Maybe<Scalars['String']>; - content?: Maybe<Scalars['String']>; - type?: Maybe<Enum_Page_Type>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; +export type UsersPermissionsUserEntityResponse = { + __typename?: 'UsersPermissionsUserEntityResponse'; + data?: Maybe<UsersPermissionsUserEntity>; }; -export type EditPassengerInput = { - name?: Maybe<Scalars['String']>; - email?: Maybe<Scalars['String']>; - location?: Maybe<Scalars['String']>; - user?: Maybe<Scalars['ID']>; - event?: Maybe<Scalars['ID']>; - travel?: Maybe<Scalars['ID']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; +export type UsersPermissionsUserFiltersInput = { + id?: Maybe<IdFilterInput>; + username?: Maybe<StringFilterInput>; + email?: Maybe<StringFilterInput>; + provider?: Maybe<StringFilterInput>; + password?: Maybe<StringFilterInput>; + resetPasswordToken?: Maybe<StringFilterInput>; + confirmationToken?: Maybe<StringFilterInput>; + confirmed?: Maybe<BooleanFilterInput>; + blocked?: Maybe<BooleanFilterInput>; + role?: Maybe<UsersPermissionsRoleFiltersInput>; + events?: Maybe<EventFiltersInput>; + passengers?: Maybe<PassengerFiltersInput>; + vehicles?: Maybe<VehicleFiltersInput>; + firstName?: Maybe<StringFilterInput>; + lastName?: Maybe<StringFilterInput>; + onboardingUser?: Maybe<BooleanFilterInput>; + onboardingCreator?: Maybe<BooleanFilterInput>; + lang?: Maybe<StringFilterInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<UsersPermissionsUserFiltersInput>>>; + or?: Maybe<Array<Maybe<UsersPermissionsUserFiltersInput>>>; + not?: Maybe<UsersPermissionsUserFiltersInput>; }; -export type EditRoleInput = { - name?: Maybe<Scalars['String']>; - description?: Maybe<Scalars['String']>; - type?: Maybe<Scalars['String']>; - permissions?: Maybe<Array<Maybe<Scalars['ID']>>>; - users?: Maybe<Array<Maybe<Scalars['ID']>>>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; -}; - -export type EditSettingInput = { - gtm_id?: Maybe<Scalars['String']>; - about_link?: Maybe<Scalars['String']>; - announcement?: Maybe<Scalars['String']>; - faq_link?: Maybe<Scalars['String']>; - localizations?: Maybe<Array<Maybe<Scalars['ID']>>>; - locale?: Maybe<Scalars['String']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; -}; - -export type EditTravelInput = { - meeting?: Maybe<Scalars['String']>; - departure?: Maybe<Scalars['DateTime']>; - details?: Maybe<Scalars['String']>; - passengersCompo?: Maybe<Array<Maybe<EditComponentPassengerPassengerInput>>>; - event?: Maybe<Scalars['ID']>; - vehicleName?: Maybe<Scalars['String']>; - seats?: Maybe<Scalars['Int']>; - phone_number?: Maybe<Scalars['String']>; - passengers?: Maybe<Array<Maybe<Scalars['ID']>>>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; -}; - -export type EditUserInput = { +export type UsersPermissionsUserInput = { username?: Maybe<Scalars['String']>; - firstName?: Maybe<Scalars['String']>; - lastName?: Maybe<Scalars['String']>; email?: Maybe<Scalars['String']>; provider?: Maybe<Scalars['String']>; password?: Maybe<Scalars['String']>; resetPasswordToken?: Maybe<Scalars['String']>; + confirmationToken?: Maybe<Scalars['String']>; confirmed?: Maybe<Scalars['Boolean']>; blocked?: Maybe<Scalars['Boolean']>; role?: Maybe<Scalars['ID']>; - confirmationToken?: Maybe<Scalars['String']>; events?: Maybe<Array<Maybe<Scalars['ID']>>>; + passengers?: Maybe<Array<Maybe<Scalars['ID']>>>; + vehicles?: Maybe<Array<Maybe<Scalars['ID']>>>; + firstName?: Maybe<Scalars['String']>; + lastName?: Maybe<Scalars['String']>; onboardingUser?: Maybe<Scalars['Boolean']>; onboardingCreator?: Maybe<Scalars['Boolean']>; lang?: Maybe<Enum_Userspermissionsuser_Lang>; - vehicles?: Maybe<Array<Maybe<Scalars['ID']>>>; - passengers?: Maybe<Array<Maybe<Scalars['ID']>>>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; - old_password?: Maybe<Scalars['String']>; + oldPassword?: Maybe<Scalars['String']>; +}; + +export type UsersPermissionsUserRelationResponseCollection = { + __typename?: 'UsersPermissionsUserRelationResponseCollection'; + data: Array<UsersPermissionsUserEntity>; }; -export type EditVehicleInput = { - name?: Maybe<Scalars['String']>; +export type Vehicle = { + __typename?: 'Vehicle'; + name: Scalars['String']; seats?: Maybe<Scalars['Int']>; phone_number?: Maybe<Scalars['String']>; - user?: Maybe<Scalars['ID']>; - created_by?: Maybe<Scalars['ID']>; - updated_by?: Maybe<Scalars['ID']>; -}; - -export type UpdateEventByUuidInput = { - where?: Maybe<InputUuid>; - data?: Maybe<EditEventInput>; -}; - -export type UpdateEventInput = { - where?: Maybe<InputId>; - data?: Maybe<EditEventInput>; -}; - -export type UpdateEventPayload = { - __typename?: 'updateEventPayload'; - event?: Maybe<Event>; -}; - -export type UpdatePageInput = { - where?: Maybe<InputId>; - data?: Maybe<EditPageInput>; -}; - -export type UpdatePagePayload = { - __typename?: 'updatePagePayload'; - page?: Maybe<Page>; -}; - -export type UpdatePassengerInput = { - where?: Maybe<InputId>; - data?: Maybe<EditPassengerInput>; -}; - -export type UpdatePassengerPayload = { - __typename?: 'updatePassengerPayload'; - passenger?: Maybe<Passenger>; + user?: Maybe<UsersPermissionsUserEntityResponse>; + createdAt?: Maybe<Scalars['DateTime']>; + updatedAt?: Maybe<Scalars['DateTime']>; }; -export type UpdateRoleInput = { - where?: Maybe<InputId>; - data?: Maybe<EditRoleInput>; +export type VehicleEntity = { + __typename?: 'VehicleEntity'; + id?: Maybe<Scalars['ID']>; + attributes?: Maybe<Vehicle>; }; -export type UpdateRolePayload = { - __typename?: 'updateRolePayload'; - role?: Maybe<UsersPermissionsRole>; +export type VehicleEntityResponse = { + __typename?: 'VehicleEntityResponse'; + data?: Maybe<VehicleEntity>; }; -export type UpdateSettingInput = { - data?: Maybe<EditSettingInput>; +export type VehicleFiltersInput = { + id?: Maybe<IdFilterInput>; + name?: Maybe<StringFilterInput>; + seats?: Maybe<IntFilterInput>; + phone_number?: Maybe<StringFilterInput>; + user?: Maybe<UsersPermissionsUserFiltersInput>; + createdAt?: Maybe<DateTimeFilterInput>; + updatedAt?: Maybe<DateTimeFilterInput>; + and?: Maybe<Array<Maybe<VehicleFiltersInput>>>; + or?: Maybe<Array<Maybe<VehicleFiltersInput>>>; + not?: Maybe<VehicleFiltersInput>; }; -export type UpdateSettingPayload = { - __typename?: 'updateSettingPayload'; - setting?: Maybe<Settings>; +export type VehicleInput = { + name?: Maybe<Scalars['String']>; + seats?: Maybe<Scalars['Int']>; + phone_number?: Maybe<Scalars['String']>; + user?: Maybe<Scalars['ID']>; }; -export type UpdateTravelInput = { - where?: Maybe<InputId>; - data?: Maybe<EditTravelInput>; -}; - -export type UpdateTravelPayload = { - __typename?: 'updateTravelPayload'; - travel?: Maybe<Travel>; -}; - -export type UpdateUserInput = { - where?: Maybe<InputId>; - data?: Maybe<EditUserInput>; -}; - -export type UpdateUserPayload = { - __typename?: 'updateUserPayload'; - user?: Maybe<UsersPermissionsUser>; -}; - -export type UpdateVehicleInput = { - where?: Maybe<InputId>; - data?: Maybe<EditVehicleInput>; -}; - -export type UpdateVehiclePayload = { - __typename?: 'updateVehiclePayload'; - vehicle?: Maybe<Vehicle>; +export type VehicleRelationResponseCollection = { + __typename?: 'VehicleRelationResponseCollection'; + data: Array<VehicleEntity>; }; export type MeFieldsFragment = (

@@ -2195,8 +1573,8 @@

export type ForgotPasswordMutation = ( { __typename?: 'Mutation' } & { forgotPassword?: Maybe<( - { __typename?: 'UserPermissionsPasswordPayload' } - & Pick<UserPermissionsPasswordPayload, 'ok'> + { __typename?: 'UsersPermissionsPasswordPayload' } + & Pick<UsersPermissionsPasswordPayload, 'ok'> )> } );

@@ -2220,27 +1598,66 @@ )> }

); export type EventFieldsFragment = ( - { __typename?: 'Event' } - & Pick<Event, 'id' | 'uuid' | 'name' | 'description' | 'email' | 'date' | 'address' | 'position'> - & { waitingPassengers?: Maybe<Array<Maybe<( - { __typename?: 'Passenger' } - & Pick<Passenger, 'id' | 'name' | 'email' | 'location'> - & { user?: Maybe<( - { __typename?: 'UsersPermissionsUser' } - & Pick<UsersPermissionsUser, 'id' | 'firstName' | 'lastName'> - )> } - )>>>, travels?: Maybe<Array<Maybe<( - { __typename?: 'Travel' } - & Pick<Travel, 'id' | 'meeting' | 'departure' | 'details' | 'vehicleName' | 'phone_number' | 'seats'> - & { passengers?: Maybe<Array<Maybe<( - { __typename?: 'Passenger' } - & Pick<Passenger, 'id' | 'name' | 'location'> - & { user?: Maybe<( - { __typename?: 'UsersPermissionsUser' } - & Pick<UsersPermissionsUser, 'id' | 'firstName' | 'lastName'> + { __typename?: 'EventEntity' } + & Pick<EventEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Event' } + & Pick<Event, 'uuid' | 'name' | 'description' | 'email' | 'date' | 'address' | 'position'> + & { waitingPassengers?: Maybe<( + { __typename?: 'PassengerRelationResponseCollection' } + & { data: Array<( + { __typename?: 'PassengerEntity' } + & Pick<PassengerEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Passenger' } + & Pick<Passenger, 'name' | 'email' | 'location'> + & { user?: Maybe<( + { __typename?: 'UsersPermissionsUserEntityResponse' } + & { data?: Maybe<( + { __typename?: 'UsersPermissionsUserEntity' } + & Pick<UsersPermissionsUserEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'UsersPermissionsUser' } + & Pick<UsersPermissionsUser, 'firstName' | 'lastName'> + )> } + )> } + )> } + )> } )> } - )>>> } - )>>> } + )>, travels?: Maybe<( + { __typename?: 'TravelRelationResponseCollection' } + & { data: Array<( + { __typename?: 'TravelEntity' } + & Pick<TravelEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Travel' } + & Pick<Travel, 'meeting' | 'departure' | 'details' | 'vehicleName' | 'phone_number' | 'seats'> + & { passengers?: Maybe<( + { __typename?: 'PassengerRelationResponseCollection' } + & { data: Array<( + { __typename?: 'PassengerEntity' } + & Pick<PassengerEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Passenger' } + & Pick<Passenger, 'name' | 'location'> + & { user?: Maybe<( + { __typename?: 'UsersPermissionsUserEntityResponse' } + & { data?: Maybe<( + { __typename?: 'UsersPermissionsUserEntity' } + & Pick<UsersPermissionsUserEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'UsersPermissionsUser' } + & Pick<UsersPermissionsUser, 'firstName' | 'lastName'> + )> } + )> } + )> } + )> } + )> } + )> } + )> } + )> } + )> } + )> } ); export type CreateEventMutationVariables = Exact<{

@@ -2256,9 +1673,9 @@

export type CreateEventMutation = ( { __typename?: 'Mutation' } & { createEvent?: Maybe<( - { __typename?: 'createEventPayload' } - & { event?: Maybe<( - { __typename?: 'Event' } + { __typename?: 'EventEntityResponse' } + & { data?: Maybe<( + { __typename?: 'EventEntity' } & EventFieldsFragment )> } )> }

@@ -2266,16 +1683,16 @@ );

export type UpdateEventMutationVariables = Exact<{ uuid: Scalars['String']; - eventUpdate?: Maybe<EditEventInput>; + eventUpdate: EventInput; }>; export type UpdateEventMutation = ( { __typename?: 'Mutation' } & { updateEventByUUID?: Maybe<( - { __typename?: 'updateEventPayload' } - & { event?: Maybe<( - { __typename?: 'Event' } + { __typename?: 'EventEntityResponse' } + & { data?: Maybe<( + { __typename?: 'EventEntity' } & EventFieldsFragment )> } )> }

@@ -2289,31 +1706,45 @@

export type EventByUuidQuery = ( { __typename?: 'Query' } & { eventByUUID?: Maybe<( - { __typename?: 'Event' } - & EventFieldsFragment + { __typename?: 'EventEntityResponse' } + & { data?: Maybe<( + { __typename?: 'EventEntity' } + & EventFieldsFragment + )> } )> } ); export type PassengerFieldsFragment = ( - { __typename?: 'Passenger' } - & Pick<Passenger, 'id' | 'name' | 'location' | 'email'> - & { user?: Maybe<( - { __typename?: 'UsersPermissionsUser' } - & Pick<UsersPermissionsUser, 'id' | 'firstName' | 'lastName'> + { __typename?: 'PassengerEntity' } + & Pick<PassengerEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Passenger' } + & Pick<Passenger, 'name' | 'location' | 'email'> + & { user?: Maybe<( + { __typename?: 'UsersPermissionsUserEntityResponse' } + & { data?: Maybe<( + { __typename?: 'UsersPermissionsUserEntity' } + & Pick<UsersPermissionsUserEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'UsersPermissionsUser' } + & Pick<UsersPermissionsUser, 'firstName' | 'lastName'> + )> } + )> } + )> } )> } ); export type CreatePassengerMutationVariables = Exact<{ - passenger?: Maybe<PassengerInput>; + passenger: PassengerInput; }>; export type CreatePassengerMutation = ( { __typename?: 'Mutation' } & { createPassenger?: Maybe<( - { __typename?: 'createPassengerPayload' } - & { passenger?: Maybe<( - { __typename?: 'Passenger' } + { __typename?: 'PassengerEntityResponse' } + & { data?: Maybe<( + { __typename?: 'PassengerEntity' } & PassengerFieldsFragment )> } )> }

@@ -2321,16 +1752,16 @@ );

export type UpdatePassengerMutationVariables = Exact<{ id: Scalars['ID']; - passengerUpdate: EditPassengerInput; + passengerUpdate: PassengerInput; }>; export type UpdatePassengerMutation = ( { __typename?: 'Mutation' } & { updatePassenger?: Maybe<( - { __typename?: 'updatePassengerPayload' } - & { passenger?: Maybe<( - { __typename?: 'Passenger' } + { __typename?: 'PassengerEntityResponse' } + & { data?: Maybe<( + { __typename?: 'PassengerEntity' } & PassengerFieldsFragment )> } )> }

@@ -2344,51 +1775,77 @@

export type DeletePassengerMutation = ( { __typename?: 'Mutation' } & { deletePassenger?: Maybe<( - { __typename?: 'deletePassengerPayload' } - & { passenger?: Maybe<( - { __typename?: 'Passenger' } - & Pick<Passenger, 'id'> + { __typename?: 'PassengerEntityResponse' } + & { data?: Maybe<( + { __typename?: 'PassengerEntity' } + & Pick<PassengerEntity, 'id'> )> } )> } ); export type SettingQueryVariables = Exact<{ - locale: Scalars['String']; + locale: Scalars['I18NLocaleCode']; }>; export type SettingQuery = ( { __typename?: 'Query' } & { setting?: Maybe<( - { __typename?: 'Settings' } - & Pick<Settings, 'id' | 'gtm_id' | 'about_link' | 'announcement' | 'faq_link'> + { __typename?: 'SettingEntityResponse' } + & { data?: Maybe<( + { __typename?: 'SettingEntity' } + & Pick<SettingEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Setting' } + & Pick<Setting, 'gtm_id' | 'about_link' | 'faq_link' | 'announcement'> + )> } + )> } )> } ); export type TravelFieldsFragment = ( - { __typename?: 'Travel' } - & Pick<Travel, 'id' | 'meeting' | 'departure' | 'details' | 'vehicleName' | 'phone_number' | 'seats'> - & { passengers?: Maybe<Array<Maybe<( - { __typename?: 'Passenger' } - & Pick<Passenger, 'id' | 'name' | 'location'> - & { user?: Maybe<( - { __typename?: 'UsersPermissionsUser' } - & Pick<UsersPermissionsUser, 'id' | 'firstName' | 'lastName'> + { __typename?: 'TravelEntity' } + & Pick<TravelEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Travel' } + & Pick<Travel, 'meeting' | 'departure' | 'details' | 'vehicleName' | 'phone_number' | 'seats'> + & { passengers?: Maybe<( + { __typename?: 'PassengerRelationResponseCollection' } + & { data: Array<( + { __typename?: 'PassengerEntity' } + & Pick<PassengerEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Passenger' } + & Pick<Passenger, 'name' | 'location'> + & { user?: Maybe<( + { __typename?: 'UsersPermissionsUserEntityResponse' } + & { data?: Maybe<( + { __typename?: 'UsersPermissionsUserEntity' } + & Pick<UsersPermissionsUserEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'UsersPermissionsUser' } + & Pick<UsersPermissionsUser, 'firstName' | 'lastName'> + )> } + )> } + )> } + )> } + )> } )> } - )>>> } + )> } ); export type CreateTravelMutationVariables = Exact<{ travel: TravelInput; + createVehicle?: Maybe<Scalars['Boolean']>; }>; export type CreateTravelMutation = ( { __typename?: 'Mutation' } & { createTravel?: Maybe<( - { __typename?: 'createTravelPayload' } - & { travel?: Maybe<( - { __typename?: 'Travel' } + { __typename?: 'TravelEntityResponse' } + & { data?: Maybe<( + { __typename?: 'TravelEntity' } & TravelFieldsFragment )> } )> }

@@ -2396,16 +1853,16 @@ );

export type UpdateTravelMutationVariables = Exact<{ id: Scalars['ID']; - travelUpdate: EditTravelInput; + travelUpdate: TravelInput; }>; export type UpdateTravelMutation = ( { __typename?: 'Mutation' } & { updateTravel?: Maybe<( - { __typename?: 'updateTravelPayload' } - & { travel?: Maybe<( - { __typename?: 'Travel' } + { __typename?: 'TravelEntityResponse' } + & { data?: Maybe<( + { __typename?: 'TravelEntity' } & TravelFieldsFragment )> } )> }

@@ -2419,21 +1876,28 @@

export type DeleteTravelMutation = ( { __typename?: 'Mutation' } & { deleteTravel?: Maybe<( - { __typename?: 'deleteTravelPayload' } - & { travel?: Maybe<( - { __typename?: 'Travel' } - & Pick<Travel, 'id'> + { __typename?: 'TravelEntityResponse' } + & { data?: Maybe<( + { __typename?: 'TravelEntity' } + & Pick<TravelEntity, 'id'> )> } )> } ); export type UserFieldsFragment = ( { __typename?: 'UsersPermissionsUser' } - & Pick<UsersPermissionsUser, 'id' | 'username' | 'email' | 'confirmed' | 'lastName' | 'firstName' | 'lang' | 'onboardingUser' | 'onboardingCreator'> - & { events?: Maybe<Array<Maybe<( - { __typename?: 'Event' } - & Pick<Event, 'id' | 'uuid' | 'name' | 'date' | 'address'> - )>>> } + & Pick<UsersPermissionsUser, 'username' | 'email' | 'confirmed' | 'lastName' | 'firstName' | 'lang' | 'onboardingUser' | 'onboardingCreator'> + & { events?: Maybe<( + { __typename?: 'EventRelationResponseCollection' } + & { data: Array<( + { __typename?: 'EventEntity' } + & Pick<EventEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Event' } + & Pick<Event, 'uuid' | 'name' | 'date' | 'address'> + )> } + )> } + )> } ); export type ProfileQueryVariables = Exact<{ [key: string]: never; }>;

@@ -2452,24 +1916,32 @@ )> }

); export type UpdateMeMutationVariables = Exact<{ - userUpdate: EditUserInput; + userUpdate: UsersPermissionsUserInput; }>; export type UpdateMeMutation = ( { __typename?: 'Mutation' } & { updateMe: ( - { __typename?: 'updateUserPayload' } - & { user?: Maybe<( - { __typename?: 'UsersPermissionsUser' } - & UserFieldsFragment + { __typename?: 'UsersPermissionsUserEntityResponse' } + & { data?: Maybe<( + { __typename?: 'UsersPermissionsUserEntity' } + & Pick<UsersPermissionsUserEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'UsersPermissionsUser' } + & UserFieldsFragment + )> } )> } ) } ); export type VehicleFieldsFragment = ( - { __typename?: 'Vehicle' } - & Pick<Vehicle, 'id' | 'name' | 'seats' | 'phone_number'> + { __typename?: 'VehicleEntity' } + & Pick<VehicleEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Vehicle' } + & Pick<Vehicle, 'name' | 'seats' | 'phone_number'> + )> } ); export type FindUserVehiclesQueryVariables = Exact<{ [key: string]: never; }>;

@@ -2482,10 +1954,13 @@ { __typename?: 'UsersPermissionsMe' }

& Pick<UsersPermissionsMe, 'id' | 'username'> & { profile?: Maybe<( { __typename?: 'UsersPermissionsUser' } - & { vehicles?: Maybe<Array<Maybe<( - { __typename?: 'Vehicle' } - & VehicleFieldsFragment - )>>> } + & { vehicles?: Maybe<( + { __typename?: 'VehicleRelationResponseCollection' } + & { data: Array<( + { __typename?: 'VehicleEntity' } + & VehicleFieldsFragment + )> } + )> } )> } )> } );

@@ -2498,10 +1973,14 @@

export type DeleteVehicleMutation = ( { __typename?: 'Mutation' } & { deleteVehicle?: Maybe<( - { __typename?: 'deleteVehiclePayload' } - & { vehicle?: Maybe<( - { __typename?: 'Vehicle' } - & Pick<Vehicle, 'id' | 'name'> + { __typename?: 'VehicleEntityResponse' } + & { data?: Maybe<( + { __typename?: 'VehicleEntity' } + & Pick<VehicleEntity, 'id'> + & { attributes?: Maybe<( + { __typename?: 'Vehicle' } + & Pick<Vehicle, 'name'> + )> } )> } )> } );

@@ -2515,84 +1994,121 @@ confirmed

} `; export const EventFieldsFragmentDoc = gql` - fragment EventFields on Event { + fragment EventFields on EventEntity { id - uuid - name - description - email - date - address - position - waitingPassengers { - id + attributes { + uuid name + description email - location - user { - id - firstName - lastName + date + address + position + waitingPassengers { + data { + id + attributes { + name + email + location + user { + data { + id + attributes { + firstName + lastName + } + } + } + } + } } - } - travels { - id - meeting - departure - details - vehicleName - phone_number - seats - passengers { - id - name - location - user { + travels { + data { id - firstName - lastName + attributes { + meeting + departure + details + vehicleName + phone_number + seats + passengers { + data { + id + attributes { + name + location + user { + data { + id + attributes { + firstName + lastName + } + } + } + } + } + } + } } } } } `; export const PassengerFieldsFragmentDoc = gql` - fragment PassengerFields on Passenger { + fragment PassengerFields on PassengerEntity { id - name - location - email - user { - id - firstName - lastName + attributes { + name + location + email + user { + data { + id + attributes { + firstName + lastName + } + } + } } } `; export const TravelFieldsFragmentDoc = gql` - fragment TravelFields on Travel { + fragment TravelFields on TravelEntity { id - meeting - departure - details - vehicleName - phone_number - seats - passengers { - id - name - location - user { - id - firstName - lastName + attributes { + meeting + departure + details + vehicleName + phone_number + seats + passengers { + data { + id + attributes { + name + location + user { + data { + id + attributes { + firstName + lastName + } + } + } + } + } } } } `; export const UserFieldsFragmentDoc = gql` fragment UserFields on UsersPermissionsUser { - id username email confirmed

@@ -2602,20 +2118,26 @@ lang

onboardingUser onboardingCreator events { - id - uuid - name - date - address + data { + id + attributes { + uuid + name + date + address + } + } } } `; export const VehicleFieldsFragmentDoc = gql` - fragment VehicleFields on Vehicle { + fragment VehicleFields on VehicleEntity { id - name - seats - phone_number + attributes { + name + seats + phone_number + } } `; export const RegisterDocument = gql`

@@ -2765,9 +2287,9 @@ export type ResetPasswordMutationOptions = Apollo.BaseMutationOptions<ResetPasswordMutation, ResetPasswordMutationVariables>;

export const CreateEventDocument = gql` mutation createEvent($name: String!, $email: String!, $date: Date, $address: String, $description: String, $newsletter: Boolean) { createEvent( - input: {data: {name: $name, email: $email, date: $date, address: $address, description: $description, newsletter: $newsletter}} + data: {name: $name, email: $email, date: $date, address: $address, description: $description, newsletter: $newsletter} ) { - event { + data { ...EventFields } }

@@ -2804,9 +2326,9 @@ export type CreateEventMutationHookResult = ReturnType<typeof useCreateEventMutation>;

export type CreateEventMutationResult = Apollo.MutationResult<CreateEventMutation>; export type CreateEventMutationOptions = Apollo.BaseMutationOptions<CreateEventMutation, CreateEventMutationVariables>; export const UpdateEventDocument = gql` - mutation updateEvent($uuid: String!, $eventUpdate: editEventInput) { - updateEventByUUID(input: {where: {uuid: $uuid}, data: $eventUpdate}) { - event { + mutation updateEvent($uuid: String!, $eventUpdate: EventInput!) { + updateEventByUUID(uuid: $uuid, data: $eventUpdate) { + data { ...EventFields } }

@@ -2841,7 +2363,9 @@ export type UpdateEventMutationOptions = Apollo.BaseMutationOptions<UpdateEventMutation, UpdateEventMutationVariables>;

export const EventByUuidDocument = gql` query eventByUUID($uuid: String!) { eventByUUID(uuid: $uuid) { - ...EventFields + data { + ...EventFields + } } } ${EventFieldsFragmentDoc}`;

@@ -2872,9 +2396,9 @@ export type EventByUuidQueryHookResult = ReturnType<typeof useEventByUuidQuery>;

export type EventByUuidLazyQueryHookResult = ReturnType<typeof useEventByUuidLazyQuery>; export type EventByUuidQueryResult = Apollo.QueryResult<EventByUuidQuery, EventByUuidQueryVariables>; export const CreatePassengerDocument = gql` - mutation createPassenger($passenger: PassengerInput) { - createPassenger(input: {data: $passenger}) { - passenger { + mutation createPassenger($passenger: PassengerInput!) { + createPassenger(data: $passenger) { + data { ...PassengerFields } }

@@ -2906,9 +2430,9 @@ export type CreatePassengerMutationHookResult = ReturnType<typeof useCreatePassengerMutation>;

export type CreatePassengerMutationResult = Apollo.MutationResult<CreatePassengerMutation>; export type CreatePassengerMutationOptions = Apollo.BaseMutationOptions<CreatePassengerMutation, CreatePassengerMutationVariables>; export const UpdatePassengerDocument = gql` - mutation updatePassenger($id: ID!, $passengerUpdate: editPassengerInput!) { - updatePassenger(input: {where: {id: $id}, data: $passengerUpdate}) { - passenger { + mutation updatePassenger($id: ID!, $passengerUpdate: PassengerInput!) { + updatePassenger(id: $id, data: $passengerUpdate) { + data { ...PassengerFields } }

@@ -2942,8 +2466,8 @@ export type UpdatePassengerMutationResult = Apollo.MutationResult<UpdatePassengerMutation>;

export type UpdatePassengerMutationOptions = Apollo.BaseMutationOptions<UpdatePassengerMutation, UpdatePassengerMutationVariables>; export const DeletePassengerDocument = gql` mutation deletePassenger($id: ID!) { - deletePassenger(input: {where: {id: $id}}) { - passenger { + deletePassenger(id: $id) { + data { id } }

@@ -2975,13 +2499,17 @@ export type DeletePassengerMutationHookResult = ReturnType<typeof useDeletePassengerMutation>;

export type DeletePassengerMutationResult = Apollo.MutationResult<DeletePassengerMutation>; export type DeletePassengerMutationOptions = Apollo.BaseMutationOptions<DeletePassengerMutation, DeletePassengerMutationVariables>; export const SettingDocument = gql` - query setting($locale: String!) { + query setting($locale: I18NLocaleCode!) { setting(locale: $locale) { - id - gtm_id - about_link - announcement - faq_link + data { + id + attributes { + gtm_id + about_link + faq_link + announcement + } + } } } `;

@@ -3012,9 +2540,9 @@ export type SettingQueryHookResult = ReturnType<typeof useSettingQuery>;

export type SettingLazyQueryHookResult = ReturnType<typeof useSettingLazyQuery>; export type SettingQueryResult = Apollo.QueryResult<SettingQuery, SettingQueryVariables>; export const CreateTravelDocument = gql` - mutation createTravel($travel: TravelInput!) { - createTravel(input: {data: $travel}) { - travel { + mutation createTravel($travel: TravelInput!, $createVehicle: Boolean) { + createTravel(data: $travel, createVehicle: $createVehicle) { + data { ...TravelFields } }

@@ -3036,6 +2564,7 @@ * @example

* const [createTravelMutation, { data, loading, error }] = useCreateTravelMutation({ * variables: { * travel: // value for 'travel' + * createVehicle: // value for 'createVehicle' * }, * }); */

@@ -3046,9 +2575,9 @@ export type CreateTravelMutationHookResult = ReturnType<typeof useCreateTravelMutation>;

export type CreateTravelMutationResult = Apollo.MutationResult<CreateTravelMutation>; export type CreateTravelMutationOptions = Apollo.BaseMutationOptions<CreateTravelMutation, CreateTravelMutationVariables>; export const UpdateTravelDocument = gql` - mutation updateTravel($id: ID!, $travelUpdate: editTravelInput!) { - updateTravel(input: {where: {id: $id}, data: $travelUpdate}) { - travel { + mutation updateTravel($id: ID!, $travelUpdate: TravelInput!) { + updateTravel(id: $id, data: $travelUpdate) { + data { ...TravelFields } }

@@ -3082,8 +2611,8 @@ export type UpdateTravelMutationResult = Apollo.MutationResult<UpdateTravelMutation>;

export type UpdateTravelMutationOptions = Apollo.BaseMutationOptions<UpdateTravelMutation, UpdateTravelMutationVariables>; export const DeleteTravelDocument = gql` mutation deleteTravel($id: ID!) { - deleteTravel(input: {where: {id: $id}}) { - travel { + deleteTravel(id: $id) { + data { id } }

@@ -3151,10 +2680,13 @@ export type ProfileQueryHookResult = ReturnType<typeof useProfileQuery>;

export type ProfileLazyQueryHookResult = ReturnType<typeof useProfileLazyQuery>; export type ProfileQueryResult = Apollo.QueryResult<ProfileQuery, ProfileQueryVariables>; export const UpdateMeDocument = gql` - mutation updateMe($userUpdate: editUserInput!) { - updateMe(input: $userUpdate) { - user { - ...UserFields + mutation updateMe($userUpdate: UsersPermissionsUserInput!) { + updateMe(data: $userUpdate) { + data { + id + attributes { + ...UserFields + } } } }

@@ -3191,7 +2723,9 @@ id

username profile { vehicles { - ...VehicleFields + data { + ...VehicleFields + } } } }

@@ -3224,10 +2758,12 @@ export type FindUserVehiclesLazyQueryHookResult = ReturnType<typeof useFindUserVehiclesLazyQuery>;

export type FindUserVehiclesQueryResult = Apollo.QueryResult<FindUserVehiclesQuery, FindUserVehiclesQueryVariables>; export const DeleteVehicleDocument = gql` mutation deleteVehicle($id: ID!) { - deleteVehicle(input: {where: {id: $id}}) { - vehicle { + deleteVehicle(id: $id) { + data { id - name + attributes { + name + } } } }
M frontend/graphql/event.gqlfrontend/graphql/event.gql

@@ -1,39 +1,61 @@

-fragment EventFields on Event { +fragment EventFields on EventEntity { id - uuid - name - description - email - date - address - position - waitingPassengers { - id + attributes { + uuid name + description email - location - user { - id - firstName - lastName + date + address + position + waitingPassengers { + data { + id + attributes { + name + email + location + user { + data { + id + attributes { + firstName + lastName + } + } + } + } + } } - } - travels { - id - meeting - departure - details - vehicleName - phone_number - seats - passengers { - id - name - location - user { + travels { + data { id - firstName - lastName + attributes { + meeting + departure + details + vehicleName + phone_number + seats + passengers { + data { + id + attributes { + name + location + user { + data { + id + attributes { + firstName + lastName + } + } + } + } + } + } + } } } }

@@ -48,26 +70,24 @@ $description: String

$newsletter: Boolean ) { createEvent( - input: { - data: { - name: $name - email: $email - date: $date - address: $address - description: $description - newsletter: $newsletter - } + data: { + name: $name + email: $email + date: $date + address: $address + description: $description + newsletter: $newsletter } ) { - event { + data { ...EventFields } } } -mutation updateEvent($uuid: String!, $eventUpdate: editEventInput) { - updateEventByUUID(input: {where: {uuid: $uuid}, data: $eventUpdate}) { - event { +mutation updateEvent($uuid: String!, $eventUpdate: EventInput!) { + updateEventByUUID(uuid: $uuid, data: $eventUpdate) { + data { ...EventFields } }

@@ -75,6 +95,8 @@ }

query eventByUUID($uuid: String!) { eventByUUID(uuid: $uuid) { - ...EventFields + data { + ...EventFields + } } }
M frontend/graphql/passenger.gqlfrontend/graphql/passenger.gql

@@ -1,34 +1,40 @@

-fragment PassengerFields on Passenger { +fragment PassengerFields on PassengerEntity { id - name - location - email - user { - id - firstName - lastName + attributes { + name + location + email + user { + data { + id + attributes { + firstName + lastName + } + } + } } } -mutation createPassenger($passenger: PassengerInput) { - createPassenger(input: {data: $passenger}) { - passenger { +mutation createPassenger($passenger: PassengerInput!) { + createPassenger(data: $passenger) { + data { ...PassengerFields } } } -mutation updatePassenger($id: ID!, $passengerUpdate: editPassengerInput!) { - updatePassenger(input: {where: {id: $id}, data: $passengerUpdate}) { - passenger { +mutation updatePassenger($id: ID!, $passengerUpdate: PassengerInput!) { + updatePassenger(id: $id, data: $passengerUpdate) { + data { ...PassengerFields } } } mutation deletePassenger($id: ID!) { - deletePassenger(input: {where: {id: $id}}) { - passenger { + deletePassenger(id: $id) { + data { id } }
M frontend/graphql/setting.gqlfrontend/graphql/setting.gql

@@ -1,9 +1,13 @@

-query setting ($locale: String!) { - setting (locale: $locale) { - id - gtm_id - about_link - announcement - faq_link +query setting($locale: I18NLocaleCode!) { + setting(locale: $locale) { + data { + id + attributes { + gtm_id + about_link + faq_link + announcement + } + } } }
M frontend/graphql/travel.gqlfrontend/graphql/travel.gql

@@ -1,42 +1,52 @@

-fragment TravelFields on Travel { +fragment TravelFields on TravelEntity { id - meeting - departure - details - vehicleName - phone_number - seats - passengers { - id - name - location - user { - id - firstName - lastName + attributes { + meeting + departure + details + vehicleName + phone_number + seats + passengers { + data { + id + attributes { + name + location + user { + data { + id + attributes { + firstName + lastName + } + } + } + } + } } } } -mutation createTravel($travel: TravelInput!) { - createTravel(input: {data: $travel}) { - travel { +mutation createTravel($travel: TravelInput!, $createVehicle: Boolean) { + createTravel(data: $travel, createVehicle: $createVehicle) { + data { ...TravelFields } } } -mutation updateTravel($id: ID!, $travelUpdate: editTravelInput!) { - updateTravel(input: {where: {id: $id}, data: $travelUpdate}) { - travel { +mutation updateTravel($id: ID!, $travelUpdate: TravelInput!) { + updateTravel(id: $id, data: $travelUpdate) { + data { ...TravelFields } } } mutation deleteTravel($id: ID!) { - deleteTravel(input: {where: {id: $id}}) { - travel { + deleteTravel(id: $id) { + data { id } }
M frontend/graphql/user.gqlfrontend/graphql/user.gql

@@ -1,5 +1,4 @@

fragment UserFields on UsersPermissionsUser { - id username email confirmed

@@ -9,11 +8,15 @@ lang

onboardingUser onboardingCreator events { - id - uuid - name - date - address + data { + id + attributes { + uuid + name + date + address + } + } } }

@@ -27,10 +30,13 @@ }

} } -mutation updateMe($userUpdate: editUserInput!) { - updateMe(input: $userUpdate) { - user { - ...UserFields +mutation updateMe($userUpdate: UsersPermissionsUserInput!) { + updateMe(data: $userUpdate) { + data { + id + attributes { + ...UserFields + } } } }
M frontend/graphql/vehicle.gqlfrontend/graphql/vehicle.gql

@@ -1,8 +1,10 @@

-fragment VehicleFields on Vehicle { +fragment VehicleFields on VehicleEntity { id - name - seats - phone_number + attributes { + name + seats + phone_number + } } query findUserVehicles {

@@ -11,17 +13,21 @@ id

username profile { vehicles { - ...VehicleFields + data { + ...VehicleFields + } } } } } mutation deleteVehicle($id: ID!) { - deleteVehicle(input: {where: {id: $id}}) { - vehicle { + deleteVehicle(id: $id) { + data { id - name + attributes { + name + } } } }
M frontend/hooks/useLoginForm.tsfrontend/hooks/useLoginForm.ts

@@ -13,9 +13,10 @@ identifier,

password, }, }); - if (data?.login?.jwt) { - setToken(data.login.jwt); - setUser(data.login.user); + const token = data?.login?.jwt; + if (token) { + setToken(token); + setUser(data?.login?.user); } else throw new Error('no_token'); };
M frontend/hooks/usePassengersActions.tsfrontend/hooks/usePassengersActions.ts

@@ -1,5 +1,4 @@

import { - EditPassengerInput, PassengerInput, useCreatePassengerMutation, useDeletePassengerMutation,

@@ -21,7 +20,7 @@ });

const updatePassenger = async ( passengerId: string, - passenger: EditPassengerInput + passenger: PassengerInput ) => setPassenger({ variables: {id: passengerId, passengerUpdate: passenger},
M frontend/hooks/useProfile.tsfrontend/hooks/useProfile.ts

@@ -1,17 +1,29 @@

import {useEffect, useState} from 'react'; import useAuthStore from '../stores/useAuthStore'; -import {useProfileLazyQuery} from '../generated/graphql'; +import {ProfileDocument, UsersPermissionsUser} from '../generated/graphql'; +import {initializeApollo} from '../lib/apolloClient'; const useProfile = () => { const token = useAuthStore(s => s.token); const user = useAuthStore(s => s.user); const [isReady, setIsReady] = useState(false); - const [ - fetchProfile, - {data: {me: {profile = null} = {}} = {}}, - ] = useProfileLazyQuery({ - onCompleted: () => setIsReady(true), - }); + const [profile, setProfile] = useState<UsersPermissionsUser | null>(null); + + const fetchProfile = async () => { + const apolloClient = initializeApollo({}); + + try { + const {data} = await apolloClient.query({ + query: ProfileDocument, + }); + const fetchedProfile = data?.me?.profile; + setProfile(fetchedProfile); + } catch (error) { + console.error(error); + } finally { + setIsReady(true); + } + }; useEffect(() => { if (profile) setIsReady(true);

@@ -22,7 +34,7 @@

return { profile, connected: !!token, - user: user, + user, isReady, }; };
M frontend/hooks/useSettings.tsfrontend/hooks/useSettings.ts

@@ -8,7 +8,7 @@

const locale = {FR: 'fr', EN: 'en'}[language]; const defaulData: SettingQuery = {}; - const [fetchSettings, {data: {setting} = defaulData}] = useSettingLazyQuery({ + const [fetchSettings, {data: {setting: {data: {attributes: setting ={}}={}}={}} = defaulData}] = useSettingLazyQuery({ variables: {locale}, });
M frontend/hooks/useTour.tsfrontend/hooks/useTour.ts

@@ -40,7 +40,7 @@ useEffect(() => {

if (!isReady || !event) return; let newIsCreator = eventsToBeAdded.includes(event?.id); - if (profile) newIsCreator = profile.events.map(e => e.id).includes(event?.id); + if (profile) newIsCreator = profile.events?.data.map(e => e.id).includes(event?.id); setTour({isCreator: newIsCreator}); }, [isReady, event, eventsToBeAdded, profile]);
M frontend/layouts/Event.tsxfrontend/layouts/Event.tsx

@@ -6,20 +6,16 @@ import ErrorPage from '../pages/_error';

import useEventStore from '../stores/useEventStore'; import Layout from '../layouts/Default'; import EventBar from '../containers/EventBar'; -import { - Event as EventType, - useEventByUuidQuery, - useUpdateEventMutation, - EditEventInput, -} from '../generated/graphql'; +import {Event as EventType, useEventByUuidQuery} from '../generated/graphql'; import DrawerMenu from '../containers/DrawerMenu'; import AddToMyEventDialog from '../containers/AddToMyEventDialog'; -import useToastStore from '../stores/useToastStore'; import Box from '@material-ui/core/Box'; const POLL_INTERVAL = 10000; -export type TabComponent = (props: {event: EventType}) => JSX.Element; +export type TabComponent = (props: { + event: EventType & {id: string}; +}) => JSX.Element; interface Props { eventUUID: string;

@@ -34,13 +30,15 @@ const classes = useStyles();

const isMobile = useMediaQuery(theme.breakpoints.down('sm')); const setEvent = useEventStore(s => s.setEvent); const [isAddToMyEvent, setIsAddToMyEvent] = useState(false); - const {data: {eventByUUID: event} = {}} = useEventByUuidQuery({ - pollInterval: POLL_INTERVAL, - variables: {uuid: eventUUID}, - }); + const {data: {eventByUUID: {data: {attributes, id} = {}} = {}} = {}} = + useEventByUuidQuery({ + pollInterval: POLL_INTERVAL, + variables: {uuid: eventUUID}, + }); + const event = {id, ...attributes}; useEffect(() => { - if (event) setEvent(event as EventType); + if (event) setEvent(event); }, [event]); if (!event) return <ErrorPage statusCode={404} title={t`event.not_found`} />;
M frontend/pages/_app.tsxfrontend/pages/_app.tsx

@@ -14,15 +14,15 @@ import Toasts from '../components/Toasts';

import theme from '../theme'; import 'moment/locale/fr-ch'; import {useTranslation} from 'react-i18next'; -import useAuthStore from '../stores/useAuthStore'; import {getUserLng} from '../i18n'; +import useProfile from '../hooks/useProfile'; moment.locale('fr-ch'); const App = function (props: AppProps) { const {Component, pageProps} = props; const apolloClient = useApollo(pageProps); - const user = useAuthStore(); + const {profile} = useProfile(); const {i18n} = useTranslation(); const language = useLangStore(s => s.language); const setLanguage = useLangStore(s => s.setLanguage);

@@ -32,11 +32,11 @@ setLanguage(getUserLng());

}, []); useEffect(() => { - const languageProfile = user?.lang ?? language; + const languageProfile = profile?.lang ?? language; const momentLang = languageProfile === 'FR' ? 'fr-ch' : 'en'; moment.locale(momentLang); i18n.changeLanguage(languageProfile?.toLowerCase()); - }, [language, user?.lang]); + }, [language, profile?.lang]); useEffect(() => { // Remove the server-side injected CSS.
M frontend/pages/dashboard.tsxfrontend/pages/dashboard.tsx

@@ -15,7 +15,7 @@ const {t} = useTranslation();

const router = useRouter(); const isAuth = useAuthStore(s => !!s.token); const {profile, isReady} = useProfile(); - const {events} = profile || {}; + const events = profile?.events?.data || []; useEffect(() => { if (!isAuth) router.push('/');
M frontend/pages/e/[uuid]/details.tsxfrontend/pages/e/[uuid]/details.tsx

@@ -44,7 +44,7 @@

const onSave = async e => { try { const {uuid, ...data} = event; - const {id, __typename, travels, users, waitingList, ...input} = data; + const {id, travels, waitingPassengers, __typename, ...input} = data; await updateEvent({ variables: {uuid, eventUpdate: input}, refetchQueries: ['eventByUUID'],
M frontend/pages/e/[uuid]/index.tsxfrontend/pages/e/[uuid]/index.tsx

@@ -1,4 +1,4 @@

-import {useState, useReducer, PropsWithChildren} from 'react'; +import {useState, useReducer, PropsWithChildren, useMemo} from 'react'; import {makeStyles} from '@material-ui/core/styles'; import {useTranslation} from 'react-i18next'; import EventLayout, {TabComponent} from '../../../layouts/Event';

@@ -7,7 +7,7 @@ import NewTravelDialog from '../../../containers/NewTravelDialog';

import VehicleChoiceDialog from '../../../containers/VehicleChoiceDialog'; import { EventByUuidDocument, - useFindUserVehiclesQuery, + useFindUserVehiclesLazyQuery, } from '../../../generated/graphql'; import useProfile from '../../../hooks/useProfile'; import Fab from '../../../containers/Fab';

@@ -28,10 +28,14 @@ const TravelsTab: TabComponent = (props: {event}) => {

const classes = useStyles(); const {t} = useTranslation(); const {user} = useProfile(); - const {data: {me: {profile: {vehicles = []} = {}} = {}} = {}} = - useFindUserVehiclesQuery(); + const [findUserVehicle, {data}] = useFindUserVehiclesLazyQuery(); + const vehicles = data?.me?.profile?.vehicles?.data || []; const [openNewTravelContext, toggleNewTravel] = useState({opened: false}); const [openVehicleChoice, toggleVehicleChoice] = useReducer(i => !i, false); + + useMemo(() => { + if (user) findUserVehicle(); + }, [user]); const addTravelClickHandler = user && vehicles?.length != 0

@@ -80,10 +84,11 @@ const {uuid} = ctx.query;

const {host = ''} = ctx.req.headers; const apolloClient = initializeApollo(); - const {data: {eventByUUID: event = null} = {}} = await apolloClient.query({ - query: EventByUuidDocument, - variables: {uuid}, - }); + const {data: {eventByUUID: {data: event = null} = {}} = {}} = + await apolloClient.query({ + query: EventByUuidDocument, + variables: {uuid}, + }); try { return {
M frontend/pages/e/[uuid]/waitingList.tsxfrontend/pages/e/[uuid]/waitingList.tsx

@@ -25,11 +25,13 @@ useState<NewPassengerDialogContext | null>(null);

const canAddSelf = useMemo(() => { if (!user) return false; - const isInWaitingList = event?.waitingPassengers?.some( - passenger => passenger.user?.id === `${user.id}` + const isInWaitingList = event?.waitingPassengers?.data?.some( + passenger => passenger.attributes.user?.data?.id === `${user.id}` ); - const isInTravel = event?.travels?.some(travel => - travel.passengers?.some(passenger => passenger.user?.id === `${user.id}`) + const isInTravel = event?.travels?.data?.some(travel => + travel.attributes.passengers?.data?.some( + passenger => passenger.attributes.user?.data?.id === `${user.id}` + ) ); return !(isInWaitingList || isInTravel); }, [event, user]);
M frontend/pages/profile.tsxfrontend/pages/profile.tsx

@@ -1,7 +1,7 @@

import {useEffect} from 'react'; import {useRouter} from 'next/router'; import {useTranslation} from 'react-i18next'; -import {useUpdateMeMutation, EditUserInput} from '../generated/graphql'; +import {UsersPermissionsUserInput, useUpdateMeMutation} from '../generated/graphql'; import useAuthStore from '../stores/useAuthStore'; import useProfile from '../hooks/useProfile'; import Loading from '../containers/Loading';

@@ -20,7 +20,7 @@ useEffect(() => {

if (!isAuth) router.push('/'); }, [isAuth]); - const onUpdateProfile = (userUpdate: EditUserInput) => + const onUpdateProfile = (userUpdate: UsersPermissionsUserInput) => updateProfile({variables: {userUpdate}}); const menuActions = [
M frontend/stores/useAuthStore.tsfrontend/stores/useAuthStore.ts

@@ -1,13 +1,11 @@

import create from 'zustand'; -import {UsersPermissionsUser} from '../generated/graphql'; +import {UsersPermissionsMe} from '../generated/graphql'; type State = { token: string | null; setToken: (token?: string) => void; - user: Omit<UsersPermissionsUser, 'created_at' | 'updated_at' | '__typename'> | null; - setUser: ( - user?: Omit<UsersPermissionsUser, 'created_at' | 'updated_at' | '__typename'> - ) => void; + user: UsersPermissionsMe | null; + setUser: (user?: UsersPermissionsMe) => void; logout: () => void; };
M frontend/stores/useEventStore.tsfrontend/stores/useEventStore.ts

@@ -2,9 +2,9 @@ import create from 'zustand';

import {Event} from '../generated/graphql'; type State = { - event: Event; - setEvent: (event: Event) => void; - setEventUpdate: (event: Partial<Event>) => void; + event: Event & {id: string}; + setEvent: (event: Event & {id: string}) => void; + setEventUpdate: (event: Partial<Event & {id: string}>) => void; }; const useEventStore = create<State>((set, get) => ({