Compare commits
3 Commits
@nhost/goo
...
@nhost/das
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
71a8ce4446 | ||
|
|
5ef5189898 | ||
|
|
791b7295fb |
@@ -1,5 +1,11 @@
|
|||||||
# @nhost/dashboard
|
# @nhost/dashboard
|
||||||
|
|
||||||
|
## 1.6.7
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 5ef5189: fix: update `@apollo/client` to `3.9.4` to fix a cache bug
|
||||||
|
|
||||||
## 1.6.6
|
## 1.6.6
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|||||||
});
|
});
|
||||||
const { version } = require('./package.json');
|
const { version } = require('./package.json');
|
||||||
|
|
||||||
|
|
||||||
const cspHeader = `
|
const cspHeader = `
|
||||||
default-src 'self' *.nhost.run ws://*.nhost.run nhost.run ws://nhost.run;
|
default-src 'self' *.nhost.run ws://*.nhost.run nhost.run ws://nhost.run;
|
||||||
script-src 'self' 'unsafe-eval' 'unsafe-inline' cdn.segment.com js.stripe.com;
|
script-src 'self' 'unsafe-eval' 'unsafe-inline' cdn.segment.com js.stripe.com;
|
||||||
@@ -19,7 +18,7 @@ const cspHeader = `
|
|||||||
frame-src 'self' js.stripe.com;
|
frame-src 'self' js.stripe.com;
|
||||||
block-all-mixed-content;
|
block-all-mixed-content;
|
||||||
upgrade-insecure-requests;
|
upgrade-insecure-requests;
|
||||||
`
|
`;
|
||||||
|
|
||||||
module.exports = withBundleAnalyzer({
|
module.exports = withBundleAnalyzer({
|
||||||
reactStrictMode: true,
|
reactStrictMode: true,
|
||||||
@@ -41,7 +40,7 @@ module.exports = withBundleAnalyzer({
|
|||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
key: 'X-Frame-Options',
|
key: 'X-Frame-Options',
|
||||||
value: 'SAMEORIGIN'
|
value: 'SAMEORIGIN',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'Content-Security-Policy',
|
key: 'Content-Security-Policy',
|
||||||
@@ -49,7 +48,7 @@ module.exports = withBundleAnalyzer({
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]
|
];
|
||||||
},
|
},
|
||||||
async redirects() {
|
async redirects() {
|
||||||
return [
|
return [
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/dashboard",
|
"name": "@nhost/dashboard",
|
||||||
"version": "1.6.6",
|
"version": "1.6.7",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"preinstall": "npx only-allow pnpm",
|
"preinstall": "npx only-allow pnpm",
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
"e2e": "pnpm install-browsers && pnpm playwright test"
|
"e2e": "pnpm install-browsers && pnpm playwright test"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.9.1",
|
"@apollo/client": "^3.9.4",
|
||||||
"@codemirror/lang-sql": "^6.5.5",
|
"@codemirror/lang-sql": "^6.5.5",
|
||||||
"@emotion/cache": "^11.11.0",
|
"@emotion/cache": "^11.11.0",
|
||||||
"@emotion/react": "^11.11.3",
|
"@emotion/react": "^11.11.3",
|
||||||
|
|||||||
@@ -25,12 +25,12 @@ function Plan({ planName, price, setPlan, planId, selectedPlanId }: any) {
|
|||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="my-4 grid w-full grid-flow-col items-center justify-between gap-2 px-1"
|
className="grid items-center justify-between w-full grid-flow-col gap-2 px-1 my-4"
|
||||||
onClick={setPlan}
|
onClick={setPlan}
|
||||||
tabIndex={-1}
|
tabIndex={-1}
|
||||||
>
|
>
|
||||||
<div className="grid grid-flow-row gap-y-0.5">
|
<div className="grid grid-flow-row gap-y-0.5">
|
||||||
<div className="grid grid-flow-col items-center justify-start gap-2">
|
<div className="grid items-center justify-start grid-flow-col gap-2">
|
||||||
<Checkbox
|
<Checkbox
|
||||||
onChange={setPlan}
|
onChange={setPlan}
|
||||||
checked={selectedPlanId === planId}
|
checked={selectedPlanId === planId}
|
||||||
@@ -40,7 +40,7 @@ function Plan({ planName, price, setPlan, planId, selectedPlanId }: any) {
|
|||||||
<Text
|
<Text
|
||||||
variant="h3"
|
variant="h3"
|
||||||
component="p"
|
component="p"
|
||||||
className="self-center text-left font-medium"
|
className="self-center font-medium text-left"
|
||||||
>
|
>
|
||||||
Upgrade to {planName}
|
Upgrade to {planName}
|
||||||
</Text>
|
</Text>
|
||||||
@@ -156,7 +156,7 @@ export function ChangePlanModalWithData({ app, plans, close }: any) {
|
|||||||
|
|
||||||
if (pollingCurrentProject) {
|
if (pollingCurrentProject) {
|
||||||
return (
|
return (
|
||||||
<Box className="mx-auto w-full max-w-xl rounded-lg p-6 text-left">
|
<Box className="w-full max-w-xl p-6 mx-auto text-left rounded-lg">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<div className="mx-auto">
|
<div className="mx-auto">
|
||||||
<Image
|
<Image
|
||||||
@@ -179,7 +179,7 @@ export function ChangePlanModalWithData({ app, plans, close }: any) {
|
|||||||
<Button
|
<Button
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
className="mx-auto mt-4 w-full max-w-sm"
|
className="w-full max-w-sm mx-auto mt-4"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (close) {
|
if (close) {
|
||||||
close();
|
close();
|
||||||
@@ -196,7 +196,7 @@ export function ChangePlanModalWithData({ app, plans, close }: any) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box className="w-full max-w-xl rounded-lg p-6 text-left">
|
<Box className="w-full max-w-xl p-6 text-left rounded-lg">
|
||||||
<BaseDialog
|
<BaseDialog
|
||||||
open={showPaymentModal}
|
open={showPaymentModal}
|
||||||
onClose={() => setShowPaymentModal(false)}
|
onClose={() => setShowPaymentModal(false)}
|
||||||
@@ -241,7 +241,7 @@ export function ChangePlanModalWithData({ app, plans, close }: any) {
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mt-2 grid grid-flow-row gap-2">
|
<div className="grid grid-flow-row gap-2 mt-2">
|
||||||
<Button
|
<Button
|
||||||
onClick={handleChangePlanClick}
|
onClick={handleChangePlanClick}
|
||||||
disabled={!selectedPlan}
|
disabled={!selectedPlan}
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @nhost/docs
|
# @nhost/docs
|
||||||
|
|
||||||
|
## 2.4.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- 791b729: fix: remove auth method
|
||||||
|
|
||||||
## 2.3.0
|
## 2.3.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nhost/docs",
|
"name": "@nhost/docs",
|
||||||
"version": "2.3.0",
|
"version": "2.4.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "mintlify dev"
|
"start": "mintlify dev"
|
||||||
|
|||||||
@@ -11,18 +11,9 @@ info:
|
|||||||
servers:
|
servers:
|
||||||
- url: https://local.auth.nhost.run/v1
|
- url: https://local.auth.nhost.run/v1
|
||||||
description: API Server
|
description: API Server
|
||||||
security:
|
|
||||||
- AdminSecret: []
|
|
||||||
- BearerAuth: []
|
|
||||||
|
|
||||||
components:
|
components:
|
||||||
|
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
AdminSecret:
|
|
||||||
type: apiKey
|
|
||||||
in: header
|
|
||||||
name: X-Hasura-Admin-Secret
|
|
||||||
description: Hasura Admin Secret
|
|
||||||
BearerAuth:
|
BearerAuth:
|
||||||
scheme: bearer
|
scheme: bearer
|
||||||
type: http
|
type: http
|
||||||
@@ -1524,7 +1515,6 @@ paths:
|
|||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/DisabledEndpointError'
|
$ref: '#/components/schemas/DisabledEndpointError'
|
||||||
description: The feature is not activated
|
description: The feature is not activated
|
||||||
security: []
|
|
||||||
summary: Sign In TOTP
|
summary: Sign In TOTP
|
||||||
tags:
|
tags:
|
||||||
- Authentication
|
- Authentication
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.9.1",
|
"@apollo/client": "^3.9.4",
|
||||||
"@nhost/react": "workspace:^",
|
"@nhost/react": "workspace:^",
|
||||||
"@nhost/react-apollo": "workspace:^",
|
"@nhost/react-apollo": "workspace:^",
|
||||||
"clsx": "^1.2.1",
|
"clsx": "^1.2.1",
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
"verify:fix": "run-p prettier:fix lint:fix"
|
"verify:fix": "run-p prettier:fix lint:fix"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.9.1",
|
"@apollo/client": "^3.9.4",
|
||||||
"@mantine/core": "^4.2.12",
|
"@mantine/core": "^4.2.12",
|
||||||
"@mantine/hooks": "^4.2.12",
|
"@mantine/hooks": "^4.2.12",
|
||||||
"@mantine/next": "^4.2.12",
|
"@mantine/next": "^4.2.12",
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"lint": "next lint"
|
"lint": "next lint"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.9.1",
|
"@apollo/client": "^3.9.4",
|
||||||
"@nhost/nhost-js": "workspace:^",
|
"@nhost/nhost-js": "workspace:^",
|
||||||
"autoprefixer": "10.4.15",
|
"autoprefixer": "10.4.15",
|
||||||
"cookies-next": "^3.0.0",
|
"cookies-next": "^3.0.0",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.9.1",
|
"@apollo/client": "^3.9.4",
|
||||||
"@mantine/core": "^4.2.12",
|
"@mantine/core": "^4.2.12",
|
||||||
"@mantine/dropzone": "^4.2.12",
|
"@mantine/dropzone": "^4.2.12",
|
||||||
"@mantine/hooks": "^4.2.12",
|
"@mantine/hooks": "^4.2.12",
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
"verify:fix": "run-p prettier:fix lint:fix"
|
"verify:fix": "run-p prettier:fix lint:fix"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.9.1",
|
"@apollo/client": "^3.9.4",
|
||||||
"@mdi/font": "5.9.55",
|
"@mdi/font": "5.9.55",
|
||||||
"@nhost/apollo": "workspace:^",
|
"@nhost/apollo": "workspace:^",
|
||||||
"@nhost/nhost-js": "workspace:^",
|
"@nhost/nhost-js": "workspace:^",
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
"test": "vitest"
|
"test": "vitest"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.9.1",
|
"@apollo/client": "^3.9.4",
|
||||||
"@nhost/apollo": "workspace:^",
|
"@nhost/apollo": "workspace:^",
|
||||||
"@nhost/vue": "workspace:^",
|
"@nhost/vue": "workspace:^",
|
||||||
"@vue/apollo-composable": "4.0.0-alpha.18",
|
"@vue/apollo-composable": "4.0.0-alpha.18",
|
||||||
|
|||||||
@@ -68,7 +68,7 @@
|
|||||||
"graphql-ws": "^5.14.3"
|
"graphql-ws": "^5.14.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@apollo/client": "^3.9.1",
|
"@apollo/client": "^3.9.4",
|
||||||
"@nhost/nhost-js": "workspace:*"
|
"@nhost/nhost-js": "workspace:*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
"react-dom": "^17.0.0 || ^18.0.0"
|
"react-dom": "^17.0.0 || ^18.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@apollo/client": "^3.9.1",
|
"@apollo/client": "^3.9.4",
|
||||||
"@nhost/react": "workspace:*",
|
"@nhost/react": "workspace:*",
|
||||||
"@types/react": "^18.2.50",
|
"@types/react": "^18.2.50",
|
||||||
"graphql": "16.8.1",
|
"graphql": "16.8.1",
|
||||||
|
|||||||
83
pnpm-lock.yaml
generated
83
pnpm-lock.yaml
generated
@@ -149,8 +149,8 @@ importers:
|
|||||||
dashboard:
|
dashboard:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@apollo/client':
|
'@apollo/client':
|
||||||
specifier: ^3.9.1
|
specifier: ^3.9.4
|
||||||
version: 3.9.1(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
version: 3.9.4(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
||||||
'@codemirror/lang-sql':
|
'@codemirror/lang-sql':
|
||||||
specifier: ^6.5.5
|
specifier: ^6.5.5
|
||||||
version: 6.5.5
|
version: 6.5.5
|
||||||
@@ -606,8 +606,8 @@ importers:
|
|||||||
examples/codegen-react-apollo:
|
examples/codegen-react-apollo:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@apollo/client':
|
'@apollo/client':
|
||||||
specifier: ^3.9.1
|
specifier: ^3.9.4
|
||||||
version: 3.9.1(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
version: 3.9.4(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
||||||
'@nhost/react':
|
'@nhost/react':
|
||||||
specifier: workspace:^
|
specifier: workspace:^
|
||||||
version: link:../../packages/react
|
version: link:../../packages/react
|
||||||
@@ -827,8 +827,8 @@ importers:
|
|||||||
examples/nextjs:
|
examples/nextjs:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@apollo/client':
|
'@apollo/client':
|
||||||
specifier: ^3.9.1
|
specifier: ^3.9.4
|
||||||
version: 3.9.1(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
version: 3.9.4(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
||||||
'@mantine/core':
|
'@mantine/core':
|
||||||
specifier: ^4.2.12
|
specifier: ^4.2.12
|
||||||
version: 4.2.12(@babel/core@7.23.9)(@mantine/hooks@4.2.12)(@types/react@18.2.50)(react-dom@18.2.0)(react@18.2.0)
|
version: 4.2.12(@babel/core@7.23.9)(@mantine/hooks@4.2.12)(@types/react@18.2.50)(react-dom@18.2.0)(react@18.2.0)
|
||||||
@@ -922,8 +922,8 @@ importers:
|
|||||||
examples/quickstarts/nextjs-server-components:
|
examples/quickstarts/nextjs-server-components:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@apollo/client':
|
'@apollo/client':
|
||||||
specifier: ^3.9.1
|
specifier: ^3.9.4
|
||||||
version: 3.9.1(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
version: 3.9.4(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
||||||
'@nhost/nhost-js':
|
'@nhost/nhost-js':
|
||||||
specifier: workspace:^
|
specifier: workspace:^
|
||||||
version: link:../../../packages/nhost-js
|
version: link:../../../packages/nhost-js
|
||||||
@@ -1062,8 +1062,8 @@ importers:
|
|||||||
examples/react-apollo:
|
examples/react-apollo:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@apollo/client':
|
'@apollo/client':
|
||||||
specifier: ^3.9.1
|
specifier: ^3.9.4
|
||||||
version: 3.9.1(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
version: 3.9.4(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
||||||
'@mantine/core':
|
'@mantine/core':
|
||||||
specifier: ^4.2.12
|
specifier: ^4.2.12
|
||||||
version: 4.2.12(@babel/core@7.23.9)(@mantine/hooks@4.2.12)(@types/react@18.2.50)(react-dom@18.2.0)(react@18.2.0)
|
version: 4.2.12(@babel/core@7.23.9)(@mantine/hooks@4.2.12)(@types/react@18.2.50)(react-dom@18.2.0)(react@18.2.0)
|
||||||
@@ -1250,8 +1250,8 @@ importers:
|
|||||||
examples/vue-apollo:
|
examples/vue-apollo:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@apollo/client':
|
'@apollo/client':
|
||||||
specifier: ^3.9.1
|
specifier: ^3.9.4
|
||||||
version: 3.9.1(graphql-ws@5.14.3)(graphql@16.8.1)
|
version: 3.9.4(graphql-ws@5.14.3)(graphql@16.8.1)
|
||||||
'@mdi/font':
|
'@mdi/font':
|
||||||
specifier: 5.9.55
|
specifier: 5.9.55
|
||||||
version: 5.9.55
|
version: 5.9.55
|
||||||
@@ -1266,7 +1266,7 @@ importers:
|
|||||||
version: link:../../packages/vue
|
version: link:../../packages/vue
|
||||||
'@vue/apollo-composable':
|
'@vue/apollo-composable':
|
||||||
specifier: 4.0.0-alpha.18
|
specifier: 4.0.0-alpha.18
|
||||||
version: 4.0.0-alpha.18(@apollo/client@3.9.1)(graphql@16.8.1)(typescript@4.9.4)(vue@3.4.15)
|
version: 4.0.0-alpha.18(@apollo/client@3.9.4)(graphql@16.8.1)(typescript@4.9.4)(vue@3.4.15)
|
||||||
graphql:
|
graphql:
|
||||||
specifier: 16.8.1
|
specifier: 16.8.1
|
||||||
version: 16.8.1
|
version: 16.8.1
|
||||||
@@ -1323,8 +1323,8 @@ importers:
|
|||||||
examples/vue-quickstart:
|
examples/vue-quickstart:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@apollo/client':
|
'@apollo/client':
|
||||||
specifier: ^3.9.1
|
specifier: ^3.9.4
|
||||||
version: 3.9.1(graphql-ws@5.14.3)(graphql@16.8.1)
|
version: 3.9.4(graphql-ws@5.14.3)(graphql@16.8.1)
|
||||||
'@nhost/apollo':
|
'@nhost/apollo':
|
||||||
specifier: workspace:^
|
specifier: workspace:^
|
||||||
version: link:../../integrations/apollo
|
version: link:../../integrations/apollo
|
||||||
@@ -1333,7 +1333,7 @@ importers:
|
|||||||
version: link:../../packages/vue
|
version: link:../../packages/vue
|
||||||
'@vue/apollo-composable':
|
'@vue/apollo-composable':
|
||||||
specifier: 4.0.0-alpha.18
|
specifier: 4.0.0-alpha.18
|
||||||
version: 4.0.0-alpha.18(@apollo/client@3.9.1)(graphql@16.8.1)(typescript@4.9.5)(vue@3.4.15)
|
version: 4.0.0-alpha.18(@apollo/client@3.9.4)(graphql@16.8.1)(typescript@4.9.5)(vue@3.4.15)
|
||||||
'@vueuse/core':
|
'@vueuse/core':
|
||||||
specifier: ^8.9.4
|
specifier: ^8.9.4
|
||||||
version: 8.9.4(vue@3.4.15)
|
version: 8.9.4(vue@3.4.15)
|
||||||
@@ -1409,8 +1409,8 @@ importers:
|
|||||||
version: 5.14.3(graphql@16.8.1)
|
version: 5.14.3(graphql@16.8.1)
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@apollo/client':
|
'@apollo/client':
|
||||||
specifier: ^3.9.1
|
specifier: ^3.9.4
|
||||||
version: 3.9.1(graphql-ws@5.14.3)(graphql@16.8.1)
|
version: 3.9.4(graphql-ws@5.14.3)(graphql@16.8.1)
|
||||||
'@nhost/nhost-js':
|
'@nhost/nhost-js':
|
||||||
specifier: workspace:*
|
specifier: workspace:*
|
||||||
version: link:../../packages/nhost-js
|
version: link:../../packages/nhost-js
|
||||||
@@ -1450,8 +1450,8 @@ importers:
|
|||||||
version: link:../apollo
|
version: link:../apollo
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@apollo/client':
|
'@apollo/client':
|
||||||
specifier: ^3.9.1
|
specifier: ^3.9.4
|
||||||
version: 3.9.1(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
version: 3.9.4(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
|
||||||
'@nhost/react':
|
'@nhost/react':
|
||||||
specifier: workspace:*
|
specifier: workspace:*
|
||||||
version: link:../../packages/react
|
version: link:../../packages/react
|
||||||
@@ -1981,8 +1981,8 @@ packages:
|
|||||||
openapi-types: 12.1.3
|
openapi-types: 12.1.3
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@apollo/client@3.9.1(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0):
|
/@apollo/client@3.9.4(@types/react@18.2.50)(graphql-ws@5.14.3)(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0):
|
||||||
resolution: {integrity: sha512-gpnIwMrEZ4n811gy2Ksz51Ax4zjAR5O5Tg1vlKs70Eig5Qj7kGGfnWfH5B37LSCIXanRyuMgVbQx+Aty5WruBA==}
|
resolution: {integrity: sha512-Ip6dxjshDT2Dp6foLASTnKBW45Fytew/5JZutZwgc78hVrrGpO9UtZA9xteHXYdap0wIgCxCfeIQwbSu1ZdQpw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
graphql: 16.8.1
|
graphql: 16.8.1
|
||||||
graphql-ws: ^5.5.5
|
graphql-ws: ^5.5.5
|
||||||
@@ -2011,7 +2011,7 @@ packages:
|
|||||||
prop-types: 15.8.1
|
prop-types: 15.8.1
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
react-dom: 18.2.0(react@18.2.0)
|
react-dom: 18.2.0(react@18.2.0)
|
||||||
rehackt: 0.0.3(@types/react@18.2.50)(react@18.2.0)
|
rehackt: 0.0.4(@types/react@18.2.50)(react@18.2.0)
|
||||||
response-iterator: 0.2.6
|
response-iterator: 0.2.6
|
||||||
symbol-observable: 4.0.0
|
symbol-observable: 4.0.0
|
||||||
ts-invariant: 0.10.3
|
ts-invariant: 0.10.3
|
||||||
@@ -2020,8 +2020,8 @@ packages:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@types/react'
|
- '@types/react'
|
||||||
|
|
||||||
/@apollo/client@3.9.1(graphql-ws@5.14.3)(graphql@16.8.1):
|
/@apollo/client@3.9.4(graphql-ws@5.14.3)(graphql@16.8.1):
|
||||||
resolution: {integrity: sha512-gpnIwMrEZ4n811gy2Ksz51Ax4zjAR5O5Tg1vlKs70Eig5Qj7kGGfnWfH5B37LSCIXanRyuMgVbQx+Aty5WruBA==}
|
resolution: {integrity: sha512-Ip6dxjshDT2Dp6foLASTnKBW45Fytew/5JZutZwgc78hVrrGpO9UtZA9xteHXYdap0wIgCxCfeIQwbSu1ZdQpw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
graphql: 16.8.1
|
graphql: 16.8.1
|
||||||
graphql-ws: ^5.5.5
|
graphql-ws: ^5.5.5
|
||||||
@@ -2048,7 +2048,7 @@ packages:
|
|||||||
hoist-non-react-statics: 3.3.2
|
hoist-non-react-statics: 3.3.2
|
||||||
optimism: 0.18.0
|
optimism: 0.18.0
|
||||||
prop-types: 15.8.1
|
prop-types: 15.8.1
|
||||||
rehackt: 0.0.3(@types/react@18.2.50)(react@18.2.0)
|
rehackt: 0.0.4(@types/react@18.2.50)(react@18.2.0)
|
||||||
response-iterator: 0.2.6
|
response-iterator: 0.2.6
|
||||||
symbol-observable: 4.0.0
|
symbol-observable: 4.0.0
|
||||||
ts-invariant: 0.10.3
|
ts-invariant: 0.10.3
|
||||||
@@ -11782,7 +11782,7 @@ packages:
|
|||||||
'@vue/reactivity': 3.4.15
|
'@vue/reactivity': 3.4.15
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@vue/apollo-composable@4.0.0-alpha.18(@apollo/client@3.9.1)(graphql@16.8.1)(typescript@4.9.4)(vue@3.4.15):
|
/@vue/apollo-composable@4.0.0-alpha.18(@apollo/client@3.9.4)(graphql@16.8.1)(typescript@4.9.4)(vue@3.4.15):
|
||||||
resolution: {integrity: sha512-AasMZnAOG9fH+vcnQu6C3eyBMWXCsjdF0Njh7gGzQYBdo/CG9g9OKtrmHizq5AbgR2KJe/0RHE9yLBj7SZrcdQ==}
|
resolution: {integrity: sha512-AasMZnAOG9fH+vcnQu6C3eyBMWXCsjdF0Njh7gGzQYBdo/CG9g9OKtrmHizq5AbgR2KJe/0RHE9yLBj7SZrcdQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@apollo/client': ^3.4.13
|
'@apollo/client': ^3.4.13
|
||||||
@@ -11793,7 +11793,7 @@ packages:
|
|||||||
'@vue/composition-api':
|
'@vue/composition-api':
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@apollo/client': 3.9.1(graphql-ws@5.14.3)(graphql@16.8.1)
|
'@apollo/client': 3.9.4(graphql-ws@5.14.3)(graphql@16.8.1)
|
||||||
graphql: 16.8.1
|
graphql: 16.8.1
|
||||||
throttle-debounce: 3.0.1
|
throttle-debounce: 3.0.1
|
||||||
ts-essentials: 9.4.1(typescript@4.9.4)
|
ts-essentials: 9.4.1(typescript@4.9.4)
|
||||||
@@ -11803,7 +11803,7 @@ packages:
|
|||||||
- typescript
|
- typescript
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@vue/apollo-composable@4.0.0-alpha.18(@apollo/client@3.9.1)(graphql@16.8.1)(typescript@4.9.5)(vue@3.4.15):
|
/@vue/apollo-composable@4.0.0-alpha.18(@apollo/client@3.9.4)(graphql@16.8.1)(typescript@4.9.5)(vue@3.4.15):
|
||||||
resolution: {integrity: sha512-AasMZnAOG9fH+vcnQu6C3eyBMWXCsjdF0Njh7gGzQYBdo/CG9g9OKtrmHizq5AbgR2KJe/0RHE9yLBj7SZrcdQ==}
|
resolution: {integrity: sha512-AasMZnAOG9fH+vcnQu6C3eyBMWXCsjdF0Njh7gGzQYBdo/CG9g9OKtrmHizq5AbgR2KJe/0RHE9yLBj7SZrcdQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@apollo/client': ^3.4.13
|
'@apollo/client': ^3.4.13
|
||||||
@@ -11814,7 +11814,7 @@ packages:
|
|||||||
'@vue/composition-api':
|
'@vue/composition-api':
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@apollo/client': 3.9.1(graphql-ws@5.14.3)(graphql@16.8.1)
|
'@apollo/client': 3.9.4(graphql-ws@5.14.3)(graphql@16.8.1)
|
||||||
graphql: 16.8.1
|
graphql: 16.8.1
|
||||||
throttle-debounce: 3.0.1
|
throttle-debounce: 3.0.1
|
||||||
ts-essentials: 9.4.1(typescript@4.9.5)
|
ts-essentials: 9.4.1(typescript@4.9.5)
|
||||||
@@ -14105,6 +14105,23 @@ packages:
|
|||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fsevents: 2.3.3
|
fsevents: 2.3.3
|
||||||
|
|
||||||
|
/chokidar@3.6.0:
|
||||||
|
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
||||||
|
engines: {node: '>= 8.10.0'}
|
||||||
|
requiresBuild: true
|
||||||
|
dependencies:
|
||||||
|
anymatch: 3.1.3
|
||||||
|
braces: 3.0.2
|
||||||
|
glob-parent: 5.1.2
|
||||||
|
is-binary-path: 2.1.0
|
||||||
|
is-glob: 4.0.3
|
||||||
|
normalize-path: 3.0.0
|
||||||
|
readdirp: 3.6.0
|
||||||
|
optionalDependencies:
|
||||||
|
fsevents: 2.3.3
|
||||||
|
dev: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
/chownr@1.1.4:
|
/chownr@1.1.4:
|
||||||
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
|
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -25048,8 +25065,8 @@ packages:
|
|||||||
jsesc: 0.5.0
|
jsesc: 0.5.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/rehackt@0.0.3(@types/react@18.2.50)(react@18.2.0):
|
/rehackt@0.0.4(@types/react@18.2.50)(react@18.2.0):
|
||||||
resolution: {integrity: sha512-aBRHudKhOWwsTvCbSoinzq+Lej/7R8e8UoPvLZo5HirZIIBLGAgdG7SL9QpdcBoQ7+3QYPi3lRLknAzXBlhZ7g==}
|
resolution: {integrity: sha512-xFroSGCbMEK/cTJVhq+c8l/AzIeMeojVyLqtZmr2jmIAFvePjapkCSGg9MnrcNk68HPaMxGf+Ndqozotu78ITw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@types/react': '*'
|
'@types/react': '*'
|
||||||
react: '*'
|
react: '*'
|
||||||
@@ -29289,7 +29306,7 @@ packages:
|
|||||||
graceful-fs: 4.2.11
|
graceful-fs: 4.2.11
|
||||||
neo-async: 2.6.2
|
neo-async: 2.6.2
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
chokidar: 3.5.3
|
chokidar: 3.6.0
|
||||||
watchpack-chokidar2: 2.0.1
|
watchpack-chokidar2: 2.0.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|||||||
Reference in New Issue
Block a user