Compare commits

..

18 Commits

Author SHA1 Message Date
Szilárd Dóró
776c8f9237 Merge pull request #1721 from nhost/changeset-release/main
chore: update versions
2023-03-10 11:03:55 +01:00
github-actions[bot]
c0773d82e9 chore: update versions 2023-03-10 09:38:58 +00:00
Siarhei Lipchyk
c46b1383f2 Merge pull request #1724 from nhost/fix/dashboard-docker-entrypoint
Fix default values for placeholders
2023-03-10 10:37:46 +01:00
Siarhei Lipchyk
beed2eba21 Fix default values for placeholders 2023-03-10 10:36:01 +01:00
Szilárd Dóró
70f9610041 Merge pull request #1723 from nhost/fix/provisioning-status-indicator
fix(dashboard): miscellaneous fixes
2023-03-10 10:23:22 +01:00
Szilárd Dóró
bd7929f5ed revert provisioning status changes 2023-03-10 09:35:36 +01:00
Szilárd Dóró
2c8559a319 fix(dashboard): misc fixes 2023-03-09 15:54:17 +01:00
Szilárd Dóró
bd5ea5ee3a Merge pull request #1722 from nhost/chore/renovate-ci
chore(ci): remove renovate changeset automation
2023-03-09 13:09:59 +01:00
Szilárd Dóró
3538dbac39 chore(ci): remove renovate changeset automation 2023-03-09 11:12:06 +01:00
Szilárd Dóró
03b5cda69a Merge pull request #1700 from nhost/renovate/graphiql-react-0.x
fix(deps): update dependency @graphiql/react to ^0.17.0
2023-03-09 11:08:04 +01:00
Szilárd Dóró
4329d04854 chore: bump graphiql dependencies 2023-03-09 10:41:46 +01:00
Szilárd Dóró
ca50c5ce0c Merge remote-tracking branch 'origin/main' into renovate/graphiql-react-0.x 2023-03-09 10:25:37 +01:00
Szilárd Dóró
a3271ed014 Merge pull request #1719 from nhost/changeset-release/main
chore: update versions
2023-03-09 10:14:06 +01:00
github-actions[bot]
d4fc99a77c chore: update versions 2023-03-09 08:20:32 +00:00
Szilárd Dóró
d90fcf3c24 Merge pull request #1713 from nhost/chore/mimir-cleanup
chore(dashboard): mimir migration cleanup
2023-03-09 09:19:06 +01:00
Szilárd Dóró
001b3dccec chore: update codegen 2023-03-07 14:50:26 +01:00
Szilárd Dóró
cbb1fc5bc8 chore: cleanup GraphQL operations 2023-03-07 11:23:55 +01:00
renovate[bot]
0ec3abf47c fix(deps): update dependency @graphiql/react to ^0.17.0 2023-03-03 00:19:25 +00:00
13 changed files with 94 additions and 2961 deletions

View File

@@ -1,89 +0,0 @@
name: Renovate
on:
pull_request:
branches: [main]
types: [closed]
paths-ignore:
- 'assets/**'
- '**.md'
- 'LICENSE'
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: nhost
jobs:
renovate-changeset:
name: Add changeset
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'renovate/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GH_PAT }}
# * Install Node and dependencies. Package downloads will be cached for the next jobs.
- name: Install Node and dependencies
uses: ./.github/actions/install-dependencies
with:
TURBO_TOKEN: ${{ env.TURBO_TOKEN }}
TURBO_TEAM: ${{ env.TURBO_TEAM }}
BUILD: 'none'
- name: Determine bumps
id: bumps
run: |
LAST_NON_PR_SHA=$(git log --no-merges main origin/${{ github.head_ref }} --format=format:%h -- | head -2 | tail -1)
echo "result<<EOF" >> $GITHUB_OUTPUT
pnpm recursive list --depth -1 --parseable \
--filter='!nhost-root' \
--filter=[$LAST_NON_PR_SHA] \
| xargs -I@ jq ".name" @/package.json \
| sort \
| uniq -u \
| awk '$0=$0": patch"' \
>> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Install dictionary
if: steps.bumps.outputs.result != ''
run: sudo apt-get install wbritish
- name: Generate changeset file name
id: file_name
if: steps.bumps.outputs.result != ''
run: |
FILE_NAME=$(shuf -n 3 /usr/share/dict/words | tr '\n' '-' | sed 's/-$//' | sed 's/'"'"'s//g' | tr '[:upper:]' '[:lower:]')
echo "result=./.changeset/${FILE_NAME}.md" >> $GITHUB_OUTPUT
- name: Create changeset file
if: steps.bumps.outputs.result != ''
run: |
cat <<EOF > ${{ steps.file_name.outputs.result }}
---
${{ steps.bumps.outputs.result }}
---
${{ github.event.pull_request.title }}
EOF
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GH_PAT }}
commit-message: ${{ github.event.pull_request.title }}
branch: renovate-changesets
delete-branch: true
title: 'chore: create changesest from Renovate bumps'
labels: |
dependencies
body: |
This PR creates the changesets from the Renovate dependencies that have been merged to main.
- name: Enable Pull Request Automerge
if: steps.cpr.outputs.pull-request-operation == 'created'
uses: peter-evans/enable-pull-request-automerge@v2
with:
token: ${{ secrets.GH_PAT }}
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
- name: Auto approve
if: steps.cpr.outputs.pull-request-operation == 'created'
uses: juliangruber/approve-pull-request-action@v2
with:
github-token: ${{ secrets.GH_PAT }}
number: ${{ steps.cpr.outputs.pull-request-number }}

View File

@@ -1,5 +1,19 @@
# @nhost/dashboard
## 0.13.2
### Patch Changes
- beed2eba: Fix docker entrypoint for dashboard
- 2c8559a3: fix(dashboard): refresh project list after deleting a project
- 4329d048: chore(dashboard): bump `graphiql` dependencies
## 0.13.1
### Patch Changes
- cbb1fc5b: chore(dashboard): cleanup GraphQL operations
## 0.13.0
### Minor Changes

View File

@@ -3,13 +3,13 @@
set -euo pipefail
# read URLs from env variables (with defaults)
NEXT_PUBLIC_NHOST_AUTH_URL="${NEXT_PUBLIC_NHOST_AUTH_URL:-"http://localhost:1337/v1/auth"}"
NEXT_PUBLIC_NHOST_FUNCTIONS_URL="${NEXT_PUBLIC_NHOST_FUNCTIONS_URL:-"http://localhost:1337/v1/functions"}"
NEXT_PUBLIC_NHOST_GRAPHQL_URL="${NEXT_PUBLIC_NHOST_GRAPHQL_URL:-"http://localhost:1337/v1/graphql"}"
NEXT_PUBLIC_NHOST_STORAGE_URL="${NEXT_PUBLIC_NHOST_STORAGE_URL:-"http://localhost:1337/v1/storage"}"
NEXT_PUBLIC_NHOST_HASURA_CONSOLE_URL="${NEXT_PUBLIC_NHOST_HASURA_CONSOLE_URL:-"http://localhost:9695"}"
NEXT_PUBLIC_NHOST_HASURA_MIGRATIONS_API_URL="${NEXT_PUBLIC_NHOST_HASURA_MIGRATIONS_API_URL:-"http://localhost:9693"}"
NEXT_PUBLIC_NHOST_HASURA_API_URL="${NEXT_PUBLIC_NHOST_HASURA_API_URL:-"http://localhost:8080"}"
NEXT_PUBLIC_NHOST_AUTH_URL="${NEXT_PUBLIC_NHOST_AUTH_URL:-http://localhost:1337/v1/auth}"
NEXT_PUBLIC_NHOST_FUNCTIONS_URL="${NEXT_PUBLIC_NHOST_FUNCTIONS_URL:-http://localhost:1337/v1/functions}"
NEXT_PUBLIC_NHOST_GRAPHQL_URL="${NEXT_PUBLIC_NHOST_GRAPHQL_URL:-http://localhost:1337/v1/graphql}"
NEXT_PUBLIC_NHOST_STORAGE_URL="${NEXT_PUBLIC_NHOST_STORAGE_URL:-http://localhost:1337/v1/storage}"
NEXT_PUBLIC_NHOST_HASURA_CONSOLE_URL="${NEXT_PUBLIC_NHOST_HASURA_CONSOLE_URL:-http://localhost:9695}"
NEXT_PUBLIC_NHOST_HASURA_MIGRATIONS_API_URL="${NEXT_PUBLIC_NHOST_HASURA_MIGRATIONS_API_URL:-http://localhost:9693}"
NEXT_PUBLIC_NHOST_HASURA_API_URL="${NEXT_PUBLIC_NHOST_HASURA_API_URL:-http://localhost:8080}"
# replace placeholders
find dashboard -type f -exec sed -i "s~__NEXT_PUBLIC_NHOST_AUTH_URL__~${NEXT_PUBLIC_NHOST_AUTH_URL}~g" {} +

View File

@@ -1,6 +1,6 @@
{
"name": "@nhost/dashboard",
"version": "0.13.0",
"version": "0.13.2",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
@@ -25,8 +25,8 @@
"@emotion/styled": "^11.10.5",
"@fontsource/inter": "^4.5.14",
"@fontsource/roboto-mono": "^4.5.8",
"@graphiql/react": "^0.15.0",
"@graphiql/toolkit": "^0.8.0",
"@graphiql/react": "^0.17.0",
"@graphiql/toolkit": "^0.8.2",
"@headlessui/react": "^1.6.5",
"@heroicons/react": "^1.0.6",
"@hookform/resolvers": "^2.9.10",
@@ -48,7 +48,7 @@
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"generate-password": "^1.7.0",
"graphiql": "^2.2.0",
"graphiql": "^2.4.0",
"graphql": "^16.6.0",
"graphql-request": "^4.3.0",
"graphql-tag": "^2.12.6",

View File

@@ -1,14 +0,0 @@
fragment GetAppRoles on apps {
id
slug
subdomain
name
authUserDefaultAllowedRoles
authUserDefaultRole
}
query getAppRolesAndPermissions($id: uuid!) {
app(id: $id) {
...GetAppRoles
}
}

View File

@@ -1,15 +0,0 @@
query getFunctionsLogs($subdomain: String!) {
getFunctionLogs(subdomain: $subdomain) {
functionPath
createdAt
message
}
}
query getFunctionLog($subdomain: String!, $functionPaths: [String!]) {
getFunctionLogs(subdomain: $subdomain, functionPaths: $functionPaths) {
functionPath
createdAt
message
}
}

View File

@@ -1,7 +0,0 @@
query getGravatarSettings($id: uuid!) {
app(id: $id) {
authGravatarEnabled
authGravatarDefault
authGravatarRating
}
}

View File

@@ -1,7 +0,0 @@
mutation restoreDatabaseBackup($appId: uuid!, $backupId: uuid!) {
restoreDatabaseBackup(appId: $appId, backupId: $backupId)
}
mutation scheduleRestoreDatabaseBackup($appId: uuid!, $backupId: uuid!) {
scheduleRestoreDatabaseBackup(appId: $appId, backupId: $backupId)
}

View File

@@ -1,4 +1,7 @@
import { useGetApplicationStateQuery } from '@/generated/graphql';
import {
GetOneUserDocument,
useGetApplicationStateQuery,
} from '@/generated/graphql';
import { ApplicationStatus } from '@/types/application';
import { discordAnnounce } from '@/utils/discordAnnounce';
import { useCallback, useEffect, useState } from 'react';
@@ -30,7 +33,7 @@ export function useCheckProvisioning() {
async function updateOwnCache() {
await client.refetchQueries({
include: ['getOneUser'],
include: [GetOneUserDocument],
});
}

View File

@@ -6,6 +6,7 @@ import SettingsContainer from '@/components/settings/SettingsContainer';
import SettingsLayout from '@/components/settings/SettingsLayout';
import { useUI } from '@/context/UIContext';
import {
GetOneUserDocument,
useDeleteApplicationMutation,
useUpdateAppMutation,
} from '@/generated/graphql';
@@ -15,7 +16,6 @@ import { discordAnnounce } from '@/utils/discordAnnounce';
import { slugifyString } from '@/utils/helpers';
import getServerError from '@/utils/settings/getServerError';
import { getToastStyleProps } from '@/utils/settings/settingsConstants';
import { updateOwnCache } from '@/utils/updateOwnCache';
import { useApolloClient } from '@apollo/client';
import { yupResolver } from '@hookform/resolvers/yup';
import { useRouter } from 'next/router';
@@ -42,6 +42,7 @@ export default function SettingsGeneralPage() {
const client = useApolloClient();
const [deleteApplication] = useDeleteApplicationMutation({
variables: { appId: currentApplication?.id },
refetchQueries: [GetOneUserDocument],
});
const { currentWorkspace } = useCurrentWorkspaceAndApplication();
const router = useRouter();
@@ -134,7 +135,6 @@ export default function SettingsGeneralPage() {
getToastStyleProps(),
);
await router.push('/');
await updateOwnCache(client);
};
return (

View File

@@ -553,8 +553,7 @@ export function NewProjectPageContent({
<Text className="font-medium">Warning</Text>{' '}
<Text className="font-medium">
{submitState.error &&
getErrorMessage(submitState.error, 'application')}{' '}
asdsda
getErrorMessage(submitState.error, 'application')}
</Text>
</Alert>
)}

File diff suppressed because it is too large Load Diff

102
pnpm-lock.yaml generated
View File

@@ -86,8 +86,8 @@ importers:
'@emotion/styled': ^11.10.5
'@fontsource/inter': ^4.5.14
'@fontsource/roboto-mono': ^4.5.8
'@graphiql/react': ^0.15.0
'@graphiql/toolkit': ^0.8.0
'@graphiql/react': ^0.17.0
'@graphiql/toolkit': ^0.8.2
'@graphql-codegen/cli': ^3.0.0
'@graphql-codegen/typescript': ^3.0.0
'@graphql-codegen/typescript-graphql-request': ^4.5.1
@@ -154,7 +154,7 @@ importers:
eslint-plugin-react: ^7.31.11
eslint-plugin-react-hooks: ^4.6.0
generate-password: ^1.7.0
graphiql: ^2.2.0
graphiql: ^2.4.0
graphql: 16.6.0
graphql-request: ^4.3.0
graphql-tag: ^2.12.6
@@ -212,8 +212,8 @@ importers:
'@emotion/styled': 11.10.5_4ahanhknrtlidghakifap67h7q
'@fontsource/inter': 4.5.14
'@fontsource/roboto-mono': 4.5.8
'@graphiql/react': 0.15.0_755ntyjuho6qjwic26h62or3by
'@graphiql/toolkit': 0.8.0_7fbl5omhlrpwpn5f5culy6mafe
'@graphiql/react': 0.17.0_755ntyjuho6qjwic26h62or3by
'@graphiql/toolkit': 0.8.2_7fbl5omhlrpwpn5f5culy6mafe
'@headlessui/react': 1.7.4_biqbaboplfbrettd7655fr4n2y
'@heroicons/react': 1.0.6_react@18.2.0
'@hookform/resolvers': 2.9.10_react-hook-form@7.42.1
@@ -235,7 +235,7 @@ importers:
clsx: 1.2.1
date-fns: 2.29.3
generate-password: 1.7.0
graphiql: 2.2.0_755ntyjuho6qjwic26h62or3by
graphiql: 2.4.0_755ntyjuho6qjwic26h62or3by
graphql: 16.6.0
graphql-request: 4.3.0_rjjjs2nwgns3bcvnnqb5eu5nry
graphql-tag: 2.12.6_graphql@16.6.0
@@ -6451,25 +6451,26 @@ packages:
/@gqty/utils/1.0.0:
resolution: {integrity: sha512-QJMlzts//d0H5mlekOZgx1a4KsTYXfxmRhhx8g/8mvzdaNVPxhFzCsv3+ljTOzbW3A08qy4jXQPWAMoTefSJDQ==}
/@graphiql/react/0.15.0_755ntyjuho6qjwic26h62or3by:
resolution: {integrity: sha512-kJqkdf6d4Cck05Wt5yCDZXWfs7HZgcpuoWq/v8nOa698qVaNMM3qdG4CpRsZEexku0DSSJzWWuanxd5x+sRcFg==}
/@graphiql/react/0.17.0_755ntyjuho6qjwic26h62or3by:
resolution: {integrity: sha512-mn8FfucLJzFLQQ5OoJ9U1Dvnva1smOxBL89D2TSM2B6mmDyQIRhFXmjzUTPdsqwpauFiqkDaQZiqX7T/ZPrg/w==}
peerDependencies:
graphql: ^15.5.0 || ^16.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@graphiql/toolkit': 0.8.0_7fbl5omhlrpwpn5f5culy6mafe
'@graphiql/toolkit': 0.8.2_7fbl5omhlrpwpn5f5culy6mafe
'@reach/combobox': 0.17.0_biqbaboplfbrettd7655fr4n2y
'@reach/dialog': 0.17.0_zula6vjvt3wdocc4mwcxqa6nzi
'@reach/listbox': 0.17.0_biqbaboplfbrettd7655fr4n2y
'@reach/menu-button': 0.17.0_7i5myeigehqah43i5u7wbekgba
'@reach/tooltip': 0.17.0_biqbaboplfbrettd7655fr4n2y
'@reach/visually-hidden': 0.17.0_biqbaboplfbrettd7655fr4n2y
clsx: 1.2.1
codemirror: 5.65.9
codemirror-graphql: 2.0.2_xqvzjd2jznjsrt45ytiwcf3lei
codemirror-graphql: 2.0.4_xqvzjd2jznjsrt45ytiwcf3lei
copy-to-clipboard: 3.3.3
graphql: 16.6.0
graphql-language-service: 5.1.0_graphql@16.6.0
graphql-language-service: 5.1.2_graphql@16.6.0
markdown-it: 12.3.2
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -6482,8 +6483,8 @@ packages:
- react-is
dev: false
/@graphiql/toolkit/0.8.0_7fbl5omhlrpwpn5f5culy6mafe:
resolution: {integrity: sha512-DbMFhEKejpPzB6k8W3Mj+Rl8geXiw49USDF9Wdi06EEk1XLVh1iebDqveYY+4lViITsV4+BeGikxlqi8umfP4g==}
/@graphiql/toolkit/0.8.2_7fbl5omhlrpwpn5f5culy6mafe:
resolution: {integrity: sha512-FGtXBYTzcPuwfpaC+0BGeriLD6kwTdcF5xugGvjutk5J93Dgy2vw+SkBdbi1QGzz/jooETi1kEtFeDuWTzIG7Q==}
peerDependencies:
graphql: ^15.5.0 || ^16.0.0
graphql-ws: '>= 4.5.0'
@@ -6494,7 +6495,7 @@ packages:
'@n1ru4l/push-pull-async-iterable-iterator': 3.2.0
graphql: 16.6.0
graphql-ws: 5.11.2_graphql@16.6.0
meros: 1.2.0_@types+node@16.18.11
meros: 1.2.1_@types+node@16.18.11
transitivePeerDependencies:
- '@types/node'
dev: false
@@ -7845,7 +7846,7 @@ packages:
graphql: 16.6.0
graphql-ws: 5.11.2_graphql@16.6.0
isomorphic-ws: 5.0.0_ws@8.11.0
meros: 1.2.0_@types+node@16.18.11
meros: 1.2.1_@types+node@16.18.11
tslib: 2.5.0
value-or-promise: 1.0.12
ws: 8.11.0
@@ -7873,7 +7874,7 @@ packages:
graphql: 16.6.0
graphql-ws: 5.11.2_graphql@16.6.0
isomorphic-ws: 5.0.0_ws@8.11.0
meros: 1.2.0_@types+node@18.11.17
meros: 1.2.1_@types+node@18.11.17
tslib: 2.5.0
value-or-promise: 1.0.12
ws: 8.11.0
@@ -7901,7 +7902,7 @@ packages:
graphql: 16.6.0
graphql-ws: 5.11.2_graphql@16.6.0
isomorphic-ws: 5.0.0_ws@8.11.0
meros: 1.2.0
meros: 1.2.1
tslib: 2.5.0
value-or-promise: 1.0.12
ws: 8.11.0
@@ -7929,7 +7930,7 @@ packages:
graphql: 16.6.0
graphql-ws: 5.11.2_graphql@16.6.0
isomorphic-ws: 5.0.0_ws@8.11.0
meros: 1.2.0_@types+node@16.18.11
meros: 1.2.1_@types+node@16.18.11
tslib: 2.5.0
value-or-promise: 1.0.12
ws: 8.11.0
@@ -16253,8 +16254,8 @@ packages:
resolution: {integrity: sha512-NiujjUFB4SwScJq2bwbYUtXbZhBSlY6vYzm++3Q6oC+U+injTqfPYFK8wS9COOmb2lueqp0ZRB4nK1VYeHgNyw==}
dev: true
/codemirror-graphql/2.0.2_xqvzjd2jznjsrt45ytiwcf3lei:
resolution: {integrity: sha512-9c1cItR+8lG7thmTnDDQ3zI8YesNKiFCp2BnLFkYWCtdhSSuCUHebU/Vurew6ayyUl8MBCldNx3Ev66QAWM5Kw==}
/codemirror-graphql/2.0.4_xqvzjd2jznjsrt45ytiwcf3lei:
resolution: {integrity: sha512-u68lfUJv4hESfIZLJUGSWU2+txNrfoT29EEMxNksDBPXjnF41Ivpp/r8rxJBXigNcDOBmjMfKfs1J4L0Jggwrg==}
peerDependencies:
'@codemirror/language': 6.0.0
codemirror: ^5.65.3
@@ -16263,7 +16264,7 @@ packages:
'@codemirror/language': 6.3.1
codemirror: 5.65.9
graphql: 16.6.0
graphql-language-service: 5.0.6_graphql@16.6.0
graphql-language-service: 5.1.2_graphql@16.6.0
dev: false
/codemirror/5.65.9:
@@ -21029,18 +21030,18 @@ packages:
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
dev: true
/graphiql/2.2.0_755ntyjuho6qjwic26h62or3by:
resolution: {integrity: sha512-w1ujpCKMlkwkoUjeg0HpRiBBTm1WHAjHNkFv1TbMu6trjzz63mQ48GLZlmyQY1yhwmc+diCcvmmAt+AyvKLWWA==}
/graphiql/2.4.0_755ntyjuho6qjwic26h62or3by:
resolution: {integrity: sha512-lJ6OYDQkhAMZePrz8g6r9vMVmxa4SY9eEzzyJxsgE+jA+6PFKds2e8/tDAaCYfX0HNv84nc7W/th1vsHIdgYiA==}
peerDependencies:
graphql: ^15.5.0 || ^16.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@graphiql/react': 0.15.0_755ntyjuho6qjwic26h62or3by
'@graphiql/toolkit': 0.8.0_7fbl5omhlrpwpn5f5culy6mafe
'@graphiql/react': 0.17.0_755ntyjuho6qjwic26h62or3by
'@graphiql/toolkit': 0.8.2_7fbl5omhlrpwpn5f5culy6mafe
entities: 2.2.0
graphql: 16.6.0
graphql-language-service: 5.1.0_graphql@16.6.0
graphql-language-service: 5.1.2_graphql@16.6.0
markdown-it: 12.3.2
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -21204,19 +21205,8 @@ packages:
- utf-8-validate
dev: true
/graphql-language-service/5.0.6_graphql@16.6.0:
resolution: {integrity: sha512-FjE23aTy45Lr5metxCv3ZgSKEZOzN7ERR+OFC1isV5mHxI0Ob8XxayLTYjQKrs8b3kOpvgTYmSmu6AyXOzYslg==}
hasBin: true
peerDependencies:
graphql: ^15.5.0 || ^16.0.0
dependencies:
graphql: 16.6.0
nullthrows: 1.1.1
vscode-languageserver-types: 3.17.2
dev: false
/graphql-language-service/5.1.0_graphql@16.6.0:
resolution: {integrity: sha512-APffigZ/l2me6soek+Yq5Us3HBwmfw4vns4QoqsTePXkK3knVO8rn0uAC6PmTyglb1pmFFPbYaRIzW4wmcnnGQ==}
/graphql-language-service/5.1.2_graphql@16.6.0:
resolution: {integrity: sha512-oeuztbvd7fwKWZ/GCp0voqgctdIL4BDjTkd/phz1jEyH+pfj6inJWKKIkUJPW5ebWHx+mFsZ00wdE6tiCvW2fA==}
hasBin: true
peerDependencies:
graphql: ^15.5.0 || ^16.0.0
@@ -24032,39 +24022,6 @@ packages:
uuid: 9.0.0
dev: false
/meros/1.2.0:
resolution: {integrity: sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==}
engines: {node: '>=12'}
peerDependencies:
'@types/node': '>=12'
peerDependenciesMeta:
'@types/node':
optional: true
dev: true
/meros/1.2.0_@types+node@16.18.11:
resolution: {integrity: sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==}
engines: {node: '>=12'}
peerDependencies:
'@types/node': '>=12'
peerDependenciesMeta:
'@types/node':
optional: true
dependencies:
'@types/node': 16.18.11
/meros/1.2.0_@types+node@18.11.17:
resolution: {integrity: sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==}
engines: {node: '>=12'}
peerDependencies:
'@types/node': '>=12'
peerDependenciesMeta:
'@types/node':
optional: true
dependencies:
'@types/node': 18.11.17
dev: true
/meros/1.2.1:
resolution: {integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==}
engines: {node: '>=13'}
@@ -24085,7 +24042,6 @@ packages:
optional: true
dependencies:
'@types/node': 16.18.11
dev: true
/meros/1.2.1_@types+node@18.11.17:
resolution: {integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==}